From 9fb0aa88d777df933918846729c0bc0c879b5048 Mon Sep 17 00:00:00 2001 From: WyriHaximus Date: Thu, 17 Aug 2023 13:51:53 +0000 Subject: [PATCH] [GitHubEnterpriseCloud] Update to 1.1.4 (hash: b25145b198caa9051f49e85d468070fe) from 1.1.4 (hash: e8d9bcccd8d66263420bbd8cfe524c32) Detected Schema changes: ERROR: error: Error thrown when comparing: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [218279:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [218281:11] ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [218225:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [218227:11] --- clients/GitHubEnterpriseCloud/README.md | 44 ++ .../etc/openapi-client-generator.state | 2 +- clients/GitHubEnterpriseCloud/src/Client.php | 4 +- .../src/ClientInterface.php | 4 +- .../Repo/PrivateVulnerabilityReporting.php | 440 ++++++++++++++++++ .../GitHubEnterpriseCloud/src/Hydrators.php | 10 + .../src/Operation/Repos.php | 18 + .../DisablePrivateVulnerabilityReporting.php | 87 ++++ .../EnablePrivateVulnerabilityReporting.php | 87 ++++ .../src/Operation/Search/Code.php | 4 +- .../src/Operation/Search/Commits.php | 4 +- .../Search/IssuesAndPullRequests.php | 4 +- .../src/Operation/Search/Labels.php | 4 +- .../src/Operation/Search/Repos.php | 4 +- .../src/Operation/Search/Topics.php | 2 +- .../src/Operation/Search/Users.php | 4 +- .../ListGlobalAdvisories.php | 9 +- .../DisablePrivateVulnerabilityReporting.php | 35 ++ .../EnablePrivateVulnerabilityReporting.php | 35 ++ .../src/Router/Delete/Five.php | 8 + .../src/Router/Delete/Repos.php | 24 + .../src/Router/Put/Five.php | 8 + .../src/Router/Put/Repos.php | 24 + .../Checks/Create/Request/ApplicationJson.php | 4 +- .../Checks/Update/Request/ApplicationJson.php | 4 +- .../Request/ApplicationJson.php | 4 +- .../src/Schema/GlobalAdvisory.php | 5 +- .../CreateWebhook/Request/ApplicationJson.php | 4 +- .../Request/ApplicationJson/Config.php | 4 +- .../UpdateWebhook/Request/ApplicationJson.php | 4 +- .../Request/ApplicationJson/Config.php | 4 +- .../UpdateBranch/Request/ApplicationJson.php | 4 +- .../CreateWebhook/Request/ApplicationJson.php | 4 +- .../Request/ApplicationJson/Config.php | 4 +- .../UpdateWebhook/Request/ApplicationJson.php | 4 +- .../Request/ApplicationJson/Config.php | 4 +- ...sablePrivateVulnerabilityReportingTest.php | 126 +++++ ...nablePrivateVulnerabilityReportingTest.php | 126 +++++ .../GitHubEnterpriseCloud/current.spec.yaml | 214 +++++---- 39 files changed, 1258 insertions(+), 126 deletions(-) create mode 100644 clients/GitHubEnterpriseCloud/src/Hydrator/Operation/Repos/Owner/Repo/PrivateVulnerabilityReporting.php create mode 100644 clients/GitHubEnterpriseCloud/src/Operation/Repos/DisablePrivateVulnerabilityReporting.php create mode 100644 clients/GitHubEnterpriseCloud/src/Operation/Repos/EnablePrivateVulnerabilityReporting.php create mode 100644 clients/GitHubEnterpriseCloud/src/Operator/Repos/DisablePrivateVulnerabilityReporting.php create mode 100644 clients/GitHubEnterpriseCloud/src/Operator/Repos/EnablePrivateVulnerabilityReporting.php create mode 100644 clients/GitHubEnterpriseCloud/tests/Operation/Repos/DisablePrivateVulnerabilityReportingTest.php create mode 100644 clients/GitHubEnterpriseCloud/tests/Operation/Repos/EnablePrivateVulnerabilityReportingTest.php diff --git a/clients/GitHubEnterpriseCloud/README.md b/clients/GitHubEnterpriseCloud/README.md index 860a1c9b39a..12300aa12f6 100644 --- a/clients/GitHubEnterpriseCloud/README.md +++ b/clients/GitHubEnterpriseCloud/README.md @@ -16939,6 +16939,50 @@ $client->operations()->repos()->getPagesHealthCheck( owner: 'generated', You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages). +### repos/enable-private-vulnerability-reporting + +Enable private vulnerability reporting for a repository + +Using the `call` method: +```php +$client->call('PUT /repos/{owner}/{repo}/private-vulnerability-reporting', [ + 'owner' => 'generated', + 'repo' => 'generated', +]); +``` + +Operations method: +```php +$client->operations()->repos()->enablePrivateVulnerabilityReporting( owner: 'generated', + repo: 'generated', +); +``` + +You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository). + + +### repos/disable-private-vulnerability-reporting + +Disable private vulnerability reporting for a repository + +Using the `call` method: +```php +$client->call('DELETE /repos/{owner}/{repo}/private-vulnerability-reporting', [ + 'owner' => 'generated', + 'repo' => 'generated', +]); +``` + +Operations method: +```php +$client->operations()->repos()->disablePrivateVulnerabilityReporting( owner: 'generated', + repo: 'generated', +); +``` + +You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository). + + ### projects/list-for-repo List repository projects diff --git a/clients/GitHubEnterpriseCloud/etc/openapi-client-generator.state b/clients/GitHubEnterpriseCloud/etc/openapi-client-generator.state index b57d7b2d674..53320bf1e2e 100644 --- a/clients/GitHubEnterpriseCloud/etc/openapi-client-generator.state +++ b/clients/GitHubEnterpriseCloud/etc/openapi-client-generator.state @@ -1 +1 @@ -{"specHash":"e8d9bcccd8d66263420bbd8cfe524c32","generatedFiles":{"files":[{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/Root.php","hash":"0a8da3b417d74f4609f412660f87a4e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/Root.php","hash":"64f8747199401f1805974c8520ca396e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/RootTest.php","hash":"48dbf5f3a3fbb2cf1b0da562879656aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetAuthenticated.php","hash":"29f0091e08799c638e8a14c81a93233c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetAuthenticated.php","hash":"e32f567f1d5f4cca51377ab81a80979c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetAuthenticatedTest.php","hash":"ab0454c0a838738c804ce13a7ccdfc8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/CreateFromManifest.php","hash":"17d3ba8d5584bda6f54441d6396ec917"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/CreateFromManifest.php","hash":"2898867c798064929f59f6b8597b45f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/CreateFromManifestTest.php","hash":"fa0de02708b37773789cd85b60f73ea0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetWebhookConfigForApp.php","hash":"a0f3c1be8b673c1898e84bf1ab6645f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetWebhookConfigForApp.php","hash":"b199b67fad1b5ffae2a1a65e004e31a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetWebhookConfigForAppTest.php","hash":"70853d16bedff03c2d6c2f6d358677a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/UpdateWebhookConfigForApp.php","hash":"5771cb3c39e17d9d67b8225c28283a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/UpdateWebhookConfigForApp.php","hash":"1eee6bba58538d78fbbb020cc107ea1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/UpdateWebhookConfigForAppTest.php","hash":"8d58a1b30fae3fb2b0d120d353586657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListWebhookDeliveries.php","hash":"1866f06818f8b05e6afa0e37f0d92a7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListWebhookDeliveries.php","hash":"781e0eedacf4e832c751d74438ddaca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListWebhookDeliveriesTest.php","hash":"55ecc153130d5209d8a1d9afebf35fc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetWebhookDelivery.php","hash":"cb96a4715178d3948163a98bcc2c396e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetWebhookDelivery.php","hash":"4d6783e7c2a34b8eb52131b4a9594154"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetWebhookDeliveryTest.php","hash":"5476a06f636df656ffe2dc43fe413920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/RedeliverWebhookDelivery.php","hash":"6a686e20ac521390b508e6c015385d01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/RedeliverWebhookDelivery.php","hash":"0a5127ccf5b4f89cd181efdd90661497"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/RedeliverWebhookDeliveryTest.php","hash":"9144981d6d8af530aa0fa93da743002c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallationRequestsForAuthenticatedApp.php","hash":"f1428c2e9ee2bbd461a4c13661e80549"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallationRequestsForAuthenticatedApp.php","hash":"eddedfa0afca3aaa007acc1e91317b65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationRequestsForAuthenticatedAppTest.php","hash":"139304662cf7c21a77c28be8d7c5cee8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallations.php","hash":"e77e96b026ecd025e69ff2bbaeab90bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallations.php","hash":"3696107686a544dbadf9d1dea6b561ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationsTest.php","hash":"0259d5a3ebaf7395f508c0ccd1092260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetInstallation.php","hash":"cc89ddfc93414da4bdccf8b766eb6aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetInstallation.php","hash":"330cb4940410c409dccadfd151763d87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetInstallationTest.php","hash":"cb96ea202d8d6b2858ac05cb8c57c6f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/DeleteInstallation.php","hash":"6b97ea2df485b799bed386e673ed844d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/DeleteInstallation.php","hash":"b55055301d4b128a320509828149feb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/DeleteInstallationTest.php","hash":"d71711aaee10d884cf7b0559c1de3d18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/CreateInstallationAccessToken.php","hash":"d711cca70f26722775e4fb475c699212"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/CreateInstallationAccessToken.php","hash":"86d9415d1a1f64428eb4807c2ed9a7b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/CreateInstallationAccessTokenTest.php","hash":"4ebfdd8762e751f1440cba0bb3578505"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/SuspendInstallation.php","hash":"6baf985c6979a06d2adbc42df0f1a109"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/SuspendInstallation.php","hash":"6559fa8ec22608ccb541b3e24d095efe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/SuspendInstallationTest.php","hash":"f5dff6dfd1b053533420052c32674342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/UnsuspendInstallation.php","hash":"033fac3e25eaaa2251a714b883030134"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/UnsuspendInstallation.php","hash":"33f077eba7914d2711ba699649097de2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/UnsuspendInstallationTest.php","hash":"6741ee2bad3312ac3efa8d4d0e78a3aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/DeleteAuthorization.php","hash":"50e423c6c53795d25c2338e60faff2e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/DeleteAuthorization.php","hash":"198e3b641990aa61194d096cc45b9e5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/DeleteAuthorizationTest.php","hash":"115a7fb399750a0b75203e0d9b1a5472"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/CheckToken.php","hash":"55fa79882997fade361c309e69d2a0d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/CheckToken.php","hash":"5036b37190af48660f7d43a1491efc9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/CheckTokenTest.php","hash":"015c06d1c186f907f8b4ceeb7cbf27c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/DeleteToken.php","hash":"ed30761b4d3249ad2c51ffbfbc577964"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/DeleteToken.php","hash":"b8df97d6d46fd0163337eecfed06db24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/DeleteTokenTest.php","hash":"e6559b73bee53c86c18cf763a083b12c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ResetToken.php","hash":"d97821a72d6df6980e0ec8f4f64c2500"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ResetToken.php","hash":"a1ac0691fa4a85619f02c203386ee38b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ResetTokenTest.php","hash":"33a3a79256e1877346838e9358ae1f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ScopeToken.php","hash":"195568cd4773ed72673c8d91edd13e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ScopeToken.php","hash":"f48c687632cd840b6f69979ae083b627"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ScopeTokenTest.php","hash":"9000128b2e9d713f5e7ddea1e6f38d66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetBySlug.php","hash":"913a00f643c0b11f148d95549f20c907"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetBySlug.php","hash":"8f45a9d6104ac54de4454107d9bf6cbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetBySlugTest.php","hash":"d5102cc143bd7a3954fbb0aea6456ca4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodesOfConduct\/GetAllCodesOfConduct.php","hash":"7e2e99d19260e156c5c27e366dded87c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodesOfConduct\/GetAllCodesOfConduct.php","hash":"5ecc863620f596661eccd21def4788c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodesOfConduct\/GetAllCodesOfConductTest.php","hash":"bef7a2efe9a17ac34f80b8c5e5eb81b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodesOfConduct\/GetConductCode.php","hash":"3e36649fb7794694a7446ca8ffd06513"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodesOfConduct\/GetConductCode.php","hash":"3dd6b2bf7e3be5c2464a06cbb44e34a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodesOfConduct\/GetConductCodeTest.php","hash":"a8c5ec012081c073e636c26850ad84a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Emojis\/Get.php","hash":"89c96e6453efd83ed1c74411e9eaf7da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Emojis\/Get.php","hash":"5ec51aa5ea1c249c8103233d362bc967"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Emojis\/GetTest.php","hash":"610e18db8ab3886a923bde349eeb8248"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetServerStatistics.php","hash":"9b6e7460b2898edbf46ea1a3ba460c9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetServerStatistics.php","hash":"38e6dde6f8a76efba5febc061c8ad317"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetServerStatisticsTest.php","hash":"8387d011a8886154045cdaad69f5d6ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsageForEnterprise.php","hash":"a48adb3a8caf6b7f64994c43e475acaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsageForEnterprise.php","hash":"4ad2ef6d4e5962fe37bce1339453aa53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageForEnterpriseTest.php","hash":"1321a2a4d8eb7da6d0fe4f002ad6473a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetActionsOidcCustomIssuerPolicyForEnterprise.php","hash":"96108a2bdda0ac21950ebf7f87379729"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetActionsOidcCustomIssuerPolicyForEnterprise.php","hash":"a6fd5f3088cd4704bd000b93de52b579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetGithubActionsPermissionsEnterprise.php","hash":"30da455cfea9a00274368e44502bc6f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetGithubActionsPermissionsEnterprise.php","hash":"365b5d734dec56b3f15e9997f32c7ee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetGithubActionsPermissionsEnterpriseTest.php","hash":"ad109447268569c0ae56c270a5320471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetGithubActionsPermissionsEnterprise.php","hash":"1c934e1de68dc1550ee3b2d3c53f6288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetGithubActionsPermissionsEnterprise.php","hash":"01974c347c5e6fb2fc1877b029a139c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"370e517f3874684981e34bb585cce0de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"1ae599037caf505257a47fcb5a4e2a99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterpriseTest.php","hash":"819e2a820928680d6d3967ff0ab25f2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"3c6b952c46738db3b317fbaf2553c90c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"03339ff9f62452503a46a3d53633be51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/EnableSelectedOrganizationGithubActionsEnterprise.php","hash":"354510f856d110e07c084e121fc56915"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/EnableSelectedOrganizationGithubActionsEnterprise.php","hash":"e25bcd025095b8c8b45deaae697b7405"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/DisableSelectedOrganizationGithubActionsEnterprise.php","hash":"d6953fd32446bc8fc28049c3d4f5be1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/DisableSelectedOrganizationGithubActionsEnterprise.php","hash":"95f6ebea56a3b710aef8ce4dcaf2b770"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetAllowedActionsEnterprise.php","hash":"5a9bab4afa0447dda836f259b1e708a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetAllowedActionsEnterprise.php","hash":"af6831893469a53b047b453fd3a0372a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetAllowedActionsEnterpriseTest.php","hash":"764391dedbfd92d8f1135823ce127a12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetAllowedActionsEnterprise.php","hash":"93702aa5077730bbe474568f6f314778"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetAllowedActionsEnterprise.php","hash":"ac424e6923e5c63d2b1d1335c15359ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"a084cc3827e4eb75bbadede6de7d7164"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"1c9fc085d3656d137b08e2313b12363e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsEnterpriseTest.php","hash":"066987cdc79c6e9ba0f40b61284c109f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"4615224c8f81a06a8b15a36f59c7e888"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"3f259f5fb85a166409baaf066334c37d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterprise.php","hash":"f89a9a11088632b11f8346c3fe51c24f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterprise.php","hash":"c082b1dcfb3fea51fc6e4650c5ec1957"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterpriseTest.php","hash":"7728766096a21514d42f9243df9ff697"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterprise.php","hash":"54824d9b41cfe87a50ee590384701a90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterprise.php","hash":"dce9931205cfa9b18f114df3839f167d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterpriseTest.php","hash":"5d91c5e047237fca302be214a42c612b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerGroupForEnterprise.php","hash":"4ab10220adbaa2ae87a4582e8a32b8bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetSelfHostedRunnerGroupForEnterprise.php","hash":"7a84e30eef89ef90b67be166b823079e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerGroupForEnterpriseTest.php","hash":"2144bbd1fa80aac929ed175c5cc18d95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/DeleteSelfHostedRunnerGroupFromEnterprise.php","hash":"c1f4bbafe14a7cb123108064f1f1fc99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/DeleteSelfHostedRunnerGroupFromEnterprise.php","hash":"6309b51ebf4a34111e4ae8388a3a5cc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterprise.php","hash":"6ac75419876c5e769d366ab6532f1292"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterprise.php","hash":"5fb489131e602a284432f0f4afd78e92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterpriseTest.php","hash":"b725cdf5824995170e0678e02415ce2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"a34644add6a1f7dbf98e8f69c6b20c98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"93b881c8d8aa195b3290e5d6df7e481b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterpriseTest.php","hash":"d70237388f78c441b8859fd63fb7fed8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"3d5b9ed97dd85a83015158f579e88986"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"3919f928de9d3b34d7e7927865f7e1a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/AddOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"40da460ba0b461ea18ce940c5f417151"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/AddOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"06cbcf0c103e4c486dbe355133db2ffc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"08f463ed6db9729e7978dbfb4b8f520c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"8ef3d7934d087908c9d48a600b00b7a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterprise.php","hash":"225d6776058b37b0b3d13959973037ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterprise.php","hash":"623d8f13168fb7e114efdd7ee2aa27e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterpriseTest.php","hash":"dc8fda0f5f82fbf34cf677a3a929b475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetSelfHostedRunnersInGroupForEnterprise.php","hash":"172b52f7eb00dd055866e1586ab841b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetSelfHostedRunnersInGroupForEnterprise.php","hash":"0fa967735c82cef5b47df0428357c270"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/AddSelfHostedRunnerToGroupForEnterprise.php","hash":"735c7bd0c7c89c570fc1f708ee4016dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/AddSelfHostedRunnerToGroupForEnterprise.php","hash":"fc9af0365f915ffab090cd09934ade4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveSelfHostedRunnerFromGroupForEnterprise.php","hash":"2c39a63fb5f60a3abcb1981555bb69db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveSelfHostedRunnerFromGroupForEnterprise.php","hash":"c2cda10b501a24f82e6a8e6023c67dd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterprise.php","hash":"7f55a30cf56eba0b071ddd8e1b11ffe4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterprise.php","hash":"01f90f0e63f3d111060caa3c37a6805e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterpriseTest.php","hash":"a10833df1d8ace518544f5234ca2e7a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListRunnerApplicationsForEnterprise.php","hash":"f084a700e4d5fd8de387374a8a546231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListRunnerApplicationsForEnterprise.php","hash":"3173b42663e9a633089b7e3b28b959f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListRunnerApplicationsForEnterpriseTest.php","hash":"e68d6ece7b5d7b7db5a8dd3f4f4e4f86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/CreateRegistrationTokenForEnterprise.php","hash":"fe78aa029317af2cba3e5329bc7824cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/CreateRegistrationTokenForEnterprise.php","hash":"b26a15e113456c6a323c8681efbc9177"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/CreateRegistrationTokenForEnterpriseTest.php","hash":"e6d9436068af4768161a7c344c70a4e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/CreateRemoveTokenForEnterprise.php","hash":"1f9b0561f8c910ada7d7f373abb7d4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/CreateRemoveTokenForEnterprise.php","hash":"7f715cfaebe587b1222f73f86c106fff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/CreateRemoveTokenForEnterpriseTest.php","hash":"4162d5f6001a05c2eebf7cad338c88b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerForEnterprise.php","hash":"f1ce005e7eb873062043f0f9a789a0e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetSelfHostedRunnerForEnterprise.php","hash":"5dee98c4388dcfac661774217fc657a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerForEnterpriseTest.php","hash":"b5950c4acc7a8b5c0b18033e963f29b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/DeleteSelfHostedRunnerFromEnterprise.php","hash":"e925a6f51b346c42327103a29cb84880"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/DeleteSelfHostedRunnerFromEnterprise.php","hash":"d094de4d34c6bf926b0795ed71fa4116"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterprise.php","hash":"a4f27631b5f487f91a62fd82a41e0f99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterprise.php","hash":"54909afef0d4afff4242d81319e69e2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterpriseTest.php","hash":"678ae33fbd28417d9a878ff08db73b00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterprise.php","hash":"0e846a75d24d7cb876b8b3a575d75a82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterprise.php","hash":"71efa5a645c248ed50d7c722146f74cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterpriseTest.php","hash":"80a109fefb0fb25dbcbfb89ba28fb5ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterprise.php","hash":"3ab2efa67547b6aac538f993c74954aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterprise.php","hash":"74346bf0b50ba40e283c4ff57ffa825a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterpriseTest.php","hash":"2070aede0fa39049b98a3044778748e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise.php","hash":"a634d9794f56bae0e6c1215ca74955e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise.php","hash":"cb3362bf91a85105eacaaa263989b563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterpriseTest.php","hash":"e0b3d25844e1bb2fa95673f468bcf88c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveCustomLabelFromSelfHostedRunnerForEnterprise.php","hash":"83a721eb49b259640d43f8c4d57753a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveCustomLabelFromSelfHostedRunnerForEnterprise.php","hash":"6e2f44c1b59255d7104d16c8bf46c35e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/RemoveCustomLabelFromSelfHostedRunnerForEnterpriseTest.php","hash":"da698e766fe8f46ed92a876b438a7910"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForEnterprise.php","hash":"91157a4b94360ae77adeae4db275e0e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/GetAnnouncementBannerForEnterprise.php","hash":"52c3c2ae071f0bfa388ffbe8bb6aa2a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForEnterpriseTest.php","hash":"b6d374ee24b16fa6b3c12ceefde9b043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/RemoveAnnouncementBannerForEnterprise.php","hash":"6b8cefd6241b03eca0c59905a7085f63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/RemoveAnnouncementBannerForEnterprise.php","hash":"838cfabc347c150ab6f8e0b72199b21b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForEnterprise.php","hash":"012a87446371929eff7fccd0042b7c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/SetAnnouncementBannerForEnterprise.php","hash":"0883e4d461df615d05745ad0723e59d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForEnterpriseTest.php","hash":"f978045f055280e471eac7971f090edb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetAuditLog.php","hash":"dda540505bfbf86523ecd5c946ab285a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetAuditLog.php","hash":"ff0a7b01d77dd74fcdff15e4c9e13a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetAuditLogTest.php","hash":"fc23372b30de5ea80e78c0ccca7f48ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertsForEnterprise.php","hash":"63a70a2e90d7e53739890f522077ea37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertsForEnterprise.php","hash":"ef171c3b8bdc678d572511c9cfef632c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertsForEnterpriseTest.php","hash":"689e565a4d1a3262e5a697e565189900"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/GetSecurityAnalysisSettingsForEnterprise.php","hash":"4cf39d967589f4218a0b2f4ef9138fdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/GetSecurityAnalysisSettingsForEnterprise.php","hash":"308bc29afcf811b0633604e5edd61423"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/GetSecurityAnalysisSettingsForEnterpriseTest.php","hash":"5047338637abdee7f9f60330174123c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterprise.php","hash":"fd0d98be2476b4cc8c25f94f43ba9407"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterprise.php","hash":"8f53ed6dca875ad22dd8dbc6e5a57a5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterpriseTest.php","hash":"3e82287cdff5631f4b7999982fe0814b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetConsumedLicenses.php","hash":"a682c3e4831d05d3c14a510d149915ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetConsumedLicenses.php","hash":"1c64c5bec7c8dc22c034b4acddd47214"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetConsumedLicensesTest.php","hash":"782d9441d16379ceff5bffafbe3f32c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListAlertsForEnterprise.php","hash":"fe5b9d3cf481134fcaa2d418726da12b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListAlertsForEnterprise.php","hash":"b081fa77c749775f5cc46623c85c2210"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListAlertsForEnterpriseTest.php","hash":"bea8300020bb3468c5cc24a11625c226"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetLicenseSyncStatus.php","hash":"cf5c77dca539af120ec2013798c2c712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetLicenseSyncStatus.php","hash":"a0eec7c32c5760dc5e0bd64c9494bb87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetLicenseSyncStatusTest.php","hash":"d7c0155fbb84e3fd0553b1dfebf8eae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListAlertsForEnterprise.php","hash":"67b29209f48ab7e01b2331bf94836da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListAlertsForEnterprise.php","hash":"63de0ccce8e6e8530df65936d7a62bad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListAlertsForEnterpriseTest.php","hash":"d631b8246605f0f62d6de21203de3d9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubActionsBillingGhe.php","hash":"3886b8a6c06b3ebcce33a20300f4bc9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubActionsBillingGhe.php","hash":"ce0672fdb4dcc4f3f77f4f76804ea0a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubActionsBillingGheTest.php","hash":"eeed782e25ebb973efbb497fb98bd5c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingGhe.php","hash":"5033a0a3418971729cd2b7f66dd8d637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubAdvancedSecurityBillingGhe.php","hash":"5134f0d147e4e168ce922d538bc56b33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingGheTest.php","hash":"63b6f7a1e81fe232cfee969043ed3430"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubPackagesBillingGhe.php","hash":"c384d8236f3b81b4aaeaef785f09b987"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubPackagesBillingGhe.php","hash":"0f87828e1e2f58c09a6634f38d98b72f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubPackagesBillingGheTest.php","hash":"c2c95e9f5485974c5703f3e1821d0efb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetSharedStorageBillingGhe.php","hash":"7aa7534723c7848b2efcba7ac0c04a66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetSharedStorageBillingGhe.php","hash":"341408680173efe1d5a2fcd857f96c43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetSharedStorageBillingGheTest.php","hash":"c0fb752fa73e3a7b143d1b5309704bb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/PostSecurityProductEnablementForEnterprise.php","hash":"d278f0b56001ad28dc60c1eb8d38fbf5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/PostSecurityProductEnablementForEnterprise.php","hash":"873c097f091ab507b714a16359193390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/PostSecurityProductEnablementForEnterpriseTest.php","hash":"4bf03efbcf4b153db5623cd43ad684bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicEvents.php","hash":"d1b46c113a2242ecfa8a73c11c611cd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicEvents.php","hash":"31b8b2e080c5f8526d061bc418620b14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicEventsTest.php","hash":"afb5fa8cff4b152cfd5ee1a6e24e54b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetFeeds.php","hash":"c0b2bd1564bc1dd142729cf1eee3ce6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetFeeds.php","hash":"45a92535766f2bba47f0192e43d407df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetFeedsTest.php","hash":"1812948561220e5c9690a93ae6961e7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/List_.php","hash":"5e348854e3e781978d0ba404eb3c4ebf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/List_.php","hash":"5730dd51bcd8571c43d12b7666415e65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/List_Test.php","hash":"effecf9749d448801aed858423be702e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Create.php","hash":"c191daf2e89a86d900f969ec3710cb6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Create.php","hash":"689a0d1a30609cc18cf3ec4d053284be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/CreateTest.php","hash":"b9397157a449caec6d68604773fcfea1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListPublic.php","hash":"b571b1723a79d23a42ca1071e9bcf4d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListPublic.php","hash":"75b8e5469a7446fc5fc73e4f9ccdc5ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListPublicTest.php","hash":"73aba77f5eb34d8cfcb0468fb8772e76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListStarred.php","hash":"78378cebe7960a3c790ea1b90b1ba8e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListStarred.php","hash":"0dac1daea297b58199c26e060677b305"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListStarredTest.php","hash":"ddb96ba21375d077d85499f2310cfef3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Get.php","hash":"6038c52d97a1873bdd198ba494d8e538"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Get.php","hash":"265087fb5cde70a9ba9cbd251df9dc5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/GetTest.php","hash":"f7413f55d1943251f00bc2f1c2ab18b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Delete.php","hash":"6187bae9f61aa40e6c4296ee17565f9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Delete.php","hash":"21698527e6915fc4356c38a1f8ff6b28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/DeleteTest.php","hash":"09761b946a22f0eab4b7712771a05924"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Update.php","hash":"7ce9c453067d481c09b2a4da44d4a069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Update.php","hash":"49b484607cff021be5da5519e9a4b473"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/UpdateTest.php","hash":"b8d507c2e0ce79ead5b79b1d8fe6bd12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListComments.php","hash":"46abb48f945631414fb54118022bd3f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListComments.php","hash":"7a81127ae1ef8876f2c89e0d25603cb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListCommentsTest.php","hash":"fc00b31fdc28e7c92b54af8199070afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/CreateComment.php","hash":"ee2df15dee04492a340653138d5dfd9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/CreateComment.php","hash":"c8d127cf1a90a310c7f7779dd5de2ac7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/CreateCommentTest.php","hash":"1954213bdcf6a8fed39ccbe7af85fc77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/GetComment.php","hash":"9673a9442abbe1032612bba9fd14611d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/GetComment.php","hash":"175b4468eba55c30dabd8b4edca3afe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/GetCommentTest.php","hash":"0875c71dc10dd69ac7e5b45da4728523"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/DeleteComment.php","hash":"daa40371b808070ab214db3660772d31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/DeleteComment.php","hash":"b1854b29c72036608fa552c9a909389b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/DeleteCommentTest.php","hash":"64aef6f91d62f76141666d66d3adcdad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/UpdateComment.php","hash":"026e6b8a61cff05aa11f29d8446f1b97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/UpdateComment.php","hash":"956737b7730ee4ba71c2537e94e67232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/UpdateCommentTest.php","hash":"b01b624d2bb922ae9e04bc62dcb54352"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListCommits.php","hash":"b5dd595f649ee8eccef129cb6a47315e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListCommits.php","hash":"474591056c28cdd16c16c9e2b77aec8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListCommitsTest.php","hash":"01243c685a5af8264da24ae21e6d14c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListForks.php","hash":"b303c95b30045a0904d7cf5190119abd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListForks.php","hash":"e9641d0b2b45d18314952eed2b693981"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListForksTest.php","hash":"620fe42e93ddca962559f28e3225381d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Fork.php","hash":"5de2e7ecd5b8efb3c89ee4f752ab7526"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Fork.php","hash":"5eafe9b69aab74042db1a00a16f5747d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ForkTest.php","hash":"7bdb7e9f22c659d1da7583ffe18d57cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/CheckIsStarred.php","hash":"609188f4577be140b5b6e0d17b323058"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/CheckIsStarred.php","hash":"961d6386e23c754500708cc40aa49972"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/CheckIsStarredTest.php","hash":"bcfb02d2c3b25ec842ce053e85552c33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Star.php","hash":"d51b6c737ee1637f14d39975875c02ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Star.php","hash":"4725e815814d56065bf5dde209ca7912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/StarTest.php","hash":"f298aa9d9068041f5e3281afe6742ffd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Unstar.php","hash":"a77bd04168dbcc0783cf09f23ebd681f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Unstar.php","hash":"8f21ae7e281b55c7b18b0d3b4fa1262a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/UnstarTest.php","hash":"240f67d4a448ba1e532d1305252e1f52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/GetRevision.php","hash":"0e5a7b4da5e25dde0e716aff76534583"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/GetRevision.php","hash":"9cd348e2822429aff2658d1a2f73c7b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/GetRevisionTest.php","hash":"9b10f6ecdcf306adffe869ff3dedf87c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gitignore\/GetAllTemplates.php","hash":"a36b2233a6c2064f3285c4768b1b9f72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gitignore\/GetAllTemplates.php","hash":"5be4ce47e9b748c9b227129b37740f4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gitignore\/GetAllTemplatesTest.php","hash":"2f76851d87267718a83d94139a30cc4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gitignore\/GetTemplate.php","hash":"0fcdb904c9dad99cd715d43c4f958d39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gitignore\/GetTemplate.php","hash":"cc417b10786a3ae020dcabd216b082aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gitignore\/GetTemplateTest.php","hash":"5423b9e3f37fedcadf4e33ec613455f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListReposAccessibleToInstallation.php","hash":"434bc1a59ded1fb745c6e35e34810757"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListReposAccessibleToInstallation.php","hash":"e03f3bed21b3b28be41d75f33364d918"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListReposAccessibleToInstallationTest.php","hash":"c48d80d82662414f8fb800b24ec76475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/RevokeInstallationAccessToken.php","hash":"4c87b2a1c9cd2d927362a53444b834ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/RevokeInstallationAccessToken.php","hash":"d83aa6a029430c49a0562ba0a0c0d624"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/List_.php","hash":"88435afe9688b6021d362b551af8b992"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/List_.php","hash":"17e2bac802b14310e9f69bf5bbbf1c98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/List_Test.php","hash":"39953fba4f950067672069feeed24884"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses\/GetAllCommonlyUsed.php","hash":"4dc211f5e0f3dd390c97e24fe573d220"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Licenses\/GetAllCommonlyUsed.php","hash":"75eee7f1be20e2b2b749840a858f0118"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Licenses\/GetAllCommonlyUsedTest.php","hash":"5e9f0e3f5b52213cbffb62c161f0baf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses\/Get.php","hash":"dff6f39b1b2f2fc670999b0580ff4ba2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Licenses\/Get.php","hash":"88954e3a4029c256ffa5e74295c9cf40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Licenses\/GetTest.php","hash":"ea3e0ae361c7c6db2e8eb4585c1e0ece"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Markdown\/Render.php","hash":"bf570bdada7f6ac7445591c43ce80985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Markdown\/Render.php","hash":"f7eae221429140aca18a0791fb9a3c32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Markdown\/RenderTest.php","hash":"31a8115145dc68f4ba14f2a4aad0982c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Markdown\/RenderRaw.php","hash":"0d59716a70c67f74eb94155eb3217a03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Markdown\/RenderRaw.php","hash":"a370645fd82101e4478caf472326242c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Markdown\/RenderRawTest.php","hash":"023c7ec5befe4dbc3be0bbbbd6a2007a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetSubscriptionPlanForAccount.php","hash":"1c3d04249ee3922975bab55d92eea5de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetSubscriptionPlanForAccount.php","hash":"c12028bf42a06e288d4a5271be0acc2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetSubscriptionPlanForAccountTest.php","hash":"c74e1fbd6f2ba80a8b06cf11bbf93236"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListPlans.php","hash":"39affa1797ca7be94a63b2bbbe7d2e45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListPlans.php","hash":"56f5bce95bdb91d995cecdfd61a5e079"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListPlansTest.php","hash":"6fffaf216a995749b59865fcfd4b5138"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListAccountsForPlan.php","hash":"0aa1372d78139ac96c62302346edfe4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListAccountsForPlan.php","hash":"5d495b57abd475f6fb14b9b1b44c7b7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListAccountsForPlanTest.php","hash":"65455d481b902f42efe0d6707e594b40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetSubscriptionPlanForAccountStubbed.php","hash":"3579f4561c00cab43f69632a0bc18fec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetSubscriptionPlanForAccountStubbed.php","hash":"92f4e1fcccaad4bed57fee9a6cccd69f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetSubscriptionPlanForAccountStubbedTest.php","hash":"e89c65c5b33d5bfe58875a57bcfd7e69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListPlansStubbed.php","hash":"d90c980e668eb050d0ec79d33e4aed2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListPlansStubbed.php","hash":"abf1fda89a95c9170f524481cb6de652"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListPlansStubbedTest.php","hash":"9c5902060c798d35d80d7ebb13bf8045"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListAccountsForPlanStubbed.php","hash":"ad22d6fcebcc17111894a90e15887b96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListAccountsForPlanStubbed.php","hash":"73dc13367383b62667035868333076ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListAccountsForPlanStubbedTest.php","hash":"3a41e8f6332747290681217895db67e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/Get.php","hash":"644ac0a85d2d24aadef2ef16bee61d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/Get.php","hash":"91b891761c2b09fdb313abcb25546493"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetTest.php","hash":"54d233715b465d49a88eb591fe5c8267"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicEventsForRepoNetwork.php","hash":"a294bcea850d6d1668171585178d8dac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicEventsForRepoNetwork.php","hash":"c6dee0ad079a946759189147e8e0eb48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicEventsForRepoNetworkTest.php","hash":"96f67d40da7620537dac327571b743b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListNotificationsForAuthenticatedUser.php","hash":"9c7dad5993bdd999c06c339229d4eb27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListNotificationsForAuthenticatedUser.php","hash":"1a1442e53c7e9c3bee93cdf92a7533ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListNotificationsForAuthenticatedUserTest.php","hash":"5668dd53b30f4f3e68815c8c3d34ca20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/MarkNotificationsAsRead.php","hash":"3ebc7da750c7f21807bd712e34b24e5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/MarkNotificationsAsRead.php","hash":"484cc07e5f579d378583f96f23362f88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/MarkNotificationsAsReadTest.php","hash":"edb59030694f0bd74a9f62fc67528274"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetThread.php","hash":"1eca7156f595c54d6a9bc26bb399be22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetThread.php","hash":"88f0cb5fd3ecea81928444ab41e42b70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetThreadTest.php","hash":"d9a1a9c3b550c5854d71fdc8798e5279"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/MarkThreadAsRead.php","hash":"b7972deab805cca4414a766585be50b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/MarkThreadAsRead.php","hash":"38192274fef8f8c6f19f7b995d2d0604"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/MarkThreadAsReadTest.php","hash":"6b0e664bfdf5aac8b2088a752112ca88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetThreadSubscriptionForAuthenticatedUser.php","hash":"79ab6c6ea666406ec8857493bdc041e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetThreadSubscriptionForAuthenticatedUser.php","hash":"b71d167999e564f52977d4d8b71c3995"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetThreadSubscriptionForAuthenticatedUserTest.php","hash":"49708a4a973a1fe6b870acf3c0f47b56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/SetThreadSubscription.php","hash":"a08e931b072bf06daf26fb812673cfaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/SetThreadSubscription.php","hash":"d750efe3ddf38d42f130e19765f06118"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/SetThreadSubscriptionTest.php","hash":"1afd85ffbf80b1f9cf2b81e0576c6d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/DeleteThreadSubscription.php","hash":"d744f9ccb9dd6cb2b82b758e25284fc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/DeleteThreadSubscription.php","hash":"259512d2f6d1a1d8bfa404ac9f61a6c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/DeleteThreadSubscriptionTest.php","hash":"b4963cd7804fac98554d9fa732416302"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/GetOctocat.php","hash":"f9927fdaa105bc388ee6742cc23e8369"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/GetOctocat.php","hash":"e33acf04a1d0dc200d17346cfd69ef87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetOctocatTest.php","hash":"04f8a37f3274dc6e303ffb3022a02617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/List_.php","hash":"9b2e6a4174231f0c150fa7bfcb2c24f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/List_.php","hash":"542710dfc51662d3578522a5591ddb28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/List_Test.php","hash":"fc5b6a41a4980e6939c07b77cac84ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListCustomRoles.php","hash":"0b0823bb6fb6bfb18fc3096950bfd84f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListCustomRoles.php","hash":"34cf7105e057b0e301807f06e74ec424"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListCustomRolesTest.php","hash":"f2e27cb81497497e9c40f0e8aa3c4502"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrantRequests.php","hash":"b2b1561f4866a811f06af53272422934"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrantRequests.php","hash":"46a9dcf496fd11f1a750327c52f69faa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantRequestsTest.php","hash":"5e7a0de0ae00ea27c4ef6dc0b5c42a53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ReviewPatGrantRequestsInBulk.php","hash":"05a581fcab082a0bcebd1d6ee2538015"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ReviewPatGrantRequestsInBulk.php","hash":"5e1b0235a20cf2171d0f8542d0198288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ReviewPatGrantRequestsInBulkTest.php","hash":"0397abba8f11974f98fc519f56adb108"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ReviewPatGrantRequest.php","hash":"8438280256f7384d39e9f305ee8dd302"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ReviewPatGrantRequest.php","hash":"237ac3a09d5ce5d88310e5ea29e9ab23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ReviewPatGrantRequestTest.php","hash":"458b13ebd78080626aeb0573476d6187"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrantRequestRepositories.php","hash":"3b892b93d974308a5765b53e5795fcf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrantRequestRepositories.php","hash":"00cc8fc17d3500537e00d2a1a1785c1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantRequestRepositoriesTest.php","hash":"22719a5c284b30259935cd304d7a87c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrants.php","hash":"fae39925c2944fbbf0596be2a1324ff3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrants.php","hash":"36e95b85e4e85925ba750538f1a7017d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantsTest.php","hash":"c6e8c8caf50d7fca92270d1c2543160b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdatePatAccesses.php","hash":"b59d2ad0c5221e788ef9cfde841f6866"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdatePatAccesses.php","hash":"3c0ab796a99532f6601e82b2f3713345"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdatePatAccessesTest.php","hash":"766dca5099d4d763bbfea52141cd1a52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdatePatAccess.php","hash":"921ca43ee8d13d29d35590431c021b2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdatePatAccess.php","hash":"93ef02e6fc466c9f487060d23b920fbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdatePatAccessTest.php","hash":"3b31e2354243385fcb441d4727c573fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrantRepositories.php","hash":"1d7c150d839926e118d7870a71605c9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrantRepositories.php","hash":"f61c6e15f42bab9e67c8636cc2314bcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantRepositoriesTest.php","hash":"fb57c061eabda7613ba3c013e9dd38c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/Get.php","hash":"cceb2cc238a53b896ea0c5ca2a679bb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/Get.php","hash":"2273a5e6f506314992f055298b9734d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetTest.php","hash":"aab387427c936a05f1ff146675dd1740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/Delete.php","hash":"2963ddc8e7bf785e3696d045792e000a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/Delete.php","hash":"7fe5e29f6a260feb63188a81c6407443"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/DeleteTest.php","hash":"0331bb572cdf8b7f5686bb22a38e5c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/Update.php","hash":"b0477f2f07780920cd5574cf321a213f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/Update.php","hash":"f77718452398fbb6066a7c022f13f54c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateTest.php","hash":"ef6b722b4e983c5f5359eed6f0250ea8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsageForOrg.php","hash":"3bff8e90d13e884f30aa43b4129471c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsageForOrg.php","hash":"c906edb892e8d1724bd33e0e8d91f72a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageForOrgTest.php","hash":"8e3702cfa3e1f61d88e4c1df87406019"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsageByRepoForOrg.php","hash":"800faf68d02d42909e9bd413a5bdd1d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsageByRepoForOrg.php","hash":"a278fc3c1c35568f0048b6864e45d41f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageByRepoForOrgTest.php","hash":"23b2d11fe1389052be1e4d80c1b43b58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Oidc\/GetOidcCustomSubTemplateForOrg.php","hash":"7477df0938832aeea9a0766aee4df3b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Oidc\/GetOidcCustomSubTemplateForOrg.php","hash":"7e21cf8ce82a015ca58b67fbe37456c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Oidc\/GetOidcCustomSubTemplateForOrgTest.php","hash":"9da12d84994a3d8bc831459867244f3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Oidc\/UpdateOidcCustomSubTemplateForOrg.php","hash":"a5e7725296f844a10ecbbc43446e8e15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Oidc\/UpdateOidcCustomSubTemplateForOrg.php","hash":"f4e972ad976f02b7138ef32e8f1d67f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Oidc\/UpdateOidcCustomSubTemplateForOrgTest.php","hash":"88ad7331b44c7fb6cd7a3826a20dc7c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsPermissionsOrganization.php","hash":"7053d1ccd5ee4525f4c920786795e99a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsPermissionsOrganization.php","hash":"7b8720978e40c0d1bd6f65376e6de755"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsPermissionsOrganizationTest.php","hash":"db2f4a25d551f23ac92a45bf3b9d577b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsPermissionsOrganization.php","hash":"7275833842c43c6fc294821710eb81f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsPermissionsOrganization.php","hash":"7c093cb7f5ed1a359b6aabec410d7d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"fa6cf6f4bca256002d8497ff51c8db3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"772702d598e11f9fae3cf7a5d4e555be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganizationTest.php","hash":"410f83812d605c76a085d0191060ff62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"b1f24a02d474cf69a65b246d2650f66c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"02336f5a0fad5ba993f1e9ca05de7456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/EnableSelectedRepositoryGithubActionsOrganization.php","hash":"123af250946d6af5d1793abb4b73b0c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/EnableSelectedRepositoryGithubActionsOrganization.php","hash":"7969b5ee1b1de273b2a71df6738e29eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DisableSelectedRepositoryGithubActionsOrganization.php","hash":"1d53246a4e9e0f6c04dfe4302b0e73bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DisableSelectedRepositoryGithubActionsOrganization.php","hash":"97dbf1cb2edcb607dc9cdec4ade26f75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetAllowedActionsOrganization.php","hash":"26f3b594aa9ca66da79af4339638562f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetAllowedActionsOrganization.php","hash":"a2370b24fe106d7de03e0f6354593b41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetAllowedActionsOrganizationTest.php","hash":"0f2f666ea4dc5258942e25658412ab78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetAllowedActionsOrganization.php","hash":"787ededa50e476f37d2810de325f958a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetAllowedActionsOrganization.php","hash":"b5e7504f8c8d8f204c33674a53ab8618"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"95068b3bb7b0138a23401b1b85008eb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"ffa6214afc27aab20c42dbbbc6d68296"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsOrganizationTest.php","hash":"f14432793986803fd55aa052d6e0c96c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"50c10e18c1dcc5afbe3fd64e7474f76f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"9581c9f2c0b04f6a6552da99123f93e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnerGroupsForOrg.php","hash":"d6a72b0aead4b8aebddd8fe287f30bbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnerGroupsForOrg.php","hash":"402f1e7faf84a62719f695750313e2e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnerGroupsForOrgTest.php","hash":"7602d0505eeca170b36b454099ab9be4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateSelfHostedRunnerGroupForOrg.php","hash":"7da663314297c4dccade43904d5b131b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateSelfHostedRunnerGroupForOrg.php","hash":"c40c9420b33202fce8d2b4e8086f498e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateSelfHostedRunnerGroupForOrgTest.php","hash":"3115b006fde6af1a422ad6753637a562"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetSelfHostedRunnerGroupForOrg.php","hash":"7210e25374c5cfb768c0f8aaa96e44c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetSelfHostedRunnerGroupForOrg.php","hash":"73776a47080b69c6c317d63a9e3e6aa6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetSelfHostedRunnerGroupForOrgTest.php","hash":"d1b0bdd610013951eeecd5045c334e9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteSelfHostedRunnerGroupFromOrg.php","hash":"7406e40a8daea774153a7d0e563239ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteSelfHostedRunnerGroupFromOrg.php","hash":"7e3b4afe40c0f7f903a9d12355fa5aad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateSelfHostedRunnerGroupForOrg.php","hash":"f71c89f6e8fe06b22ec11eb5fae87aaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateSelfHostedRunnerGroupForOrg.php","hash":"2d62056b7610bb9a8e40b6cfe013709b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/UpdateSelfHostedRunnerGroupForOrgTest.php","hash":"9c30320f641f82b64908fce0b67066cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"7c07e49c8e382d3035e20922e6d02493"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"2cb45dab6dc1202b3f8eeca04b9b28ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrgTest.php","hash":"d619f364dd03fb1ef657b4024742903d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"1ea8a2ef05489eabbb63ac322a9c4a3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"1af0f1aadf8dd53622df42235870af49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"cb2d75bac65eb0861847fbb94e1a7c65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"34f72fc742aed49a19c6e55a6825b046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"d0013b87e589159e3707f751175b9475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"4b4b6759e01e0ebd079fb8d8b925d300"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnersInGroupForOrg.php","hash":"14b0b211c7c9fea9f62f34a3fbbc4996"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnersInGroupForOrg.php","hash":"93e059af534cdd4ac881ec7778a18e10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnersInGroupForOrgTest.php","hash":"dd4739d52b0ff3d8c56f97a87a57068a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelfHostedRunnersInGroupForOrg.php","hash":"20a7ff0c49dc3f6bad9ae003b8668ea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelfHostedRunnersInGroupForOrg.php","hash":"e6ae8148ca7458106fc29cd25768a604"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddSelfHostedRunnerToGroupForOrg.php","hash":"3aa89bdaad0dd9885c57710bd523886e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddSelfHostedRunnerToGroupForOrg.php","hash":"52d0ad18a72050308e8fb75ff619efba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveSelfHostedRunnerFromGroupForOrg.php","hash":"77b78791730ab86039b3a3f35e0cce29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveSelfHostedRunnerFromGroupForOrg.php","hash":"77a513e0b7cfb652606dbdb218dbe0bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnersForOrg.php","hash":"bd08f589e5a04126cb6ac423928cec3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnersForOrg.php","hash":"b5052efa8c9b2a2fb9430b94dc9b1eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnersForOrgTest.php","hash":"cf3ec03d1207aaebdc6764fbde90c821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRunnerApplicationsForOrg.php","hash":"a4fb5e6855f3fa719e2ff1c6f76b5769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRunnerApplicationsForOrg.php","hash":"5d559c79632fafe80eaa7f73e32b6bed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRunnerApplicationsForOrgTest.php","hash":"a67c58ebf83f20c09ea2fb7e2cd7b4c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRegistrationTokenForOrg.php","hash":"961f4d388d2024b65328e32b5c9cc8e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRegistrationTokenForOrg.php","hash":"c6545148af5b21fd6c0d2f767c41eb8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRegistrationTokenForOrgTest.php","hash":"16dd3ce227fd45aa8211b0c84547b7ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRemoveTokenForOrg.php","hash":"34d584edfb99192ee5fb4eb282902121"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRemoveTokenForOrg.php","hash":"fbb8c91f4a0906b043adc81bea386bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRemoveTokenForOrgTest.php","hash":"42db56b52c49cd83e3775d813ae1309e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetSelfHostedRunnerForOrg.php","hash":"458ff2a616df4ecef660009d079b081e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetSelfHostedRunnerForOrg.php","hash":"90c57bda536a8368533c182c3adfa154"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetSelfHostedRunnerForOrgTest.php","hash":"76248ecb00cdde38126c218122ff591b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteSelfHostedRunnerFromOrg.php","hash":"8feaf1cbc9091972ed496a2ac1382fb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteSelfHostedRunnerFromOrg.php","hash":"5f38c18a4c1a37f3768914bbbf4728f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForOrg.php","hash":"29238da547bc1567e5f551abf0a8415c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListLabelsForSelfHostedRunnerForOrg.php","hash":"413bdda44fd4b5adb31d5775269abab3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForOrgTest.php","hash":"852c6b4d6ccd867f6f35961a0631993a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrg.php","hash":"a35c53d79e0a2a9b9567c1d944b93fcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrg.php","hash":"e9cc51cc9da3b5906209abb97f4e7d56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrgTest.php","hash":"fc52cecb583300810e463076dc60f47a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrg.php","hash":"2e370cd82c6d06b1cad86d3ab70462a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrg.php","hash":"eab0a45371df5b2c8c29942eb7e3d4c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrgTest.php","hash":"5edc39a7a1931135f2855c4e680a80ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg.php","hash":"3d17a69be040bee2cfccca188457ce0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg.php","hash":"9b1144b4cee5ba916ad9890d257b7605"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrgTest.php","hash":"14383daba44747128879e0e647de64ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForOrg.php","hash":"5399bf1f7dabfb356eb8b3bb61abe404"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForOrg.php","hash":"80fc98b73871716dd18fe2db788369ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForOrgTest.php","hash":"d0dd6679800d28b180968fcefadfbdce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListOrgSecrets.php","hash":"cca843592d6f88d1660e66f4a4a28188"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListOrgSecrets.php","hash":"69c9557294c6cfb1bfbabf26c96cfb6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListOrgSecretsTest.php","hash":"2388349590fabd3fc65018984d829d2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetOrgPublicKey.php","hash":"919d11d9e99cdadfe32d8af98fb36319"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetOrgPublicKey.php","hash":"173b73c2bd47c2703d33f5d1442eba8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetOrgPublicKeyTest.php","hash":"d5d9f0a051e8ad2c9670bb247283ce15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetOrgSecret.php","hash":"33054af2f35fd150e1f04165be0c2857"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetOrgSecret.php","hash":"385c9174eb9cb6db8630a87c2fb46d90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetOrgSecretTest.php","hash":"37c331ad645668508502df3a3ddc3572"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrUpdateOrgSecret.php","hash":"d425c3d7dc2aba7fea3ed895b1a450cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrUpdateOrgSecret.php","hash":"c10e5bee49be229764b63c75b44a01ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrUpdateOrgSecretTest.php","hash":"2eb306bd27b6713c8e8ba19f51e96cc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteOrgSecret.php","hash":"d6a7e75b9ec02170e367cd58ca9fd08e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteOrgSecret.php","hash":"e206abf64e375a1a35a292733d574fda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelectedReposForOrgSecret.php","hash":"0ae57bd36bc86d53bf3a1821aa1e874a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelectedReposForOrgSecret.php","hash":"3f61682a30b986a8abb26773019a89c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelectedReposForOrgSecretTest.php","hash":"eaedc506e2daef755caed1463af21a2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelectedReposForOrgSecret.php","hash":"6bc0fc90c5feae7185fee9e3a3e737c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelectedReposForOrgSecret.php","hash":"498bba042a6dc48b387ba1a5a553fe8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddSelectedRepoToOrgSecret.php","hash":"8349c63d337c0a0cbd5bb6329875fc37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddSelectedRepoToOrgSecret.php","hash":"833b6316585f7054d602adc1729b5a70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveSelectedRepoFromOrgSecret.php","hash":"9ed15d6233a3e1c168f247175866bccf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveSelectedRepoFromOrgSecret.php","hash":"3c4f9ba8d89d80b5233ce547822602a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListOrgVariables.php","hash":"3ad069eae5a6392f8d3ad4a338b64e33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListOrgVariables.php","hash":"878560959f82976c5f4fa5025bfb0fcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListOrgVariablesTest.php","hash":"5caccab5829151d7df28be8b3c21e130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrgVariable.php","hash":"8ffbec32785e263f93dc0c33fb6571da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrgVariable.php","hash":"296d48d42b02b036fbf2bd33d96b1744"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrgVariableTest.php","hash":"a837844e1be0fadd5da9b672a13f5dda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetOrgVariable.php","hash":"4605848142bf2fe6c29de0e2da9a4dbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetOrgVariable.php","hash":"92be1205126a21ad365ada6a88e50ab8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetOrgVariableTest.php","hash":"196c6fd2edf9f1d9bed1ae56ce949a55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteOrgVariable.php","hash":"e9de03e61666932775137b080cddf905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteOrgVariable.php","hash":"4905b703d9143be622b15dc705f515a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateOrgVariable.php","hash":"0ff7c44d4875b169eb31dbbb6f0ecdcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateOrgVariable.php","hash":"5fd002bc41fe01783b79e38e13740be4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelectedReposForOrgVariable.php","hash":"277e16c124d850d3b5b01e75d21e90b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelectedReposForOrgVariable.php","hash":"b29a235638a7da8622ca65b44049428a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelectedReposForOrgVariableTest.php","hash":"35e4956fecf4ffb9a38703a4125a4858"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelectedReposForOrgVariable.php","hash":"b97803a52fe63bf4f08bdf9e5056ff9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelectedReposForOrgVariable.php","hash":"8cad1ab590dcaea5733c2493b9190895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddSelectedRepoToOrgVariable.php","hash":"4e74eae14f7404cd353c3bdbeaacb91f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddSelectedRepoToOrgVariable.php","hash":"9e5998b102c31c325d42ec6c286e4892"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveSelectedRepoFromOrgVariable.php","hash":"5b6ecce44e4efd0d37bcfb7569796c0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveSelectedRepoFromOrgVariable.php","hash":"8503604cf17c78aaee8c7c9fddcf336c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForOrg.php","hash":"7f1061a74c0394a992cde950dde34514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/GetAnnouncementBannerForOrg.php","hash":"1a6fe4ac80946883a0f7f307a2d37d44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForOrgTest.php","hash":"73dc007f0d46e3969ab6edec328c1fe2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/RemoveAnnouncementBannerForOrg.php","hash":"365d25733213044cf754b4d12aca55ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/RemoveAnnouncementBannerForOrg.php","hash":"0857a3557fe52156fb3e4a86b648b3ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForOrg.php","hash":"69645d060847f2553cb516e6961fe30c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/SetAnnouncementBannerForOrg.php","hash":"ea0a5f89f6e648fde4fb79f1fd7c7e70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForOrgTest.php","hash":"1378dddbf1ae65da289dfab28fbde37d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetAuditLog.php","hash":"817dc0b8a9664e93dacae9df85e4fb25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetAuditLog.php","hash":"b52b62b05aa6a10423192a87cf3d4f11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetAuditLogTest.php","hash":"ee9bbfe8581a9a9be689eb8643f07062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListBlockedUsers.php","hash":"5612df09ee9918cf5e85b4bb75c9f8b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListBlockedUsers.php","hash":"ca14488e2cd14fcd4fe6bb091fb09471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListBlockedUsersTest.php","hash":"207d5390601fe0f78cca362e46624005"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CheckBlockedUser.php","hash":"0aca156f28b65882af6213ca4ee24ac4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CheckBlockedUser.php","hash":"ab53abf9dad7318111665990f10ffd31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CheckBlockedUserTest.php","hash":"70e8113c4ebe685db8702b4c32965b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/BlockUser.php","hash":"6a9c35d5c412f6a412506ff1430dbfd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/BlockUser.php","hash":"835f05961e794e3fdaaf50db3f2e1712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/BlockUserTest.php","hash":"4a88611e3cedbdcc5e04e679235135a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UnblockUser.php","hash":"11144f00c53ec14d5b1bdd73e2ca2f08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UnblockUser.php","hash":"6e590a48abc40c196c101377754c23d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertsForOrg.php","hash":"e5639b455b527469fa3f87a2afbcf8bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertsForOrg.php","hash":"ae8a0e426ff5be1fb6be6bb15b82527c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertsForOrgTest.php","hash":"5ca5c2cbb694bafefb87f1d8d8221de1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListInOrganization.php","hash":"124a22fa05cb110b8c79e377230d67cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListInOrganization.php","hash":"4849c1223b9fceb16e69ce8019f04e11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListInOrganizationTest.php","hash":"af247c0c36bb26f9fb2c7c3e4c73332f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListOrgSecrets.php","hash":"ed1dcd86038fcc5117a7f8d1a9e0c1ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListOrgSecrets.php","hash":"9adaca59bc62d7bbbfa554cc5f787105"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListOrgSecretsTest.php","hash":"266c4e8a3c320b3d32f07624517a42b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetOrgPublicKey.php","hash":"4f5fdead3adf7a82be159c86b103fc58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetOrgPublicKey.php","hash":"b9084b8925c643f938f8ea67430efde8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetOrgPublicKeyTest.php","hash":"c22152d3598876aa806adecd8c8e0654"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetOrgSecret.php","hash":"365ba81838612bd8160b4e6ec61bd304"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetOrgSecret.php","hash":"4965059acbd50da9dd20c0f0f9db8323"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetOrgSecretTest.php","hash":"4a3d9ba113f85d0b2dd5ab61a143093c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateOrUpdateOrgSecret.php","hash":"098050f03195485ac87f3df346d2ccb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateOrUpdateOrgSecret.php","hash":"7368504f1e21969762a971901368991f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateOrUpdateOrgSecretTest.php","hash":"475e7b16b5296d3a9f87bb3799400931"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteOrgSecret.php","hash":"0d1c1d6bdcfff7b107958118028e8740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteOrgSecret.php","hash":"99d3a9061a65403a45bb6bd01b2dd3bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteOrgSecretTest.php","hash":"f016345d5735989e7d5cd03a52095b16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListSelectedReposForOrgSecret.php","hash":"3c1f54ad27a11cd55f3e86b77b1e1f4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListSelectedReposForOrgSecret.php","hash":"cc3e1cdc896408186bb65d2be04482b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListSelectedReposForOrgSecretTest.php","hash":"f1e99a657f5ab640984f00f9c53393f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetSelectedReposForOrgSecret.php","hash":"f62698e654a0b738fbb0c931d018d96f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetSelectedReposForOrgSecret.php","hash":"8ba4926e391d1e627202554e9c53707b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetSelectedReposForOrgSecretTest.php","hash":"e99bb411591f282d43171c93c17080f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/AddSelectedRepoToOrgSecret.php","hash":"56d6742d217a79a366ec5a3c56ebd5e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/AddSelectedRepoToOrgSecret.php","hash":"ac3433384e8fabce722520c83b1fe850"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/AddSelectedRepoToOrgSecretTest.php","hash":"be000b0e2b2f39d4843dcc70e0f2526e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/RemoveSelectedRepoFromOrgSecret.php","hash":"03436e2d4276c23654c40179b0d5762b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/RemoveSelectedRepoFromOrgSecret.php","hash":"95a5c6b43c0d6400e9d3068d47c5eb3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/RemoveSelectedRepoFromOrgSecretTest.php","hash":"a935990a9c89bcc8f861cd9e151df6f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListSamlSsoAuthorizations.php","hash":"8dd1ea2bae756e4c83360528657a771e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListSamlSsoAuthorizations.php","hash":"886c0ad4d08d6a7f197f407819e0a69e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListSamlSsoAuthorizationsTest.php","hash":"e18f087ef8484375646511eccf46d7c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveSamlSsoAuthorization.php","hash":"e44c22b32a4c4a949d15949b888303be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveSamlSsoAuthorization.php","hash":"b78d3f0817202c3b31a6f970e2411df4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveSamlSsoAuthorizationTest.php","hash":"2fab652e5058d2a4699714c63ce4b554"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListCustomRepoRoles.php","hash":"512a00d44d95436fc2f1278f38ddb630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListCustomRepoRoles.php","hash":"17a58ce4a178b3bbc049754ccec085b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListCustomRepoRolesTest.php","hash":"f8b62017b1e217c2bf0c8034ecc53e79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateCustomRepoRole.php","hash":"171e14ef5adb70a32ae78f7b03275a5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateCustomRepoRole.php","hash":"0e258b82feb80df85e2b0c4a39fb4bcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateCustomRepoRoleTest.php","hash":"3d91b0f6ce4a8706bad568aa822e92d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetCustomRepoRole.php","hash":"967d232e6c4a77b6182f0dca246847de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetCustomRepoRole.php","hash":"85799d5d986ae3d85c676396b53a6082"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetCustomRepoRoleTest.php","hash":"73abe59a400cf6a787d13d3de073b046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/DeleteCustomRepoRole.php","hash":"a53f5ca6597571e86dc643473a2f2c30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/DeleteCustomRepoRole.php","hash":"fbca9f688370ec2915ef2b8d611f5ac7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateCustomRepoRole.php","hash":"49b0049a3c5c8c860f139cd5a21dc54f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateCustomRepoRole.php","hash":"77e5dd8d12f41552c08046b0ca687b0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateCustomRepoRoleTest.php","hash":"0e8ec9d9384f03c7a8078c2800bc30e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateCustomRole.php","hash":"51fda91c4fff1205d6b8403b2a81dd2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateCustomRole.php","hash":"16068d8cc559ea23839f8c4a060960ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateCustomRoleTest.php","hash":"15aaca6bb4918ae0d956586e25bf2b6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetCustomRole.php","hash":"126f16c5c43e4cdc8f82eaabe23bf0bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetCustomRole.php","hash":"16d84711f3bd88e482b91ce514ce0cbd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetCustomRoleTest.php","hash":"93d2b656201969e5840b80cf19a01b20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/DeleteCustomRole.php","hash":"7e3c7b0bdc409b55ff0a45dad490ec62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/DeleteCustomRole.php","hash":"f860c2a6a40af98ce6093a63a19e1ca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateCustomRole.php","hash":"a1d68837ef5c99e0d4a06cbc365f1b95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateCustomRole.php","hash":"31bbd1a7ae8470f25c06073eba08c07d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateCustomRoleTest.php","hash":"6968367130cf1aa6b051e5d91621fac9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListAlertsForOrg.php","hash":"37c0d555b665fc0f1581b828bc945f3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListAlertsForOrg.php","hash":"ac07ef09dc1c415f7c44cc58bce6000d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListAlertsForOrgTest.php","hash":"66353f78a20427c057e43d09de8488ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListOrgSecrets.php","hash":"db1eb818bbc5f875b17485a35a89cc12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListOrgSecrets.php","hash":"449626c352be2e63bdd460f6206d4120"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListOrgSecretsTest.php","hash":"9d48c7faf987a30ffbdfb5dd1cde73b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetOrgPublicKey.php","hash":"a4e3244c582af7529758fdb3ef50f31c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetOrgPublicKey.php","hash":"62f283d660d3ba2dcf45fb10a8a25c0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetOrgPublicKeyTest.php","hash":"332e5ddf33a2ddf91c1d32efc2a6c921"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetOrgSecret.php","hash":"89a867c423f62d855ae712e7f57493b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetOrgSecret.php","hash":"6536c1633087a8dfc2bdee1579bc8204"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetOrgSecretTest.php","hash":"903f71d6c610cfd91b9a9017850ce05c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/CreateOrUpdateOrgSecret.php","hash":"0208fe0bcd07f84aa67d811fed5b86d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/CreateOrUpdateOrgSecret.php","hash":"2516c10ef4b09115471833e36091a47e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/CreateOrUpdateOrgSecretTest.php","hash":"883486efbeaf544a2d62236c924bde79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/DeleteOrgSecret.php","hash":"8601df826ae4ba6ee956b5cf6f72dbad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/DeleteOrgSecret.php","hash":"bfeef937c3f2283bb0ad01cb5afb4c56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListSelectedReposForOrgSecret.php","hash":"13e653af3764663a20a204e5b3025ff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListSelectedReposForOrgSecret.php","hash":"5248731700a12d889c5f9c879c570274"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListSelectedReposForOrgSecretTest.php","hash":"7365c97d4aaf66522b1c889cba2938e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/SetSelectedReposForOrgSecret.php","hash":"95abbbc128f6f605ad5cb83fab385128"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/SetSelectedReposForOrgSecret.php","hash":"76d0fb7a6e7f59f6192bd40572bb1de6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/AddSelectedRepoToOrgSecret.php","hash":"320abf3285a01a298a1ae669030cb2dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/AddSelectedRepoToOrgSecret.php","hash":"eb63ff52f823bee4affc5166f529375c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/RemoveSelectedRepoFromOrgSecret.php","hash":"5f0be269194664dabce7e452425517fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/RemoveSelectedRepoFromOrgSecret.php","hash":"d42714439c97334b98517da8a6940a51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForOrganization.php","hash":"2db3dea01cb301d9a2659c413875005a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListDockerMigrationConflictingPackagesForOrganization.php","hash":"c739e272f371d7808fda2ecd0e624a47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForOrganizationTest.php","hash":"3f2f4dd0e8a2093a0a81483d5beee34e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicOrgEvents.php","hash":"cba8ae4b486524713443b1a4fbc12b04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicOrgEvents.php","hash":"f36a622bd5f2a1edcb797c1c8c75b0f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicOrgEventsTest.php","hash":"8ec09150bcd26d962ff5816de83320f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ExternalIdpGroupInfoForOrg.php","hash":"d9e499f83f43899b871102d2b58fe719"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ExternalIdpGroupInfoForOrg.php","hash":"3cc3a1a75010e364fe2b6cd0848e4c07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ExternalIdpGroupInfoForOrgTest.php","hash":"78e59bab8e4cf9d7725f3be569b1ec75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListExternalIdpGroupsForOrg.php","hash":"ab3f1922812c020cf8c4de011bfb1087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListExternalIdpGroupsForOrg.php","hash":"8eb19edba03c2949e7f30e750abffcb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListExternalIdpGroupsForOrgTest.php","hash":"0a5035f86da41f840290c53ff1924194"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListFailedInvitations.php","hash":"82e8ce6b38968aff0d0819858a1ce6c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListFailedInvitations.php","hash":"3e478db46d9f6b3c155071f169015337"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListFailedInvitationsTest.php","hash":"f28b74e0b453f762e00cd3a8ab7a66e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListFineGrainedPermissions.php","hash":"52ae0a7e10afcd1e3a004b4708f9b1ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListFineGrainedPermissions.php","hash":"a099db64f7319ce851077058b96db7f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListFineGrainedPermissionsTest.php","hash":"b085c52d9a4ee9d70ad9bd4122133236"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListWebhooks.php","hash":"d4c50329727ee3448f75ef3c32a80adc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListWebhooks.php","hash":"d35eb93fecb0b0ba5f082657696fd1d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListWebhooksTest.php","hash":"e5ad203527042f798b7be71a8b803784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateWebhook.php","hash":"890b5375251ded47baa4ae3d00b9dc54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateWebhook.php","hash":"bda519d456f57b510678fb9f9f792dbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateWebhookTest.php","hash":"81e634fca61635ef66f4a0f20b254aa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetWebhook.php","hash":"175a7c85c6fb9b8d4aa620c806e92c6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetWebhook.php","hash":"3d8abf64155982c1f89e2d1abca8f779"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetWebhookTest.php","hash":"f6be2e41e13384a150b44cf731502fb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/DeleteWebhook.php","hash":"7983b7ae0020c68bd94a8b4a01afbf5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/DeleteWebhook.php","hash":"b611744f52823148e30195605d70965f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/DeleteWebhookTest.php","hash":"295a719b4c106f16d25d7d883d881b26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateWebhook.php","hash":"0e23b2ebe0eb617f75db9bc71983ca6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateWebhook.php","hash":"d7f3bca2f10172b323e97c553d505657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateWebhookTest.php","hash":"1ee970fa4d85bb1a8a13b0d6a4105c1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetWebhookConfigForOrg.php","hash":"b0eb65d1bcae9fd556d9086ddc7fbf2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetWebhookConfigForOrg.php","hash":"f783c7d0c6ff400289c664cd9a46d52d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetWebhookConfigForOrgTest.php","hash":"34f2580307101e04ca2a668734b97b4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateWebhookConfigForOrg.php","hash":"48d45e77e96e6366419e439cead8d3cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateWebhookConfigForOrg.php","hash":"b598063158150f90613c5cac63348a7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateWebhookConfigForOrgTest.php","hash":"13f5280324e8db5ee41abcda9a8241a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListWebhookDeliveries.php","hash":"83c1611264922ebf13b233e36471356e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListWebhookDeliveries.php","hash":"c7e4cea43f6a5fb76e9d6fad61d980e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListWebhookDeliveriesTest.php","hash":"63ad04fdfe18c39bf8a8c1d490b7e740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetWebhookDelivery.php","hash":"7bbbb9d1f3d53194459a48bdaaed312f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetWebhookDelivery.php","hash":"7772e1bc57d7450dd1a23a3380e46e36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetWebhookDeliveryTest.php","hash":"3368c72ffde1e1ea29dcae95bec81449"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RedeliverWebhookDelivery.php","hash":"a902fe7067bb819e906b4a8ae90a9771"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RedeliverWebhookDelivery.php","hash":"2fa69637bc9dadad21c628564eaed762"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RedeliverWebhookDeliveryTest.php","hash":"89d3fc302d2cd0d2d49dd51b9106b1ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/PingWebhook.php","hash":"65a7b1bd462b3ebac73cb6e541f73c1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/PingWebhook.php","hash":"c4c29a7f056b4266b882dd90e6a37699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/PingWebhookTest.php","hash":"798da877a321a784a9808cc5e1827b20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetOrgInstallation.php","hash":"e13312505b58d979fb4e960e68f68982"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetOrgInstallation.php","hash":"5ec9c357e64281d9c587e812a64e0612"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetOrgInstallationTest.php","hash":"1595a0d1cd894ef4e91f8120f872d44a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListAppInstallations.php","hash":"daf6159b4c8f3b8e5716cc75b6c7950e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListAppInstallations.php","hash":"554d7265ad88fe63e1f187a827fd5645"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListAppInstallationsTest.php","hash":"8fea128f3e22eaf449d33b7a36ee4552"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/GetRestrictionsForOrg.php","hash":"600985b25a4d3e8d11ee9ebb4aba0404"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/GetRestrictionsForOrg.php","hash":"a25b82e65b8b6670a3a52955f21875ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/GetRestrictionsForOrgTest.php","hash":"f1e198f60da48ec5e0bac76be1d938b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/SetRestrictionsForOrg.php","hash":"8cfa7a5a52b5f0676a2206fba66c9118"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/SetRestrictionsForOrg.php","hash":"694fc0bc9bef2fdbeb183176cdb91609"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/SetRestrictionsForOrgTest.php","hash":"9d3c55e5482635a94c763c84576d3450"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/RemoveRestrictionsForOrg.php","hash":"9687edc1cc198624d718d55a6276743f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/RemoveRestrictionsForOrg.php","hash":"639ef9de5a4e7c6f7a483204617b1be8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPendingInvitations.php","hash":"99661df0980c7ce29e41443250b15fcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPendingInvitations.php","hash":"d35fc7a878ade5de468f1d402225c237"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPendingInvitationsTest.php","hash":"ab0331c7c786320941628a3cd44715a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateInvitation.php","hash":"374cbbce56bc70f5274a5d614405a575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateInvitation.php","hash":"ffdbad96ea748d0fbcbd9de97315b2b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateInvitationTest.php","hash":"637a130fc7353bd555f7ddc63591ac13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CancelInvitation.php","hash":"9406075c4f6e11f094f2fd2c11c9faed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CancelInvitation.php","hash":"fc44633a6a80f5aaaf8757782ac1e4a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CancelInvitationTest.php","hash":"395ae0e147441e20fcbdde0d92a2a3ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListInvitationTeams.php","hash":"5aef1fd906bc17e9bde3413fc0a8cd3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListInvitationTeams.php","hash":"f65433003e8260b2efeb192607feacd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListInvitationTeamsTest.php","hash":"8e849fcb55e439a5dc9aed257540bcd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListForOrg.php","hash":"9891ed720fa1638918158ba8cbe16ab6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListForOrg.php","hash":"b9555f22508c253c9fcbea03684e4f14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListForOrgTest.php","hash":"a03b601e13197581f183ef8b2881f77f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListMembers.php","hash":"a0f924dc9e4dace6226ef1b3b2aea911"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListMembers.php","hash":"19f5a5096d159260c00ab8f57ca09627"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListMembersTest.php","hash":"67beec17073520a02eb6fe5e7e2919b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CheckMembershipForUser.php","hash":"85b48afa8ebdc8c16f88d7cc14a243e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CheckMembershipForUser.php","hash":"375595a3e17af56531429592b4b0997e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveMember.php","hash":"960365a5a3f47d82a25c8926c60c12e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveMember.php","hash":"88fe3c790144b210c3d429720ffc9f56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveMemberTest.php","hash":"3908653a9555d3b49188f70ba805cd0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetCodespacesForUserInOrg.php","hash":"381f99d76d9bb472f99b81c0b9f8d076"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetCodespacesForUserInOrg.php","hash":"25b5d5e1df68d2a884420ff3f9e8db7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetCodespacesForUserInOrgTest.php","hash":"a279bcba1aa03b6b018a5c9e7ae6c1d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteFromOrganization.php","hash":"42aa5befbf77db2d48c3510647b34199"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteFromOrganization.php","hash":"81232ea4d13c68a7753072e595fe5c7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteFromOrganizationTest.php","hash":"aa5b85aefa672b0e3e232ad24a8ecdff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/StopInOrganization.php","hash":"01fc19575466b0e1e9c166e57b5d4657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/StopInOrganization.php","hash":"8ea9cadf14f92a3a482338925cbef82f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/StopInOrganizationTest.php","hash":"72d2e6e269cc7b8e896aab7a99eb0cb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetMembershipForUser.php","hash":"d1bd272b3d5c7bac6754b99235249a84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetMembershipForUser.php","hash":"3cb466c8e20bb1467819e899ec937388"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetMembershipForUserTest.php","hash":"eea347c5cf5dcb101d780d159d90b8ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/SetMembershipForUser.php","hash":"d76daf361bf52f966b97cea412fca159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/SetMembershipForUser.php","hash":"2eaa0cf68752935340cf22031da17116"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/SetMembershipForUserTest.php","hash":"15d0152a6079a945bac5419fba3a6a09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveMembershipForUser.php","hash":"868e6e328ab1c3da6dd67d6fbc3bd21d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveMembershipForUser.php","hash":"27e2bdae010402950831e7421db0d7a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveMembershipForUserTest.php","hash":"c1cba8ebf89d9c7ff7a73c502e9d49c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListForOrg.php","hash":"d9ec76c11b3bfc7188f883db5abfa5bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListForOrg.php","hash":"b1c435ba75f4139abd635577a3e6767a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListForOrgTest.php","hash":"0483ba14ca16e96e02ee3bf1079ae46e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/StartForOrg.php","hash":"15b97d53df5fb28d14705ccc0157a193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/StartForOrg.php","hash":"c57d4814432e2937ae7129c0a9f9373c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/StartForOrgTest.php","hash":"45d5ef06c73b06f8fd6f43529eb54d47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetStatusForOrg.php","hash":"03d31ff0110da0cdfbbad217548787e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetStatusForOrg.php","hash":"d3b8933744abc48451a29d3d7e12020e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetStatusForOrgTest.php","hash":"23fd984850f4eaaf9cc86a16d133cd19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DownloadArchiveForOrg.php","hash":"7e470976a14c07d198d65baa115f6793"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DownloadArchiveForOrg.php","hash":"fe6333028e34fd22659cf9872fac5d95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DownloadArchiveForOrgTest.php","hash":"eac0152a20e076bd3558049a78562ae2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DownloadArchiveForOrgStreaming.php","hash":"dc7cc5f18889e886fc43d5ba02d6c98b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DownloadArchiveForOrgStreaming.php","hash":"43cac9a1562764dabfc1f12d9f2972a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DownloadArchiveForOrgStreamingTest.php","hash":"be14a7ebf4c301865da1c732e536226c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DeleteArchiveForOrg.php","hash":"9c6456f751b987baeb77ac605217c7ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DeleteArchiveForOrg.php","hash":"8870cc1e079b775aa953eaf58ac379ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DeleteArchiveForOrgTest.php","hash":"1b28c852cf338475a42debae219e7b26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/UnlockRepoForOrg.php","hash":"7fe887179eb6247b47bdab9049b82b5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/UnlockRepoForOrg.php","hash":"cdbdc287390ef630a6abde730f1c36a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/UnlockRepoForOrgTest.php","hash":"4ebdc6af01f942fc1cf6ca67e64d7478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListReposForOrg.php","hash":"1ea77478eefd3051abd5bc793f36a91e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListReposForOrg.php","hash":"e4cbae3e6648d3acddb60fbde1019c85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListReposForOrgTest.php","hash":"26805038412a3c1768266e065620074e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListOutsideCollaborators.php","hash":"afe04a78d99d0fe1ee81cb9531a091e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListOutsideCollaborators.php","hash":"04231e49e52eedd6f76ace0f2bee5bed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListOutsideCollaboratorsTest.php","hash":"feac3b9ded8842d0477f99237a779d10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ConvertMemberToOutsideCollaborator.php","hash":"7541ba2ecbadba667eb022cc56c3690c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ConvertMemberToOutsideCollaborator.php","hash":"62d4dc335fb94b57a1204773bc100b7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ConvertMemberToOutsideCollaboratorTest.php","hash":"5f756075d911605ed13583f7bf473a83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveOutsideCollaborator.php","hash":"b0eaf00775636aea7a04ea05dfeac1f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveOutsideCollaborator.php","hash":"f68689ada9b3cf166843dcd842ffd15d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveOutsideCollaboratorTest.php","hash":"299da542d1ec4c33091941e172b31cf8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListPackagesForOrganization.php","hash":"f6f15c1d18fa2b82f864fc8cce01ffe1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListPackagesForOrganization.php","hash":"cbbcfa3798a8ecb4db53a3a34364fd5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListPackagesForOrganizationTest.php","hash":"bee50f0ece8d77d67b890d44de37b696"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageForOrganization.php","hash":"af51bb1c3c6b2180840655d047ce8757"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageForOrganization.php","hash":"23b61c54a6003520796a5f9d368d3cec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageForOrganizationTest.php","hash":"f613f6d972975dba65d401d902b0b791"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageForOrg.php","hash":"90756372e10d02b8600766f3e084b2ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageForOrg.php","hash":"aa9c099070a91d69239c20f478d4a0cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageForOrgTest.php","hash":"721a8be833f598083768d61e3c892258"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageForOrg.php","hash":"89dda07af0943f66fbd9b1959b30fc93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageForOrg.php","hash":"a3e69890c8208d941ecc6f57d12bf12a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageForOrgTest.php","hash":"7133454bdb161720c88ff4eeba7c046b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByOrg.php","hash":"db261ebfbba528ebf27ce9ba6dfa9944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetAllPackageVersionsForPackageOwnedByOrg.php","hash":"becb1aedea37a006ee86739bb6f47d9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByOrgTest.php","hash":"cbc3d1b43f1f394669ca1a044af07bb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageVersionForOrganization.php","hash":"473a2ee84c3f63e6034807a6a881b6fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageVersionForOrganization.php","hash":"53be9a1b275521cd6d1b7d063bad4592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageVersionForOrganizationTest.php","hash":"aaaade5c27861bb0c9bc427ffb9f54d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageVersionForOrg.php","hash":"3e106c54dd5d4254cfaa188eff71bc8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageVersionForOrg.php","hash":"ada0d2122ce4ce1b94455f149559e114"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageVersionForOrgTest.php","hash":"a8adf9e2935300703562c7da4b4ac1d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageVersionForOrg.php","hash":"14985d259134f0c176beaeac25fbead8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageVersionForOrg.php","hash":"15ca37877ab22b6afa651da5ad823dfe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageVersionForOrgTest.php","hash":"bc8b2ee44314d36a3e178917453500ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListForOrg.php","hash":"aa6c57d0de5df98f85c615ce99078763"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListForOrg.php","hash":"106470af84b0277d9c7a4e045f331810"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListForOrgTest.php","hash":"3577369cc22a2f3731194cda9bf4a82e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateForOrg.php","hash":"6c8fd332409ea371c5727ba04aa24667"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateForOrg.php","hash":"19143637fddae0eff4be551adf770adb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateForOrgTest.php","hash":"0100db2030f25fc37897b2a2eddc41dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPublicMembers.php","hash":"ace3b5081c7404208dea58dda834c758"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPublicMembers.php","hash":"22f15489b6379ff5939cdee3d4ffeef0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPublicMembersTest.php","hash":"e202571835302b9e243663b667b609b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CheckPublicMembershipForUser.php","hash":"c83f31b9c2516208140459153c8cae87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CheckPublicMembershipForUser.php","hash":"8b4bac1ef80700d3ba561d6ddb1b8e02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/SetPublicMembershipForAuthenticatedUser.php","hash":"da9514d39e6aa89d49bc5069cd7e7e4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/SetPublicMembershipForAuthenticatedUser.php","hash":"462dced94839c88c33d328d65da0b785"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/SetPublicMembershipForAuthenticatedUserTest.php","hash":"64992a748c44ffb27e059c2ce1ff89a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemovePublicMembershipForAuthenticatedUser.php","hash":"1f4a71dbb5a024bbcbc5a95619ddd5b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemovePublicMembershipForAuthenticatedUser.php","hash":"e3ed37fefa64003c2db9a69e40144605"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForOrg.php","hash":"ea20b5ec2311076493f3fb8b3d3df2c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForOrg.php","hash":"c4004600a68e580cfa4dc4db07f83d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForOrgTest.php","hash":"238049ad97e0e3297a601f6718ca4bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateInOrg.php","hash":"8020acaf0af7609fb4cd90e9a927eadd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateInOrg.php","hash":"c0c936d50e3c9e5f6b02eeaa87dd8e48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateInOrgTest.php","hash":"2112bf55574321dc9ce49d65bf270922"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListRepoFineGrainedPermissions.php","hash":"3e5ff20e13aa274359a49584de19eb93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListRepoFineGrainedPermissions.php","hash":"59ad090101bc37b0f62266211085775a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListRepoFineGrainedPermissionsTest.php","hash":"bedfde05c83d325751649fd820da31ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetOrgRulesets.php","hash":"7f8adf10fce1e9b778a2264d3e987268"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetOrgRulesets.php","hash":"02730a1c2518a5b959c2c5961989d52c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetOrgRulesetsTest.php","hash":"0d878a5123a6e606612b89afdce2c4db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateOrgRuleset.php","hash":"401899114099d3871e6950e3fa5065cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateOrgRuleset.php","hash":"1e9fb9638d044d984da17b70c25a33e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateOrgRulesetTest.php","hash":"7c7856c900e4fee72d07816467267658"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetOrgRuleset.php","hash":"9e126fd0f65903a02bdf7b0d671421f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetOrgRuleset.php","hash":"cc849cc525c762039436b37d19ba7ef8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetOrgRulesetTest.php","hash":"68c45620610f649adbec0ebdb84c9c99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateOrgRuleset.php","hash":"25f386ae50b56469b9fb63effffe8a8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateOrgRuleset.php","hash":"e2711c22295f74913bb0e59e176cf61e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateOrgRulesetTest.php","hash":"d3e5e6b7b0b3fcbc60d7ccf681999077"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteOrgRuleset.php","hash":"09a601b9915012f53e2646cef81f4f84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteOrgRuleset.php","hash":"472bdd7d79b0b71b1d5e6eb3e3c60fd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteOrgRulesetTest.php","hash":"21626a2e36a6877cf5557b300ebf1904"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListAlertsForOrg.php","hash":"ce707ae16fd3df7a6829b86c165aa9f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListAlertsForOrg.php","hash":"7bfce33a1b2473524f15060472634022"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListAlertsForOrgTest.php","hash":"f4452d0ec8b1d64428c6e6dcdb9c3aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListSecurityManagerTeams.php","hash":"3690d21e660776d6804de000855bac18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListSecurityManagerTeams.php","hash":"d7c6fc2e2774fdc8312fccce405fffec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListSecurityManagerTeamsTest.php","hash":"e21e4cc73aa98734aea80ee496534a10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/AddSecurityManagerTeam.php","hash":"e454ef2fc62dd15321bfc3219730ad8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/AddSecurityManagerTeam.php","hash":"65106214611d39433a498b912d61fe70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveSecurityManagerTeam.php","hash":"b98e489769995e1aa10172fbfa269ff3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveSecurityManagerTeam.php","hash":"da4df80591d0cf7247eca414f58950d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubActionsBillingOrg.php","hash":"a9491442fab02e6610019fdf1ad670b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubActionsBillingOrg.php","hash":"42401803d7efa1ef4d0392fd1ab0400f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubActionsBillingOrgTest.php","hash":"0c17fb22f2668463f78de9e87cfa913e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingOrg.php","hash":"a81ec191b80754e6e705d0d9be4feaf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubAdvancedSecurityBillingOrg.php","hash":"e251f92b766e3f82dc8046b5123f7ce0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingOrgTest.php","hash":"646cb6f3aba70b390fc8706d2b0e5cf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubPackagesBillingOrg.php","hash":"6ecf8f7d86f478bf5655c193cb1f3eaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubPackagesBillingOrg.php","hash":"a92a69dcba3c952e264a9e75419b9a0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubPackagesBillingOrgTest.php","hash":"f3a77988e9958e49a5020034d89b319b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetSharedStorageBillingOrg.php","hash":"80b3796ef0e1f0c3e3814d1708bae49e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetSharedStorageBillingOrg.php","hash":"94d881f7ab6a220513a601741ca50f3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetSharedStorageBillingOrgTest.php","hash":"4360cc8565232a08bb7db5bd026d4927"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListIdpGroupsForOrg.php","hash":"6633e9bc9647a02a4e3d2a98b928a493"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListIdpGroupsForOrg.php","hash":"64cedefeb1e87e148b7b7a3416e816ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListIdpGroupsForOrgTest.php","hash":"a7a3e3f6676ee677f01c8c727bcdd9e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/List_.php","hash":"70a340d3b6db13ed992dc8b4d2dd8131"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/List_.php","hash":"bdca28a720ee4474da6bcef7f8a52de8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/List_Test.php","hash":"ba8bb2bff1573b94b6aa9e06a3f86570"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/Create.php","hash":"81f0e63eaab18fa1fa97586a58336b57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/Create.php","hash":"845c3548aa8d0104fc758b4519bbd40a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateTest.php","hash":"353d3a07527ae8e25397394f2aa1bc75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetByName.php","hash":"b79556779f558bf568da068ce79098b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetByName.php","hash":"09b68dfb952c96a7169f5115d8068d72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetByNameTest.php","hash":"65da6c667c7c458d978951967731ac46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteInOrg.php","hash":"a89c57943d3b648339407eada786f90f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteInOrg.php","hash":"a4a226570a96aa43661ac19fc3b327b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateInOrg.php","hash":"645d15eb8a8616b52b77afaebbb9fa1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateInOrg.php","hash":"1f7d089ac96db1e62e286d0b2c250d1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateInOrgTest.php","hash":"a3c2f64e971597b2d59dfde840fb2a35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionsInOrg.php","hash":"6ab85578406220080b06983a1950f940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionsInOrg.php","hash":"fc98f33beb5b8826b46ee76a3312b4d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionsInOrgTest.php","hash":"7bf0833cbfd279947f89cf89248b898d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionInOrg.php","hash":"e6158c3ba24e39f7d0c7001cf7df5e18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionInOrg.php","hash":"4a8eda172f4a8bfdbda5dcc6926c9374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionInOrgTest.php","hash":"a5af710f61b9491e49d502b5682d6032"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionInOrg.php","hash":"712eaf7ad11b67a4fb4f362f494ec333"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionInOrg.php","hash":"351481c9cb8142f19d599e7035e2bd9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionInOrgTest.php","hash":"b63d3f26e6aa3afc0733839fc87b42c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionInOrg.php","hash":"9dd46bb28c00b926369d929dcae4ab08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionInOrg.php","hash":"0766a932c235de85a41b4ae30dc06c89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionInOrg.php","hash":"ccd3928aaa7ba9d4072422c953b291b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionInOrg.php","hash":"49090573dec427277b803b7a2702ef86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionInOrgTest.php","hash":"73bf33a1bc56be64208760b5fc1529bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionCommentsInOrg.php","hash":"a944338e7c67295dd340025222fd4765"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionCommentsInOrg.php","hash":"7088ea5e391e7357f38932cb5750d979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionCommentsInOrgTest.php","hash":"b8904cdcbd488861e724f06642f9c09e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionCommentInOrg.php","hash":"39006a83120a43f48f1ba5d410234d14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionCommentInOrg.php","hash":"b625aaa7e5af7233d0bcded0e9f370c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionCommentInOrgTest.php","hash":"30575719726330888f3b85f046a11010"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionCommentInOrg.php","hash":"ddde39ad78766fe9ebd63d91aed808e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionCommentInOrg.php","hash":"d3f09006cec3f8eed2c8efe79e887308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionCommentInOrgTest.php","hash":"7bada7629e3a8573f6ea509d24d1a609"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionCommentInOrg.php","hash":"211f4f0f752882e5a2921f1c4e4cfe57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionCommentInOrg.php","hash":"2cac7aefa7fced9e5c580a1c1a34e6db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionCommentInOrg.php","hash":"69b222f5d2df1baf388292afaa0b9219"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionCommentInOrg.php","hash":"47400ed48a25e3a47be6737b8e645af3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionCommentInOrgTest.php","hash":"7a6f095f076846364b5ef257d4ebb789"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionCommentInOrg.php","hash":"e986e6e0ca12bc3615143c907737ecfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionCommentInOrg.php","hash":"b4e8040294daaa8bd0dcb728fc671cec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionCommentInOrgTest.php","hash":"d755d2b68e3d0cf443c999c4fbe92cd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentInOrg.php","hash":"cb38dec306f7224f48a14cd904596e03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionCommentInOrg.php","hash":"4c899de6b881a8bfb90aadafe6e36d49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentInOrgTest.php","hash":"1d06442a2a453ccfdb380a3377a7aaa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForTeamDiscussionComment.php","hash":"1b79f42a15e88b3ac8d5c8b2f9e04b5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForTeamDiscussionComment.php","hash":"0706b63ba5e8b12a62341fdf270faa62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionInOrg.php","hash":"f2dbc9b1e27ba8d95c7ee891c9ec7263"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionInOrg.php","hash":"81226ce46af6b91b703364f211996154"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionInOrgTest.php","hash":"267cbd4a29f69805c6f0aa42764a5492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionInOrg.php","hash":"5a43a592ce214cf9e0dfc200da7a4a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionInOrg.php","hash":"9001750c77196bfbb9113fe46f339e9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionInOrgTest.php","hash":"76394b7d4b6d7cbb1964e991051c823f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForTeamDiscussion.php","hash":"a7d55b568d8bab5c5e30281d85b0cf4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForTeamDiscussion.php","hash":"1f22fc0493c47caf80c2b5ff96cb1680"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListLinkedExternalIdpGroupsToTeamForOrg.php","hash":"bb62b60e77cf1ca2ff3f5037b8a2be3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListLinkedExternalIdpGroupsToTeamForOrg.php","hash":"bf4ddef284928845c90c7237a6affad7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListLinkedExternalIdpGroupsToTeamForOrgTest.php","hash":"a6b6a87a74e3a9714173f7f7984cad9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UnlinkExternalIdpGroupFromTeamForOrg.php","hash":"af94d434c335694cd82e2fecb546b1c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UnlinkExternalIdpGroupFromTeamForOrg.php","hash":"ecfcf5b744d0ed3d540a0fbd71a1029d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/LinkExternalIdpGroupToTeamForOrg.php","hash":"de3a6eb131f53d6c8edca5f8f814d077"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/LinkExternalIdpGroupToTeamForOrg.php","hash":"322594910f3a10bdf154d234787314b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/LinkExternalIdpGroupToTeamForOrgTest.php","hash":"e210dce0acd6ca491ce8bce58a0d80e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListPendingInvitationsInOrg.php","hash":"df30b1cc6aab3791003c94cdc4734019"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListPendingInvitationsInOrg.php","hash":"789b644b510823f1e33e76204e4dcef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListPendingInvitationsInOrgTest.php","hash":"6af21a749d80829d9df102db4cc1e285"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListMembersInOrg.php","hash":"778dca3fed9b5825742e632a9c36082e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListMembersInOrg.php","hash":"3002726c1d909344111249746317e86f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListMembersInOrgTest.php","hash":"ad64aae21f25367ab29328c771c614df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetMembershipForUserInOrg.php","hash":"7937d305f1d9420daf8b0c502b442426"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetMembershipForUserInOrg.php","hash":"7f4ecdefab607375c59c767146a83413"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetMembershipForUserInOrgTest.php","hash":"eed55dedf5a0d150d8e779b74d485547"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateMembershipForUserInOrg.php","hash":"36ff99de5bead02950a5f5ee32f6921b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateMembershipForUserInOrg.php","hash":"324de4f0ea51b8235100769b205038e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateMembershipForUserInOrgTest.php","hash":"a0f9bbaa56cad2b2737797711385d496"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveMembershipForUserInOrg.php","hash":"fb69df245441477c9945f247b57c8b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveMembershipForUserInOrg.php","hash":"d8725a2089c0203a436b901e96e2a000"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListProjectsInOrg.php","hash":"3d603d9b204368dd73e555429f5549b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListProjectsInOrg.php","hash":"476b276372cf96da8df03c3bb314219c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListProjectsInOrgTest.php","hash":"2bf9561e6d32b1c77d014a5b02882392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForProjectInOrg.php","hash":"5df28f5a49288422dfe4dd8eecb9a5df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForProjectInOrg.php","hash":"13dc0aeed5efefe0b54b7187d9e12d4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForProjectInOrgTest.php","hash":"0e9a802342eeccb3f1433d762e178bc6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsInOrg.php","hash":"524854c58de4ff2ac895dbaf11cb2556"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateProjectPermissionsInOrg.php","hash":"8e72b6122d65ecb50dabd4681a0fb04f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsInOrgTest.php","hash":"6ca7fb1dc0b15e22b65587b2ac346ea1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveProjectInOrg.php","hash":"75c55ea98030880d2d677309c5d21357"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveProjectInOrg.php","hash":"c3e5274e15fae6b13f7ba1046707879e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListReposInOrg.php","hash":"a33cd1a465f700b4e6fc00df2743be1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListReposInOrg.php","hash":"207d21ea1c0d3f52a0628bc5a2aff722"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListReposInOrgTest.php","hash":"b9bbccf93b002c16394c12f2dc1ab8a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForRepoInOrg.php","hash":"9db380836a7a55dd459c1bd65a1b4e32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForRepoInOrg.php","hash":"9d26ea32db8c53ce25b908af729fd824"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForRepoInOrgTest.php","hash":"46a012716878e5cea7a185fccf22f7ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateRepoPermissionsInOrg.php","hash":"b2191b02b3ac45e3b8aee34932b33167"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateRepoPermissionsInOrg.php","hash":"8de06e2e48510fd286d0ed1da27ccc9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveRepoInOrg.php","hash":"5373921e8c3ecf333cc3ae9d9a55637c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveRepoInOrg.php","hash":"979c84a65518dbb3f4c887af23df8fe8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListIdpGroupsInOrg.php","hash":"7740ab204e56d0432a0b46a9d228fb78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListIdpGroupsInOrg.php","hash":"db689383261e8dc6a9bf220aa0350661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListIdpGroupsInOrgTest.php","hash":"65910a5181d506e4ae7e7bbbc339fe38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg.php","hash":"65387ef9b96b655ab048665ac1af5beb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg.php","hash":"71a172afe4c1db2d19cba1f060afd31d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrgTest.php","hash":"9fb538e0701367de9fdd73f73b884369"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListChildInOrg.php","hash":"62ae61f71978a2017c716927da813e79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListChildInOrg.php","hash":"a6e378437e6ac96cdd811ca1f89ee768"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListChildInOrgTest.php","hash":"9be3ba6d1552e468334a36e7dd8ca05f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/EnableOrDisableSecurityProductOnAllOrgRepos.php","hash":"20d3bd6141fc4c517f47e305811597a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/EnableOrDisableSecurityProductOnAllOrgRepos.php","hash":"44d893fd43d6342b844042e32d466cba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/GetCard.php","hash":"224c7aad7f75b73ce66bb763e22f18aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/GetCard.php","hash":"d99708b44b8b11be01e1e26f7406136e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetCardTest.php","hash":"e147ea2f5e1ab99902b659572ecea7fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/DeleteCard.php","hash":"a7ff93e77f1f17ceca8ee96f5fed22f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/DeleteCard.php","hash":"432a4aadce83c883dfa01a0dd14ca992"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/DeleteCardTest.php","hash":"4a32a1b910be6f18c6401c58a2830638"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/UpdateCard.php","hash":"2058dc32d0f53e3fad5986539c4baf06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/UpdateCard.php","hash":"29b989f498b120deede3053f143378e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/UpdateCardTest.php","hash":"c7e0cf80aa9a250590ea503527562eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/MoveCard.php","hash":"7ea7c3960868c145f48d99b92bc85972"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/MoveCard.php","hash":"e0e76d9a31f50ecaad471643f235d10d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/MoveCardTest.php","hash":"802f9b851e02cc7e6503413c289e19ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/GetColumn.php","hash":"a75ed9d6bb76774ef25fe40271d36d08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/GetColumn.php","hash":"15790f0b7219f8827e49e536275c5da8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetColumnTest.php","hash":"686c80fe3d8b9b9405426401fd2da117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/DeleteColumn.php","hash":"8909b61f4a7969b687e8ac4a275b24cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/DeleteColumn.php","hash":"aa346c7e81086154d778369d6036eb67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/DeleteColumnTest.php","hash":"069829c18bc6ae2ffab60bc1eea7b33f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/UpdateColumn.php","hash":"9c38f1386921939e29f7c1710f31110c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/UpdateColumn.php","hash":"ee149b71ac56cf554899273c399f958d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/UpdateColumnTest.php","hash":"8604ee4cf59c96e6ff2325f25fd6da0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListCards.php","hash":"f9d017ef3fba9ac83c605cb45e900311"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListCards.php","hash":"ee135e452dcd2cbf76b64419a6b9856a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListCardsTest.php","hash":"51266bb9c303394c2602e0f764524897"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateCard.php","hash":"192d165ab51aec32312b2554f8331d93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateCard.php","hash":"64b94051463a6fd8dc603639f5ddaca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateCardTest.php","hash":"a27d1e9fabce1730cdd7dd107751a0e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/MoveColumn.php","hash":"8169cdd6a837b2ab0236b4c6d04f0538"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/MoveColumn.php","hash":"489a4efb67a59c4812cf5b0f0ba8598e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/MoveColumnTest.php","hash":"8443c3f5a0aa1ec575f5ff7a2aab5a28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/Get.php","hash":"049e6bc9a766157774bae5a72e1308e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/Get.php","hash":"3eff7317490fa00918079afa8fa7e58f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetTest.php","hash":"188139173e37e82f47a0cc37b695602d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/Delete.php","hash":"3a07d4951e5f087a64fd22265fac48e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/Delete.php","hash":"e0c5231184eeeb70257cd0e80e4c51f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/DeleteTest.php","hash":"2e7606f6eb1fb00eed5f4eb7e10ea681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/Update.php","hash":"77bec03d4786f4d14909463fa1023aab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/Update.php","hash":"ca38954ef5b9e3e0178c36c2fe95af50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/UpdateTest.php","hash":"2ed59ee305dae832288f895586e68030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListCollaborators.php","hash":"9e7d7e58a63b2d82e896a5c3b161283e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListCollaborators.php","hash":"82b43a227172e7fbe699f37e9972dbf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListCollaboratorsTest.php","hash":"f2dab29d5c764528f91c04fca1fb87f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/AddCollaborator.php","hash":"faa9ff524556ce893b23c9d6b2c919b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/AddCollaborator.php","hash":"2e032189897474e86689944a354f5907"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/AddCollaboratorTest.php","hash":"942583b6c40511a24be550398353c44c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/RemoveCollaborator.php","hash":"566a6b66a486a160876429c7c53f57d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/RemoveCollaborator.php","hash":"748951aadf64bce0540442c9defc439f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/RemoveCollaboratorTest.php","hash":"ad3193ed0f450b4eab2c8319d7d4a48e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/GetPermissionForUser.php","hash":"3ebef2c27403b82bd1a0239538045dd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/GetPermissionForUser.php","hash":"ff3df019937276a7776366b0915d042c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetPermissionForUserTest.php","hash":"63b27f1f57307e2ebec9431657f697fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListColumns.php","hash":"069ce3da5f3c1d15877404b8fbd1103d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListColumns.php","hash":"d49f5b4c5c1ca89696a1cb02afa4465b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListColumnsTest.php","hash":"4c30a4aecbcfe6c9449981dd6e79b519"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateColumn.php","hash":"f45703a30016d9dae37cf16a002e67e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateColumn.php","hash":"5d9310bfe2cd64fd40c1d6acd1236f7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateColumnTest.php","hash":"e7056bd90a2ce51ce0d9654f395ed67f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/RateLimit\/Get.php","hash":"1d9543c62d7d36e8551e4bc0c8dc60db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/RateLimit\/Get.php","hash":"0e3d7bdeee3b80bb20bf6dd105b0ef61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/RateLimit\/GetTest.php","hash":"6145166d659813ecb5cad97fab531039"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Get.php","hash":"011e16f05192f3c4b2798ad8fe48e448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Get.php","hash":"e0444dd90c5e37f85ae5b6f1cf86b11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTest.php","hash":"b7db0f96c03c80ca36b0d08cbcbf4e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Delete.php","hash":"449f01c48137d297b71b428e7d22c6e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Delete.php","hash":"ce04215f6552a34dd079815958cb81fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteTest.php","hash":"60fc16178f7a75cdcc0a7403ddbfc99d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Update.php","hash":"045f1e07316e212fa611e1cb22213621"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Update.php","hash":"90837acd61d3d67d6a391a716198ccb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateTest.php","hash":"48e1e2e62c18131d8dd8241620d69adc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListArtifactsForRepo.php","hash":"3263c1a5e7b9971d29ce8206e0f28cb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListArtifactsForRepo.php","hash":"dfda464596f8bb6ff12e8a28dbc9d3ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListArtifactsForRepoTest.php","hash":"4f45a8b8d545cd51f8dd7df7d440ebaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetArtifact.php","hash":"77a0f1457ce4764afb19b9097cd5131b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetArtifact.php","hash":"0968490c91574e42c942a8565bc6f130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetArtifactTest.php","hash":"65c92b2e129bd890e9296a19bcae3f97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteArtifact.php","hash":"87ba5ffadedbdde9c962d3518e89799c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteArtifact.php","hash":"8783eae3a85a578bac77472e588459a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadArtifact.php","hash":"062be58770a218743ab2420024c4593a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadArtifact.php","hash":"74317c8833b0a7405bc6031136c05bcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DownloadArtifactTest.php","hash":"3d0d37308a25c5fdf59c9402814cf71c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadArtifactStreaming.php","hash":"582a9923faf3297974021f9ead2bd240"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadArtifactStreaming.php","hash":"b1aac78e5c4db00a4482d282f666ebc4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DownloadArtifactStreamingTest.php","hash":"d729f0fff8be93f777e7c64ebbca77cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsage.php","hash":"d922a251bc40dbe3af9573ea2bd33449"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsage.php","hash":"a0293a3edd2d1f305f20236ca8fbf7aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageTest.php","hash":"c947c5c1f8b261102a1a398e0145c24e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheList.php","hash":"5dbd9713a4b2078a64ce22cbb3db300f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheList.php","hash":"b2b2db14f97a367db7e7b6d2457c321c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheListTest.php","hash":"d4f657a9ac61a393bc908eaaee495088"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteActionsCacheByKey.php","hash":"4a7075f7b7447c1588cf99bac23f8f47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteActionsCacheByKey.php","hash":"502915925ccc6264614e41b03defc1ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DeleteActionsCacheByKeyTest.php","hash":"9fbc3720219b067fc7431470699903de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteActionsCacheById.php","hash":"6cd816a90a17e028e42758b17c99d15f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteActionsCacheById.php","hash":"cc02eb0af1892ea49cafab4bc305237e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetJobForWorkflowRun.php","hash":"407b12f32abadc2f11de0ea28e5e962e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetJobForWorkflowRun.php","hash":"867005a1bb0bb648cbcabaeea5709be3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetJobForWorkflowRunTest.php","hash":"e1a405db5b4eee63d77abe5846b28f64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadJobLogsForWorkflowRun.php","hash":"9781c437fdf156642dc9b8b21b6d8654"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadJobLogsForWorkflowRun.php","hash":"c7f72eca47a6d14e81411d1d535d5922"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadJobLogsForWorkflowRunStreaming.php","hash":"14e37cccc1efae4208a780a47af2bf16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadJobLogsForWorkflowRunStreaming.php","hash":"1f7fc4adaacbbba89b234e803ec620bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReRunJobForWorkflowRun.php","hash":"7643a6fbbd83ba7d1ccbd25feccf2c8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReRunJobForWorkflowRun.php","hash":"2b21df46a382f220bf70a147ef8de299"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReRunJobForWorkflowRunTest.php","hash":"4f64a3c0a839d001683a8d04166d4e85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetCustomOidcSubClaimForRepo.php","hash":"5d5694ac774308884eaba8fda79d91e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetCustomOidcSubClaimForRepo.php","hash":"c00518f5fe195a88ec50f9a4533a202e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetCustomOidcSubClaimForRepoTest.php","hash":"1f2fddfb4b1c8360fc592e132518650b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetCustomOidcSubClaimForRepo.php","hash":"3295a9d5606c6903336e709075b621fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetCustomOidcSubClaimForRepo.php","hash":"046da21e6db4c0d6412b10133d34bdab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/SetCustomOidcSubClaimForRepoTest.php","hash":"1ee0116cbe377dfb758d9002feb27520"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoOrganizationSecrets.php","hash":"abf34307a1b33d7cd34206755d100eeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoOrganizationSecrets.php","hash":"034e5dba4612c8ceefc73f63800b9e7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoOrganizationSecretsTest.php","hash":"44914742d28640e456f5c0643d2ba0cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoOrganizationVariables.php","hash":"2d288b22aaa1f6aaa9cac86c3af57169"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoOrganizationVariables.php","hash":"fb36835fc3d0eb5bf476068a637547ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoOrganizationVariablesTest.php","hash":"2fe928af4128727922163745d30047b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsPermissionsRepository.php","hash":"5e10760cd79b157d319a0e644eb64b43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsPermissionsRepository.php","hash":"89e25ae97788fc296116751ed8b3848d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsPermissionsRepositoryTest.php","hash":"b9cf626af3f6d8aae93cf2ebfbcaeded"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsPermissionsRepository.php","hash":"62d60992a8a35a30839d0f9399a7d701"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsPermissionsRepository.php","hash":"061221ead086d43018b66d2f0dbe2fab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowAccessToRepository.php","hash":"2b21d86f49325e9c222d97a9ce142aef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowAccessToRepository.php","hash":"b8ba3c6e8068f9d01c40ac93a36749dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowAccessToRepositoryTest.php","hash":"26a0b0fd571b9eb27ee507619a321e86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetWorkflowAccessToRepository.php","hash":"89e719fb72119df53ea6fd7ce6ac36a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetWorkflowAccessToRepository.php","hash":"50b6b238d7c8a0f665587c1357b6d2c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetAllowedActionsRepository.php","hash":"97f1adaf6352443f3cd514fe24ccce91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetAllowedActionsRepository.php","hash":"7d93329f9d9763eadf2ccef97b560a6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetAllowedActionsRepositoryTest.php","hash":"b309d75543f41f2951896a94fbef0434"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetAllowedActionsRepository.php","hash":"6af878302e957957dc5eaacdbd754e59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetAllowedActionsRepository.php","hash":"3633d2e91ab3140d174bee6557af0392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"0c28b398c662fb897e865ff002bbfe9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"b996f009cb4b8856fdd011ae650bcbde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsRepositoryTest.php","hash":"d4f6a9b72c7585f039af1f793cd4f979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"bf944d14fe444281dc5eb5e7e06f0713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"96dd70c0a94af1b23968d77767ca6e83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnersForRepo.php","hash":"b4c017fe1ca027906f3e658de9070a67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnersForRepo.php","hash":"439e5a2a1ef67b31ec05a657b51bfd0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnersForRepoTest.php","hash":"7b3f066d8bd606678a56b604f2958d29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRunnerApplicationsForRepo.php","hash":"36c7007b30a439fc0962e11abf7e2e31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRunnerApplicationsForRepo.php","hash":"4284dbfdc0357eace79d4feddabf5545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRunnerApplicationsForRepoTest.php","hash":"7ded5676d0d17dcf5dcc52b23627ead7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRegistrationTokenForRepo.php","hash":"80acdf37fca43cda23f46a1bb2b07cca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRegistrationTokenForRepo.php","hash":"d24a5a261e5156a7c58d624d5aa59e8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRegistrationTokenForRepoTest.php","hash":"8210ea920bab36fd5908b48293be1283"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRemoveTokenForRepo.php","hash":"3309974a5d1ec91fed929cc3ae38e271"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRemoveTokenForRepo.php","hash":"43f2cc535bfcaee591165109f2e5d852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRemoveTokenForRepoTest.php","hash":"e72a69997e75a56e1d230212d8bb1f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetSelfHostedRunnerForRepo.php","hash":"7ec0ef8c8c9fdf262fd289db899f7ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetSelfHostedRunnerForRepo.php","hash":"2b55e38ec4a5c0e4b6eb805b38d93c29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetSelfHostedRunnerForRepoTest.php","hash":"c84c22c0a05e9d6de3d35c97cfdf7b65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteSelfHostedRunnerFromRepo.php","hash":"a260e8c1ba9008be167f4e4a0427b336"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteSelfHostedRunnerFromRepo.php","hash":"bdaba1ebbe512ddab58e5419d72299eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForRepo.php","hash":"2b1cfb6299afb2ca4fcda16412c5b91b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListLabelsForSelfHostedRunnerForRepo.php","hash":"3e72c6b374e3a65d9e8f0b10802ab4ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForRepoTest.php","hash":"4e8c1144df489ed8892f6c466825e1fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepo.php","hash":"71f25344a31bffa63f825f1b21de129a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepo.php","hash":"dbab82648eec9327fef1ba1a7ab4a78f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepoTest.php","hash":"fe3e1ab42a0a6ba6173c1dc19a85664d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepo.php","hash":"63bb2918057cdaeb5493bbe903ea25fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepo.php","hash":"e4653b6ceddbf4cf3cd38e1b6b3847ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepoTest.php","hash":"a9f19efe7a273c416d477ea0ad4e4f3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo.php","hash":"59b1b14857f821ed4dbae6813f599d97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo.php","hash":"e05c3ea1bfc89534f698965da677ba72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepoTest.php","hash":"4125c7d7273feb797cf1d4c44ee37afc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForRepo.php","hash":"635d860106cfd2514c780c8adfc58b1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForRepo.php","hash":"8b5d7d4396eac4fd03a8a93c59160dc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForRepoTest.php","hash":"4663d96747100489c18428fbd002a96d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListWorkflowRunsForRepo.php","hash":"3ab17acb1b484873df8ba047a04ff9da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListWorkflowRunsForRepo.php","hash":"0f7151e0ad2c9e6ae5fc127c32e2e93e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListWorkflowRunsForRepoTest.php","hash":"3886973d3984e190ed419eac03df5225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowRun.php","hash":"719d259b1d808b5f898a40f4234ccf08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowRun.php","hash":"f3c13cdc5953e05b9008a88264567ec3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowRunTest.php","hash":"b700d16c334f9e5e161a8e7c773c0eb5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteWorkflowRun.php","hash":"0ccc4956cce5ea8c9818a61257bc55bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteWorkflowRun.php","hash":"ad7666213680d94d2565a4eb9c6ee173"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetReviewsForRun.php","hash":"20a26bc522555b693284002e0ca488ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetReviewsForRun.php","hash":"165b9713400d15f3cc3f626aaae63a45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetReviewsForRunTest.php","hash":"210cad8a2204ea9f4d91d9f59565eb8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ApproveWorkflowRun.php","hash":"2e5f0f610914901df08269a8234053e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ApproveWorkflowRun.php","hash":"240e853e65abd5ff3a84653d398b7193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ApproveWorkflowRunTest.php","hash":"9fc9ac1fea597d094cba50a699dc6952"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListWorkflowRunArtifacts.php","hash":"0b3486924e43b06006a061339a909726"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListWorkflowRunArtifacts.php","hash":"b4e76511d07c39ca8cfb97de7705f05b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListWorkflowRunArtifactsTest.php","hash":"3901cd060b43e89eafa787725cb95198"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowRunAttempt.php","hash":"aad94a9e651a4695e4d1eb39279da630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowRunAttempt.php","hash":"5b737c6f2c00854114142aee100291b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowRunAttemptTest.php","hash":"f5311147ccc6729f6a9eda19ba9d9040"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListJobsForWorkflowRunAttempt.php","hash":"b406e61d5cff3d8a39e50629b815f016"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListJobsForWorkflowRunAttempt.php","hash":"5fdcbe5d6707ec15ce2338d3d636b8f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListJobsForWorkflowRunAttemptTest.php","hash":"b8b4f70a4a875f28df52f2815f67595d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunAttemptLogs.php","hash":"bf3d19dd71107f2d6f3b8cff937b6866"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunAttemptLogs.php","hash":"d732d03aa7427660c28b91f1ebc14abd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunAttemptLogsStreaming.php","hash":"fad72b8daf4fadeffdc15f41d056d173"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunAttemptLogsStreaming.php","hash":"5edc3b938e7a937bab0e71a86c2bb30e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CancelWorkflowRun.php","hash":"f697b29e5a0d60149f98b9189560b2c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CancelWorkflowRun.php","hash":"a38f80be4a43cf7a3e9132beb9654e78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CancelWorkflowRunTest.php","hash":"44d4b613d881920fa84f874ccaef1852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReviewCustomGatesForRun.php","hash":"2675fd7eb001fcc8c7e7f2172c3af932"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReviewCustomGatesForRun.php","hash":"e032a4c2fabb74cbf23091ecf12494c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListJobsForWorkflowRun.php","hash":"d903b412c58b09a37039f6b33f5f5b6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListJobsForWorkflowRun.php","hash":"a53b98c22baa1fe3ec1462dbdfc29830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListJobsForWorkflowRunTest.php","hash":"bf8a0998d08e8bee64fde14d348e07f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunLogs.php","hash":"fdb9bfa14ddad72efa3f9ebf8570790b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunLogs.php","hash":"3bd0f4e51e8fe422030afd85573bc432"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunLogsStreaming.php","hash":"66fcb8f542c68865af0da53faadfdabf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunLogsStreaming.php","hash":"01a2112c5ae54bccfb89e6a2557c86f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteWorkflowRunLogs.php","hash":"126991497e2a1b24f963c0d59cc9e5a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteWorkflowRunLogs.php","hash":"e4d5a7c48da40bccb6e2ad943be6fbbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DeleteWorkflowRunLogsTest.php","hash":"ae685e05f5915babefe2c137918e55bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetPendingDeploymentsForRun.php","hash":"3aeaa5c97423932bcdeefde735feace7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetPendingDeploymentsForRun.php","hash":"38f1938f7d7fdf28fcd5d1eba64cbf7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetPendingDeploymentsForRunTest.php","hash":"497ad6b3c056f69d6a0fd814a7c78ae2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReviewPendingDeploymentsForRun.php","hash":"a4d5ac262b035de8f42a1d1892b8da66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReviewPendingDeploymentsForRun.php","hash":"5a7f47c72fb883db8f4adc06a1852e4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReviewPendingDeploymentsForRunTest.php","hash":"152bc768e12a7facd33b61282ee832de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReRunWorkflow.php","hash":"f0d07738f37a0ee389a12c995b55e369"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReRunWorkflow.php","hash":"ea1553580e0f69a39e77fc716ac24035"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReRunWorkflowTest.php","hash":"367d16c601ec4a9efe0d75aff538b40e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReRunWorkflowFailedJobs.php","hash":"8bacb6b78efcc3288e80f6494c41d895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReRunWorkflowFailedJobs.php","hash":"3a919511444e8b3d10b0bc0fab2fa9b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReRunWorkflowFailedJobsTest.php","hash":"b02e10a2291c332936d809a5c8fafa72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowRunUsage.php","hash":"344a8980d17e3a29dfae6337782999e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowRunUsage.php","hash":"28ab4d732c90a9ae1a3310a4a794a231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowRunUsageTest.php","hash":"c6676edc0ed804f18f7e5bcac30e63cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoSecrets.php","hash":"b97d764153aa4f6bf30f98689d4b700e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoSecrets.php","hash":"48b525dd371a8d8684f1dac45a94609a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoSecretsTest.php","hash":"728f7fcbabae03c1a6f2eeaa29217224"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetRepoPublicKey.php","hash":"431188141eed63803b5a681c82065e94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetRepoPublicKey.php","hash":"52f1992fe5613987921423797921cdd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetRepoPublicKeyTest.php","hash":"dd1dfbb068d522e65b6d4fa2871be596"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetRepoSecret.php","hash":"d93ade26ed3820047b08c14311b3b219"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetRepoSecret.php","hash":"611e3a5b549aeaecb23f8f22f3ff2bc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetRepoSecretTest.php","hash":"af28b85b6b08cc209904bacc68655e1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrUpdateRepoSecret.php","hash":"8c814ac658ea50be86a065d21f2b8205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrUpdateRepoSecret.php","hash":"7cc622cebd743409c9e3468f3886483f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrUpdateRepoSecretTest.php","hash":"b160b097adf5ccb27d4103214a0e3bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteRepoSecret.php","hash":"24649f3d81d7e98c935bcf69b3ec9a42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteRepoSecret.php","hash":"7890147cca803235864c7c814133bbec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoVariables.php","hash":"f95e7fffb72ad356c5d92525c2616b93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoVariables.php","hash":"7d18bdc7cd827ef2d144f7ae801c70ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoVariablesTest.php","hash":"1b3ad92e873ad1a3380afc72b695335a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRepoVariable.php","hash":"e916b0afa1a22ae30c386d4601dbdff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRepoVariable.php","hash":"c2f3be0fb507c35b3c7c6e28671689d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRepoVariableTest.php","hash":"4eb80a732fe75507e102027b083e1a60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetRepoVariable.php","hash":"308b73e1d5985482f15c72ce2045df21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetRepoVariable.php","hash":"019177abbbee9f40f76e6292676c20f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetRepoVariableTest.php","hash":"2b63aa6d8ff097086c70f950203d7fad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteRepoVariable.php","hash":"1a33a7ac582dd0a4e6f4ffd094f15f44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteRepoVariable.php","hash":"7b7b48b6e619e8b95b5500d009852032"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateRepoVariable.php","hash":"616bb2ee0a47bc7ecbefb1977d0f2fab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateRepoVariable.php","hash":"94bafad16f767f662f7401375a2ac5d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoWorkflows.php","hash":"f7fc9a7f19f665ca4974aba1bd98bd3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoWorkflows.php","hash":"8205a65ec09742b4a25c30c2bbc2681f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoWorkflowsTest.php","hash":"585734ff8fcbe032cacf2afc7f168edb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflow.php","hash":"dc6412052b6cd6f3a9ef1fb8bfccab5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflow.php","hash":"5463d57526d267c626a14e73042206fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowTest.php","hash":"b027adfb4ccf1e8a30e123490396fba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DisableWorkflow.php","hash":"3691f13b4262f8f0ecf48baa5d1d6375"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DisableWorkflow.php","hash":"fce2c7ba610a8557106871551cbb23f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateWorkflowDispatch.php","hash":"3d39cd97f7641909a423c16a7ae89d40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateWorkflowDispatch.php","hash":"3aee1d464ccaba65a9035283f961f3f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/EnableWorkflow.php","hash":"4f38fcb7a2edb1d803f480b3dcc92380"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/EnableWorkflow.php","hash":"a92e67ec418861d89f02d4bd7e183ff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListWorkflowRuns.php","hash":"081d0b93db06310390606936f3d7211e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListWorkflowRuns.php","hash":"cbe3f141b952c5298a8f6b4647f31392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListWorkflowRunsTest.php","hash":"0250185d77ca140a48538a79d3c3ea6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowUsage.php","hash":"cd8fc9f4f4e817948324fb64bffec8de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowUsage.php","hash":"7fb085c4d9935f09237026468dc76eb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowUsageTest.php","hash":"115c2c2620aa923b1691c944476318d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListAssignees.php","hash":"c242f9a7dd32b72e8e46eef72cd3eff1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListAssignees.php","hash":"2585449b380113ecce51c22537d6c052"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListAssigneesTest.php","hash":"99263a54aca41a7882f2ba6ff9ba21f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CheckUserCanBeAssigned.php","hash":"6a9d610d965a9d39af769fc14f4ac206"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CheckUserCanBeAssigned.php","hash":"c1f71f11ab69c14a7d79414cbcbbdc0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CheckUserCanBeAssignedTest.php","hash":"21473a50e2efedb73633e4c575200cf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListAutolinks.php","hash":"07eb797918858d860b900daac7b7e517"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListAutolinks.php","hash":"ff5391275ae464f2195ef6cee765ad30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListAutolinksTest.php","hash":"c78eff6017ac5e7827884fb1ef92f247"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateAutolink.php","hash":"942dcdbd8cc81adbd79ead5e86773ee7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateAutolink.php","hash":"a61bb0bcb26e73f789faec8dd903ef90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateAutolinkTest.php","hash":"619e4f08d2d01f6671234c878f5b36e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAutolink.php","hash":"8b43e55f57234a012ba36abf4fdd1ce7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAutolink.php","hash":"392b9aa4f32ff54914e3b2460d0bbd9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAutolinkTest.php","hash":"5fe03d2ec8ce67807af602714ef7db42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAutolink.php","hash":"688dee061ac955d3af19679b5f012295"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAutolink.php","hash":"2ed9d992a4b97335950aab67f21629c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteAutolinkTest.php","hash":"73607053807105dc2edd7f327658c7bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnableAutomatedSecurityFixes.php","hash":"f84d59d414441a63044fc7b8bb6a7f67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnableAutomatedSecurityFixes.php","hash":"e02f95495b02ce11657d93933cf1dc92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableAutomatedSecurityFixes.php","hash":"3439808f62f189b9ec5a6a9883444705"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableAutomatedSecurityFixes.php","hash":"671654bc809064e6d99489e27f77a4b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListBranches.php","hash":"59260e9b7ca542284bc4450c2662a83a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListBranches.php","hash":"616d86d9679505cc28e221e798a7d6a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListBranchesTest.php","hash":"068492453604f20b78194925272ee93b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetBranch.php","hash":"7eeb3830d240b1447d35574bc767a767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetBranch.php","hash":"a624610991d0e5c3bb7d4ca11a15837d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetBranchTest.php","hash":"c4588b6dfbc097aed7ad260cb7313a2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetBranchProtection.php","hash":"bac2c21642d7f11996a7b74ee92a248e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetBranchProtection.php","hash":"aeb147d11c9fa619c00ff7689a596aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetBranchProtectionTest.php","hash":"2db7e78dafd7e203de09d8043554dd55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateBranchProtection.php","hash":"b2d20b3010ed30780e482c3262a22156"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateBranchProtection.php","hash":"c6c84625db72680d51c54fb2e06407b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateBranchProtectionTest.php","hash":"47478c6b7b873aa74a40e6bf1d4dd7e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteBranchProtection.php","hash":"f9f1ea78269f9ed053c65ace9ad811de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteBranchProtection.php","hash":"546cdf00ac27676f940b247ca10bfdd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteBranchProtectionTest.php","hash":"5bc03331deed6b0e7aab91b9e18f7160"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAdminBranchProtection.php","hash":"c0c8172ae22abd961be32b0a45a00f15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAdminBranchProtection.php","hash":"e9fa42cbb5f1198f8a9d38ad52a83925"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAdminBranchProtectionTest.php","hash":"de1577b5856e7c405645ab7f889d8592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetAdminBranchProtection.php","hash":"25a5fa1938d73098fd56f214f15c6939"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetAdminBranchProtection.php","hash":"1df27d9577e74bb8158b69809b03fe4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetAdminBranchProtectionTest.php","hash":"4b0310b1b2b878be7e3c9651d38cbf01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAdminBranchProtection.php","hash":"7f98493da6538bcb95ddf8d0b0e24951"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAdminBranchProtection.php","hash":"2494deeeb59fd4bbbb0b1b860ad12d21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteAdminBranchProtectionTest.php","hash":"9e37674469c2e1d566c92e4bead8816d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPullRequestReviewProtection.php","hash":"ac0179515766caafed1872f97821d8bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPullRequestReviewProtection.php","hash":"d01423894827b3bd9769e6bb34bb9b77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPullRequestReviewProtectionTest.php","hash":"d558c570bd1e274a1aca0f3a975de89a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeletePullRequestReviewProtection.php","hash":"081520a9b87c031a0f9fcc60aba3d537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeletePullRequestReviewProtection.php","hash":"05bc8a69e4d9903c704a98c07239aea0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeletePullRequestReviewProtectionTest.php","hash":"f321f1efc4be9c48b9329eded817dd56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdatePullRequestReviewProtection.php","hash":"35c43f1560dc38003ce3341b9f1ad4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdatePullRequestReviewProtection.php","hash":"f0b5bc23df1242490735978ba7022580"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdatePullRequestReviewProtectionTest.php","hash":"7e5c8844e74e7e02ae7f81fdf154e99e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommitSignatureProtection.php","hash":"2f9fc4691a85d16645e3979a31721d7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommitSignatureProtection.php","hash":"d768548a5356c3c353b672b895186758"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitSignatureProtectionTest.php","hash":"f12c612748a7df105f6618152ed975f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateCommitSignatureProtection.php","hash":"84b2f9ac37c353dbab8cc4daf0cc472f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateCommitSignatureProtection.php","hash":"d0398f617481d43af5799a54df5aab6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateCommitSignatureProtectionTest.php","hash":"1af6db454cb7d71a06bb15312cee3e6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteCommitSignatureProtection.php","hash":"88b3694673d3712db8c9a15d143678e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteCommitSignatureProtection.php","hash":"694e05d42b50168999b97c89b6945713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteCommitSignatureProtectionTest.php","hash":"a804e39ee4ae600b2001569408c85fe0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetStatusChecksProtection.php","hash":"2533e6118fd200d12322139094d4a8db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetStatusChecksProtection.php","hash":"21ec96a98ad81a20fa845f3f5b1c4eae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetStatusChecksProtectionTest.php","hash":"dcc8914e0ccfb7c6ab8d04c22f06dadd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveStatusCheckProtection.php","hash":"d3d18018225feca61740376ff39d82a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveStatusCheckProtection.php","hash":"b0e96668dc8797d773897beab74ebde1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateStatusCheckProtection.php","hash":"7cf6c05b4d88c5df0dbb4274de09f797"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateStatusCheckProtection.php","hash":"0080483e829a0ed316aa1d6b03743b76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateStatusCheckProtectionTest.php","hash":"40bea62efeb1754d8c90fd51b74ec5a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllStatusCheckContexts.php","hash":"74f80879d51127ac597cbe066c07d7ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllStatusCheckContexts.php","hash":"75606935fd6d13024ca87678f7dfdaff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllStatusCheckContextsTest.php","hash":"79117c07a8fc3ec5564c097dc4e2425b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetStatusCheckContexts.php","hash":"601c17d152bdc5e44f29df176cc856d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetStatusCheckContexts.php","hash":"a044f40b09751e628117bcad26ca902a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetStatusCheckContextsTest.php","hash":"8cb0af0311c742ee1695abff52550216"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddStatusCheckContexts.php","hash":"5839443cf14ee016ef9b6a2caf016ab9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddStatusCheckContexts.php","hash":"7bacbcf6aebdcfd7918b6a9ea1d3b546"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddStatusCheckContextsTest.php","hash":"b478374400ec0c5b1a365b531e82a78a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveStatusCheckContexts.php","hash":"3fedce38e15bcde242a33ac45cd925a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveStatusCheckContexts.php","hash":"3b0b558a2ce280770713cba3eb5a580c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveStatusCheckContextsTest.php","hash":"84cebd15fdb99d5a218e31bf954f0346"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAccessRestrictions.php","hash":"2eda9f1828c4f489ebc379dc379d3977"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAccessRestrictions.php","hash":"f22afc1634f3b5cabf3d850670380113"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAccessRestrictionsTest.php","hash":"78b0b085b4ac7744bef915f770a78c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAccessRestrictions.php","hash":"007b39be775d34d9809fc2de709d1f6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAccessRestrictions.php","hash":"f739225da86595a7e01e6b2f156358d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAppsWithAccessToProtectedBranch.php","hash":"8c63d1a7cd8a2b1e3443379e57364ffb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAppsWithAccessToProtectedBranch.php","hash":"57036cd74f0113ae6ec263ac74ef17eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAppsWithAccessToProtectedBranchTest.php","hash":"1335916d0a16a2074dd365a98ad116a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetAppAccessRestrictions.php","hash":"c1a2d5484ec4e66f8a9792a42b7372e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetAppAccessRestrictions.php","hash":"a8555b58e53d3094de4db40dadb7947d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetAppAccessRestrictionsTest.php","hash":"bcbcfd148a2ec886cc69fd7f67573707"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddAppAccessRestrictions.php","hash":"6a7ba1f96e263ebfbad32bd93b056226"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddAppAccessRestrictions.php","hash":"94f7b13378071ab680c677a1cb8d6ae7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddAppAccessRestrictionsTest.php","hash":"c26901261157ff30f5e4a8b0e5729b4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveAppAccessRestrictions.php","hash":"04e710edc14866863d2599eeade2383e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveAppAccessRestrictions.php","hash":"da029b050580450b6566fc6ac1e507f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveAppAccessRestrictionsTest.php","hash":"3b5e2fe4b4a4e39fe47e7b74cace558a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetTeamsWithAccessToProtectedBranch.php","hash":"39ce79059ee476e873fab1381b5da465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetTeamsWithAccessToProtectedBranch.php","hash":"f2a271c2baa39876d53bac558e6cc971"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTeamsWithAccessToProtectedBranchTest.php","hash":"972fff818fd6b4a1e41efafe6b996b89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetTeamAccessRestrictions.php","hash":"3c4d0c4b134a17453126bb225057a6a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetTeamAccessRestrictions.php","hash":"cfab2e3cb970be3916fd9b992e3b6424"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetTeamAccessRestrictionsTest.php","hash":"0dffc8d9212616fd3ef591a10256aba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddTeamAccessRestrictions.php","hash":"952bcf2be20f5b21c145cf94b03f9c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddTeamAccessRestrictions.php","hash":"cea7bc18904b64dd9963e45dd41e10e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddTeamAccessRestrictionsTest.php","hash":"abd8b8bd26c34f514a8391005ea29a96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveTeamAccessRestrictions.php","hash":"4fdc65608fad53d6f9e94304cb9cad45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveTeamAccessRestrictions.php","hash":"cc99a48d57da054bdf87909b99315e21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveTeamAccessRestrictionsTest.php","hash":"dfa65d58256c5353953e3d53ac3012de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetUsersWithAccessToProtectedBranch.php","hash":"e5ecf287a3ef1580a8301f8f34ae24ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetUsersWithAccessToProtectedBranch.php","hash":"7801153c3a8436a5b039b9e31b06fd4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetUsersWithAccessToProtectedBranchTest.php","hash":"caea0d7664ef04612b421af7e7370d9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetUserAccessRestrictions.php","hash":"1d38838c40c6f5f7dbb79c44021799da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetUserAccessRestrictions.php","hash":"dfa9f74296a77000dede4935bc12b5de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetUserAccessRestrictionsTest.php","hash":"c409446c6ed6505dd23a4b58b2032c6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddUserAccessRestrictions.php","hash":"988cde84845890abd1dd3525d257db1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddUserAccessRestrictions.php","hash":"fa226476395b1a9278f2c1b3d19346e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddUserAccessRestrictionsTest.php","hash":"70f100d9b50114a42d29b05a19559f02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveUserAccessRestrictions.php","hash":"7c46576c8f1a1fa729d30ead14bbab21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveUserAccessRestrictions.php","hash":"65b3c0200aa09f61a3d0cf6afe147da8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveUserAccessRestrictionsTest.php","hash":"28efdd5b47e59f1bb04d6aa64e989e3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RenameBranch.php","hash":"c23b32eecd00cdd23e837d4d9281f953"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RenameBranch.php","hash":"289dd3ea697ee433896a46ccfb38a002"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RenameBranchTest.php","hash":"9bfa05ebe596679e9e1b3c1bcdf3adcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/Create.php","hash":"0ae2e13f8eb4d4f57dbb23f502470798"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/Create.php","hash":"a200f77d92b6940dec99322ec3f88673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/CreateTest.php","hash":"3302ef13643a1358711db9268db2cc17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/Get.php","hash":"d58456f97fce8deeac9dc1dfc77fd7c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/Get.php","hash":"4e376c697a165157955683f9a4988f37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/GetTest.php","hash":"8893bc13a0c38760d3bd5e0d0f84ec59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/Update.php","hash":"674899f04bbd84c0d43e48ea08299021"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/Update.php","hash":"b8ec184ac1ccb4d8b6029222ac32b248"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/UpdateTest.php","hash":"8dcfc18f24afb7d803be475a8327bbd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListAnnotations.php","hash":"55c85cb0541eac5989797ef108dcd661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListAnnotations.php","hash":"59aca505d207668ecc1b940235e0418b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListAnnotationsTest.php","hash":"880f8e96d18af0b55fd3f42f7440fa6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/RerequestRun.php","hash":"c0f8abe6917bd5983dc6a522de76f061"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/RerequestRun.php","hash":"66095799a342c340716780f72b450d24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/RerequestRunTest.php","hash":"65d76acbdba8b9146f3cceaa9333c014"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/CreateSuite.php","hash":"8fef82f15726c41ddbc8bc1a921c5b70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/CreateSuite.php","hash":"f53ca59bd39706bbadd8b18e3b7d9d4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/CreateSuiteTest.php","hash":"a47248333ff6ccb985eff7ccbc6bef71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/SetSuitesPreferences.php","hash":"4b2b56d42135b709131734d989e41862"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/SetSuitesPreferences.php","hash":"703320e09ffac6bd70041d09e9556589"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/SetSuitesPreferencesTest.php","hash":"0632e920d1d1808e4c857294acaee43d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/GetSuite.php","hash":"4205d1004b3ca4e3ce1b30bedadf481f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/GetSuite.php","hash":"34b14c810a721e78d26fd103813d68b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/GetSuiteTest.php","hash":"dd32138aa57b64c0155c181f529f7b44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListForSuite.php","hash":"ef04e5c7ae6b6852de1eb8cff887ccc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListForSuite.php","hash":"afa1ebded972c393de16d0dfdb8d630d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListForSuiteTest.php","hash":"98d5ff4c7b5306fc6134422809961371"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/RerequestSuite.php","hash":"bb2006aff2c547d601169e80ef524a70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/RerequestSuite.php","hash":"144c52f2455ce45d22fdf3fc5c80efb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/RerequestSuiteTest.php","hash":"4d091d8a7d6ea6cafd8b21e4a4d3fab2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertsForRepo.php","hash":"1f9aaf769449e76075ca9ae76d8a02aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertsForRepo.php","hash":"4c8f32a956c2d182adfe9d1014db850f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertsForRepoTest.php","hash":"a2800d4e4582cc9c35f9f8d593dacbb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetAlert.php","hash":"b3934c4970ee99212ef4f4db377ded2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetAlert.php","hash":"d0fd901a40f07bf8469f4f9b47426fd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetAlertTest.php","hash":"9cf4ba273dab8f4a779451b8c79e127d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/UpdateAlert.php","hash":"df0d537dd2e6263564ed53743452380b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/UpdateAlert.php","hash":"c011577ef449a98bdbd083574e624977"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/UpdateAlertTest.php","hash":"8b7048ae6d1453b5539fa8ae49a17c90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertInstances.php","hash":"27ea83c44fd5b3f4cbbde92711787602"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertInstances.php","hash":"8538917a51d35f5150c720f4252acf61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertInstancesTest.php","hash":"29097b0634af63e48c7c7da74a11c270"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListRecentAnalyses.php","hash":"9bfed80e92bcc6de92fc0b501e4ddf4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListRecentAnalyses.php","hash":"65040848e8249a043d7fd03851c6d8c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListRecentAnalysesTest.php","hash":"88249ec4329548f9fea088419830f0ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetAnalysis.php","hash":"6cc9865221d0f8b794f7ebabb5a83af3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetAnalysis.php","hash":"6605ef3b1477bffc24dceb448b40b834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetAnalysisTest.php","hash":"3e6c5dbdd6ecb44ce6890aee804602e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/DeleteAnalysis.php","hash":"9cb18a57d2a52779fe9584ba6302b194"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/DeleteAnalysis.php","hash":"c18b1f15802b7af0c4f9c5080f469af7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/DeleteAnalysisTest.php","hash":"14587e30b37ce58c2b7282da92fefc6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListCodeqlDatabases.php","hash":"ed62e9a4742910ee1507ba9e5c0e992b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListCodeqlDatabases.php","hash":"5a326b936fcfe8ade28a302fe344d5f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListCodeqlDatabasesTest.php","hash":"4244a232df2a7be80b0e8a2e2a0dcd4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetCodeqlDatabase.php","hash":"3652cbdf5d9d8738c92ec37fea67ec33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetCodeqlDatabase.php","hash":"2bd6d0ed9df1b908e0f9a2c711bb52a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetCodeqlDatabaseTest.php","hash":"abd170e839a29e33d72e798a97810141"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetDefaultSetup.php","hash":"66d59c152c655854cb2200b650918ce7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetDefaultSetup.php","hash":"778912432573f0c1ccc11e7f596ef5f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetDefaultSetupTest.php","hash":"21116ca16138334d361f0495145451c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/UpdateDefaultSetup.php","hash":"b5fd55d3dcff5c51bc0060be5b960b4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/UpdateDefaultSetup.php","hash":"4322e0dc731badc93dc7345ffa3e0f28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/UpdateDefaultSetupTest.php","hash":"9b260a097ae3c431a5d74ecfce82583e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/UploadSarif.php","hash":"b0c4e8d0ba4cabc8ae52a4ff59079bae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/UploadSarif.php","hash":"ee3855049e6a53284be3fff92824ebd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/UploadSarifTest.php","hash":"cdcca5ff1c1afe41253c600bf37635c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetSarif.php","hash":"5271d6f694e98c1161091beb46d2d72b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetSarif.php","hash":"8791fc8b9cdf802e4542b2a4cdc469e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetSarifTest.php","hash":"858d077a5bc7465d68f743ccb330a9d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CodeownersErrors.php","hash":"c172ddcbe6589a977b610190a735bd24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CodeownersErrors.php","hash":"f5b4597dcbc8bc03ccb2ca54cd5ab1e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CodeownersErrorsTest.php","hash":"a71e9033d9e966575bceab230a0d756c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListInRepositoryForAuthenticatedUser.php","hash":"6450bc74f6477cc35308350032ff1ccc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListInRepositoryForAuthenticatedUser.php","hash":"b419146dbbe1f3a68598814ad26c7cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListInRepositoryForAuthenticatedUserTest.php","hash":"16884afefb701781ea24831382bbdf8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateWithRepoForAuthenticatedUser.php","hash":"38025c842bdd2bd56127244525b8edcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateWithRepoForAuthenticatedUser.php","hash":"0e0cd302f832a4e7b4b272504878b410"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateWithRepoForAuthenticatedUserTest.php","hash":"a24a17be46b90c0f45bc50db8e0e3b6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser.php","hash":"8000d9512b3e7aa3f89b3634c0bf5117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser.php","hash":"8157c396d805f1b110358722b498c186"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUserTest.php","hash":"60271c3fb1596a03fc28d76a307f25bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/RepoMachinesForAuthenticatedUser.php","hash":"f7a7025542815f0075de6e64cd267a42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/RepoMachinesForAuthenticatedUser.php","hash":"9ae5285ddc5d8711d1891b49414ea197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/RepoMachinesForAuthenticatedUserTest.php","hash":"caefe90e749e0bcc37ca869a0b0ec944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/PreFlightWithRepoForAuthenticatedUser.php","hash":"9b6e65b1d69d3cc6f982211c07942fef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/PreFlightWithRepoForAuthenticatedUser.php","hash":"dfc18b386d89e91e0038fba458c7e6c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/PreFlightWithRepoForAuthenticatedUserTest.php","hash":"1fff68753304710ca71bcdf382a8c4f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListRepoSecrets.php","hash":"b44b9f75de3dda61620405f0ee64552f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListRepoSecrets.php","hash":"8f8c71627883d06ce02a796a53c5a147"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListRepoSecretsTest.php","hash":"a2ce6ba7d73efbfe9adb76582634d790"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetRepoPublicKey.php","hash":"ec0318fa178ff6f147c7cdf63f76eba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetRepoPublicKey.php","hash":"102cf8410aa85de0c3cc7f6efd6d1958"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetRepoPublicKeyTest.php","hash":"361b259822179ba5a7281d2c70c5df22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetRepoSecret.php","hash":"258f7f76ff1af81e88f903b04007b68d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetRepoSecret.php","hash":"1ff0ea5569bfb96831a70fc1733eebd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetRepoSecretTest.php","hash":"7ef15b283876ee003c408124fa09829b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateOrUpdateRepoSecret.php","hash":"00dd28fa5b7c601a5e70d1514a2e87cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateOrUpdateRepoSecret.php","hash":"ecbc4dfaac7076af7cc15521cf35acfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateOrUpdateRepoSecretTest.php","hash":"c950a9154892d91dc469c05a4725275a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteRepoSecret.php","hash":"a00e0d4218ad5837354791ec2982f926"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteRepoSecret.php","hash":"c27bffecf76c75e257c2c3bbb5535ce6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCollaborators.php","hash":"f782a02ff2bb5e22f93d47a3986d61d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCollaborators.php","hash":"d0f98634beeb711a7b248625992a25c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCollaboratorsTest.php","hash":"7885201bf2e4514007d2acfa0194c3f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CheckCollaborator.php","hash":"ead5cbf5d53fd2601a8bde85c2019681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CheckCollaborator.php","hash":"99768e14d5ce33c22c0f621e09dbc0e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddCollaborator.php","hash":"54863cc3c56641170d78cf627d51c04f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddCollaborator.php","hash":"b80a176eca7791de8dcfee31716de464"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddCollaboratorTest.php","hash":"f6b295a5222f93b52f7e788948660999"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveCollaborator.php","hash":"c32ff89e22c605cb65ef2db1eb01f7af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveCollaborator.php","hash":"4d7ba010022e7e08de0d943629b79e40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCollaboratorPermissionLevel.php","hash":"9c45452e8951ff41d7134425034c7c27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCollaboratorPermissionLevel.php","hash":"40844252f559d5fa1970ac4cede99861"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCollaboratorPermissionLevelTest.php","hash":"976f84dbaeda7e92b26a7bcd77389b02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommitCommentsForRepo.php","hash":"49794c5a9edc200398478c8dd13f7700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommitCommentsForRepo.php","hash":"709f1984938e8efae67686fd6e31c716"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommitCommentsForRepoTest.php","hash":"e37770e711332c11d747a63df8fb7d5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommitComment.php","hash":"9a9ba3a0554e9d6fed98c2b32f628ac3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommitComment.php","hash":"1aa2530d72fc748ad88c464a6fd71ca1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitCommentTest.php","hash":"ca79c6fb26f6af18aceeb810aac180a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteCommitComment.php","hash":"cdb44317970dc8dad08c7b77750351cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteCommitComment.php","hash":"ffa1c0589e46ebc486cc5ff49800914a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteCommitCommentTest.php","hash":"de808563a11b51cdea9c51e02a8c8307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateCommitComment.php","hash":"cce4b9a72dd8b5c64ff18a6e2b077229"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateCommitComment.php","hash":"3068af55f16fd9756be916379b149c23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateCommitCommentTest.php","hash":"468621e9d8a65dabf3df0f46e2cbf43f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForCommitComment.php","hash":"aacf509d159e297300218e7a0b19e298"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForCommitComment.php","hash":"d789d6da399bd5b93469a54a437542c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForCommitCommentTest.php","hash":"32bffcd9be80ca7dff432fa5b65d47d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForCommitComment.php","hash":"22f367db480af84a106a02e29437a103"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForCommitComment.php","hash":"003105bec5047c0cd135730a61d30fc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForCommitCommentTest.php","hash":"030c64486f9f7e40bbdaee0f75054ee6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForCommitComment.php","hash":"b389ab2bb2c977f75fefed666b8f4466"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForCommitComment.php","hash":"37e65f0b4a8cf07212dcfccb0193ae2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommits.php","hash":"40102e27aa5c3b425a52c3e072f63c95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommits.php","hash":"a50c1116a39c5d3ddd1c443d24e4d0fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommitsTest.php","hash":"99ff03c1fbe870e2af5fc8d796350aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListBranchesForHeadCommit.php","hash":"50c9b87396af4dfd0c57938b45946e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListBranchesForHeadCommit.php","hash":"b62b4a6683bb84470d11a06222173e56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListBranchesForHeadCommitTest.php","hash":"6318b67285f6cc9ec76d88dcab7e22ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommentsForCommit.php","hash":"40dc65c8153a4d5d8a1326e1bf244807"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommentsForCommit.php","hash":"acfc835ebc9d90423d8ce9ec62579afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommentsForCommitTest.php","hash":"aa2df63fa1cefee02bbfbe8f01795083"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateCommitComment.php","hash":"b4a0956106778aedc8ccdfd00f9be293"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateCommitComment.php","hash":"e15c2b47f84e02d034f0d995c1419c8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateCommitCommentTest.php","hash":"42cd83102a8531074d111fa12016cd5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListPullRequestsAssociatedWithCommit.php","hash":"306988c222dc27b55afc9b437672f8fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListPullRequestsAssociatedWithCommit.php","hash":"ebf5c8408dad46dfdc4e99bf9e7bf1ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListPullRequestsAssociatedWithCommitTest.php","hash":"0a7da8ccf839ad5def0dba06b141bdab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommit.php","hash":"c1ff64662b2931f93c970b89f4b0f5de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommit.php","hash":"e56c8d7056ad8b36f31abab859ee06ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitTest.php","hash":"91acc406704566602882c935ca06a975"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListForRef.php","hash":"82d09fe6bda5701f3c712f83f3b88ce4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListForRef.php","hash":"ec76d2724ff978534de61b3c6d2ea9d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListForRefTest.php","hash":"ab6fb0e6fb666fe95faadfcf45996317"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListSuitesForRef.php","hash":"eba4a4485bef742bf122ef3828dd3224"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListSuitesForRef.php","hash":"fe924970a1dbb75148d582cf338d7a6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListSuitesForRefTest.php","hash":"3e775105d79ad4ee7664efc2713ed3b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCombinedStatusForRef.php","hash":"e6f7f0807056accab967ef7e2c904b72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCombinedStatusForRef.php","hash":"c6eedb4f98a39d0d494c9c34ab58e067"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCombinedStatusForRefTest.php","hash":"ed6d9358389260b1c4e6e9bdf5af7928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommitStatusesForRef.php","hash":"2fe4adb69a779eaf2621931e96ccbd11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommitStatusesForRef.php","hash":"c0bc3d7d4897a741da952098c89ad7d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommitStatusesForRefTest.php","hash":"baf0f5f54e01264bbcb35ce4b0a64872"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommunityProfileMetrics.php","hash":"5994c81fcec3a5ec86d5b79ac136fd0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommunityProfileMetrics.php","hash":"bc87e4a1e3ee8cd431671c8e23179ceb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommunityProfileMetricsTest.php","hash":"829a424bc0112ce041d265862ebd4929"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CompareCommits.php","hash":"784a0964672ac9eec2bd72ee54c65ec8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CompareCommits.php","hash":"c406bcb7f86718d93759fb09fceefdf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CompareCommitsTest.php","hash":"45ab138ed331ed521e1519cd271cf3f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetContent.php","hash":"685086d0b17e310475ff5d1fdd2ce2c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetContent.php","hash":"79e540dcde098bc0aaf087cf80effed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetContentTest.php","hash":"ba312fbcfa9e3302b20895c6f90487f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateOrUpdateFileContents.php","hash":"7d94c87c191651c3013019ef5bd45b59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateOrUpdateFileContents.php","hash":"126722d050afc3358198f9d1ce9cf5f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateOrUpdateFileContentsTest.php","hash":"fa127aecddf853c9c143a81547a6bf99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteFile.php","hash":"836a034596085c1e79bc7b0c26ffbe5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteFile.php","hash":"d373e33ef4d754eb70f2cf36e8996be4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteFileTest.php","hash":"0003ef6dad884950abf6748ae94f4ce5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListContributors.php","hash":"c64633f83e615deef7bfee025344e0a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListContributors.php","hash":"b716b0f6be38065ed8267c1a8d44a20d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListContributorsTest.php","hash":"c5bd42853cad7d171366ac98699bff85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListAlertsForRepo.php","hash":"ef2562275ec15198058d6c3048f5caed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListAlertsForRepo.php","hash":"93d9502bbc102f5eb610a418df96c5b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListAlertsForRepoTest.php","hash":"a50ac992e1ea9b7555f69eacce51c6ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetAlert.php","hash":"755ee86a9531d1e4a2ed4cd35e9c9211"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetAlert.php","hash":"79952c0f0ab62c28643135f18da55874"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetAlertTest.php","hash":"db985532adb828abf80964ce290eab6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/UpdateAlert.php","hash":"1b7b513d3087c6f5985791a32a267f50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/UpdateAlert.php","hash":"17e1b59c27a06f0c88724dd2b90fae97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/UpdateAlertTest.php","hash":"eaace051a495cadc8371f384d098a816"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListRepoSecrets.php","hash":"6aa552b54e45314ec5bdfe806c09984d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListRepoSecrets.php","hash":"d5dc592853255a167abe53faffd0d6c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListRepoSecretsTest.php","hash":"d7e8b180586bf011560149d796c9b223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetRepoPublicKey.php","hash":"ef5bf64db3953349ab403607f3467fed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetRepoPublicKey.php","hash":"f4e7c5b5460c7aaea5703beb18d6a22d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetRepoPublicKeyTest.php","hash":"4a575bcc190478a21c7c61209034af33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetRepoSecret.php","hash":"73fd1cca221eaab794b51d3d538b354b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetRepoSecret.php","hash":"5fd291018bc69ff1526e65638973a562"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetRepoSecretTest.php","hash":"84ed7041c0b985c825f6a63a4d14ea0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/CreateOrUpdateRepoSecret.php","hash":"b5725b5e3b451d180a003a3700f21a63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/CreateOrUpdateRepoSecret.php","hash":"064d1f7b7c6626f8cc45e6ef1f9342d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/CreateOrUpdateRepoSecretTest.php","hash":"c4e71a4ac82b50c870545e3a1e8cfb24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/DeleteRepoSecret.php","hash":"66fac7e6e79913e2358830d4dfefdbff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/DeleteRepoSecret.php","hash":"60325a187c592178007b0e984cdabe41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph\/DiffRange.php","hash":"5770ca058fe8fc7246b3eba8aa2268bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/DependencyGraph\/DiffRange.php","hash":"e06ee13cda76797e4ea9b5310c25d7aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/DependencyGraph\/DiffRangeTest.php","hash":"2291d82ba366a0e8b45f9d5592a26f1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph\/ExportSbom.php","hash":"af9ca969d84dc1d104ed47c2ad51569c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/DependencyGraph\/ExportSbom.php","hash":"af2dce268dcf88f832c2169c850a7207"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/DependencyGraph\/ExportSbomTest.php","hash":"7a0ea5606853b8bb3ac49f7039ccb937"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph\/CreateRepositorySnapshot.php","hash":"b185c4455e59eae54088388aede1101c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/DependencyGraph\/CreateRepositorySnapshot.php","hash":"f4a259ddd2b24cf6233ee193ad36e708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/DependencyGraph\/CreateRepositorySnapshotTest.php","hash":"5cae243156bc7628bbb858e0cc039b12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeployments.php","hash":"f7fc12402525e6894c05db3204f0b407"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeployments.php","hash":"b52ab7a0426f585f5c28ab021523ddb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeploymentsTest.php","hash":"78b273bb47aaaee077314a65f226693c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeployment.php","hash":"177216af157c2dd6661e49ed90acf255"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeployment.php","hash":"3e9a7c0746664ba53ab7f095cbfdd02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentTest.php","hash":"5214ece58e6360200776006724fdefae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeployment.php","hash":"59b09876b1a23eef4adb9aa6d6aa0ff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeployment.php","hash":"115a3537d324526667616ad7864f3626"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeploymentTest.php","hash":"db4a8a7cf3dc82250de6c22629a0d6ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteDeployment.php","hash":"5ede777ba6722946804ae909b0bfb48b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteDeployment.php","hash":"5e8af3a217efe6a49fd85932df457d69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteDeploymentTest.php","hash":"dc9bf673ed1ad1b12a37de5d3a3372f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeploymentStatuses.php","hash":"ee93f6db5881f86a82144b0a973bf8aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeploymentStatuses.php","hash":"71477a738b108f9a701ca2410284c64e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeploymentStatusesTest.php","hash":"466ab8da23d976f58f673bf1326db699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeploymentStatus.php","hash":"878b423ac4a4bc836da37bcf8193bea7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeploymentStatus.php","hash":"9debc0a4df9510e52f7dd856f9585ec9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentStatusTest.php","hash":"b85b28fd7c2a9dd5cfd49b5e93cd6aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeploymentStatus.php","hash":"c02361fedd6117fed35ffd1d2857da19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeploymentStatus.php","hash":"f60a7b5e06d22d7939cf2a999839ce78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeploymentStatusTest.php","hash":"ddac9f4cc44c3037a569866f452e204f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDispatchEvent.php","hash":"2d9fd3097793b71334d60c855c3ed999"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDispatchEvent.php","hash":"db1f25c8cd340fe35daad1a51264e307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDispatchEventTest.php","hash":"69f16a2b0c3b2af2574072f463883c7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllEnvironments.php","hash":"645fc737d60905dd0a1003c0bd19bbdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllEnvironments.php","hash":"31ded94aa414c6254aa643dc83b069d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllEnvironmentsTest.php","hash":"2117435cb3209c190d310e85914d9fbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetEnvironment.php","hash":"15834129702f8d1f58752e6a8417d176"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetEnvironment.php","hash":"0e1ef57ad7748772f73a3b3b05e585e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetEnvironmentTest.php","hash":"e60831fdba7776356131ad52c7c5b808"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateOrUpdateEnvironment.php","hash":"0694dedac0fdcfe746a80c92a5d18fc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateOrUpdateEnvironment.php","hash":"27b710f4af6eb6b59fbb89357fa2e4ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateOrUpdateEnvironmentTest.php","hash":"c4d8d775adb15317d18bb363254ba0d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAnEnvironment.php","hash":"ab196ec33fb5816f6e905b8aaf23e5e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAnEnvironment.php","hash":"62794f8d01f95a793e4966b1b96a1767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeploymentBranchPolicies.php","hash":"b8893a0b93099267152ef47f22d6bb56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeploymentBranchPolicies.php","hash":"5d964228eb0a70659cd1e615ec870ad8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeploymentBranchPoliciesTest.php","hash":"e83726dfcc52dd8eab1b47d33e3a5d43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeploymentBranchPolicy.php","hash":"a3acef92a902c50ee30bd80527799322"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeploymentBranchPolicy.php","hash":"114b67bd847d9d9d9b74150b4be35681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentBranchPolicyTest.php","hash":"af10528dd17480c70027a8779e862bd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeploymentBranchPolicy.php","hash":"941f14e66a5309a22c1ecfa84fba21d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeploymentBranchPolicy.php","hash":"15eac038d80d85e0e4b62ef4ff30ff8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeploymentBranchPolicyTest.php","hash":"3a1834f3c23d42a8c75223e50ff812a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateDeploymentBranchPolicy.php","hash":"cc34cc3677214f44fa95d292b87bc11e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateDeploymentBranchPolicy.php","hash":"af50983613466ee5a52a61015c644afb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateDeploymentBranchPolicyTest.php","hash":"d1402e261bcc106f6da5c174d4035e7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteDeploymentBranchPolicy.php","hash":"ad7aa0ce34ce27ef773ce1a3b7b34055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteDeploymentBranchPolicy.php","hash":"4ad2026f19c83ea242fddcb5ecb3ee17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllDeploymentProtectionRules.php","hash":"19bc074f4986ff87bcb76e4fb2c029fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllDeploymentProtectionRules.php","hash":"c51385609b30f1abd1733f7835176390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllDeploymentProtectionRulesTest.php","hash":"6d285fe2f7d1699d580faf5bed54b049"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeploymentProtectionRule.php","hash":"788c2b8cb693fefedf3774238e127868"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeploymentProtectionRule.php","hash":"859a395c5746425dec22d42b9d7fbd2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentProtectionRuleTest.php","hash":"924406628033178877d7b98f99417b31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCustomDeploymentRuleIntegrations.php","hash":"0b7608251cd1348ddeec1d60bb33c19e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCustomDeploymentRuleIntegrations.php","hash":"1b77a7663e8169a5e44a72b19089f35f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCustomDeploymentRuleIntegrationsTest.php","hash":"cd4b5dccbfa45298b7654d2ecbd4c08f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCustomDeploymentProtectionRule.php","hash":"4d100f6af7eef60c809ea33f5a109cde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCustomDeploymentProtectionRule.php","hash":"1ef8ffc270ae2572ae4ad811dca05ee1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCustomDeploymentProtectionRuleTest.php","hash":"6d0dcaffac0cedb4a9cec58cc10c6942"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableDeploymentProtectionRule.php","hash":"abf3bb1a846cd57dff8a9627b6cbd9ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableDeploymentProtectionRule.php","hash":"b810856ffce94f9999c62dc283b19a4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListRepoEvents.php","hash":"23645d2dedd5fe39a3281dccde257528"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListRepoEvents.php","hash":"d68f7e99b82b1f8702b3d96899e93f5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListRepoEventsTest.php","hash":"b88f5a100c0dabc5a5523fed2b1e1b0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForks.php","hash":"d80788ffd0ec5f2b393c139bc32a6234"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForks.php","hash":"59c9d2575b87a78b3bf539e563bd61b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForksTest.php","hash":"d13e788cf149dfdf734c23ac8adcfc70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateFork.php","hash":"de7cd800ffe8415400345dda2f3d987b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateFork.php","hash":"6a023b9faebfb48ae939b4f069fb2d59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateForkTest.php","hash":"5870c098fc71e0afba733143758eb6dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateBlob.php","hash":"4bf7afb72147f73d48856667fbddc719"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateBlob.php","hash":"299a8c8ebde6acc0cf403a11546e86cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateBlobTest.php","hash":"72412f1135717385481f83eaa4be69fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetBlob.php","hash":"6445b9653c296256250f610e5aa54d60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetBlob.php","hash":"0439e8e5ea83779b469aa0f4dd626be1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetBlobTest.php","hash":"40e78deac9da112855180bdbbc586f1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateCommit.php","hash":"4c84fa18558ecb1b56ea5e6af1b12ede"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateCommit.php","hash":"32e358f54bd877313ac97eb1d186a703"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateCommitTest.php","hash":"27e5f08aa29d07a9452ebfc0eaa14f54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetCommit.php","hash":"3a6df1ce1c3a988a300d6a8d75025055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetCommit.php","hash":"d651cc1ccd05d5fbe0644e56581e2a98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetCommitTest.php","hash":"91947eca086d3ae4fdde54c13d03ecdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/ListMatchingRefs.php","hash":"80103efa5db1657bb24cea8cd9666735"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/ListMatchingRefs.php","hash":"4ff58d306c86e4cd1a00ec297a0ae5cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/ListMatchingRefsTest.php","hash":"82525fbf8e94bb1a37e1dee22474701d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetRef.php","hash":"83b1e1c86afa1732174976a2619291c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetRef.php","hash":"206b4ee99d77e16f3aee0942a4951236"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetRefTest.php","hash":"0646b2571b3106329ef69beb01dbdb26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateRef.php","hash":"47205791baa92fcd43c54fe76d366886"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateRef.php","hash":"7aa627e7c77bc93e29dddc009346154f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateRefTest.php","hash":"a3430306e7e82b1dc608f32097fa7fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/DeleteRef.php","hash":"3cbb1b10474d81b2f6a2bb2461dbb660"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/DeleteRef.php","hash":"ca129db217c67a41fe82002cd6f8f37c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/DeleteRefTest.php","hash":"611b9552e289603bdab7a9864e6f90a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/UpdateRef.php","hash":"81ace4496c3acd7ab7e9f91575478908"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/UpdateRef.php","hash":"9adb3139d5f4c4aa44c88cd2592ca891"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/UpdateRefTest.php","hash":"41f11593d87dad62f87132eca1b9f93f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateTag.php","hash":"5acc1f07da2d8861b56773e057ab63b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateTag.php","hash":"000833566306385da3356325b9779c08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateTagTest.php","hash":"21ca4a26607ef5364df32cfb16ef46a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetTag.php","hash":"b4b6b3834d369f8fd50fadb1c0a6f642"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetTag.php","hash":"d2830a88e03dabe0d2403f14c9396034"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetTagTest.php","hash":"fcfd5cdd46150b085c278f0067539ce1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateTree.php","hash":"3979deb36636937bfeafa99906988c32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateTree.php","hash":"4ef439b1f51f75ad45351094d3d3ec88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateTreeTest.php","hash":"22a81a1f577c7f08a026d410ab7c9e64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetTree.php","hash":"9418605f8a590f006696a8c6c66c1fba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetTree.php","hash":"c2f7a75c4ba8ca5a63e2feefd66c0b0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetTreeTest.php","hash":"7e705fda8788065c91206daef313f867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListWebhooks.php","hash":"58d2ef33f9ceb22815d468a324f3e216"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListWebhooks.php","hash":"08c9debecf749d5605944a3c28bfd769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListWebhooksTest.php","hash":"a261df6f5f3471e69d2ad67b6252a67f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateWebhook.php","hash":"614d0b5eace35aba81ae37c1c3f4d2b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateWebhook.php","hash":"41e11273a97f16b81e4aeb40b0009ca0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateWebhookTest.php","hash":"ab857fbec31953845b18f4adbf898ecb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetWebhook.php","hash":"da76c095c2755ae583e42cf653b0b051"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetWebhook.php","hash":"7818942053b1483fa8173f27586f1b09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetWebhookTest.php","hash":"165caecd146288c8b93844f5aa3112e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteWebhook.php","hash":"147adb3572dd2cbbf6c38fc65f91f4d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteWebhook.php","hash":"efc12b3bad57f4f985c63f683063cb82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteWebhookTest.php","hash":"cde607cf222a56030a27c7337a0bec72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateWebhook.php","hash":"7daa875feb412aded1e78e015181a7e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateWebhook.php","hash":"96b5eca33b30e4b421df3865d7fc5fe3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateWebhookTest.php","hash":"789654a9dddb41d1410f9e8278a14e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetWebhookConfigForRepo.php","hash":"9c6395554cb092fb08ccbd344f85c260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetWebhookConfigForRepo.php","hash":"bdb84c30c5642a5eb68f7c23185f6ee9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetWebhookConfigForRepoTest.php","hash":"c2a966e0d3087cec5629a932c082cafe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateWebhookConfigForRepo.php","hash":"52aa6c6e8d06d82054950eaffe040df8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateWebhookConfigForRepo.php","hash":"9a340448312fa86018de218aea3824f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateWebhookConfigForRepoTest.php","hash":"88001142ad2059af02b9cf0d4a153687"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListWebhookDeliveries.php","hash":"441521c662a105fca4bec301773e2b0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListWebhookDeliveries.php","hash":"c6ba39c2d6e761abd73128123b9e50eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListWebhookDeliveriesTest.php","hash":"08cddf3e7ca406118027b2a08efdf3ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetWebhookDelivery.php","hash":"ef961d7a0beccf244d625da22690e19c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetWebhookDelivery.php","hash":"998ff5ae2c2b86b4803eea990cbb3120"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetWebhookDeliveryTest.php","hash":"529b5d2f32a7e575e63a445586160514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RedeliverWebhookDelivery.php","hash":"eb611252d469646a6d8d9f155f4b83d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RedeliverWebhookDelivery.php","hash":"6b524d0b06aedd707e667bdf350d3601"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RedeliverWebhookDeliveryTest.php","hash":"82de58d98957e269f71c4ea08f29a2c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/PingWebhook.php","hash":"1231468c469a65aed9ea0dcf913b7315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/PingWebhook.php","hash":"bf76a3fccc1c886c5162a32a36886bb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/PingWebhookTest.php","hash":"b4ce13825df43190bb8ba2280aed0823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/TestPushWebhook.php","hash":"9801e779be82a54402651a0bd6498189"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/TestPushWebhook.php","hash":"a83f6a0aabac7d212008192032a9cdc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/TestPushWebhookTest.php","hash":"508d7f1111ccf6ab73e7286a7845c732"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetImportStatus.php","hash":"8820eb5d51962dc84e2e7e2934a57305"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetImportStatus.php","hash":"90770ee9050266b709aa839cf246c6c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetImportStatusTest.php","hash":"1e903a2bca66021d74a35e19d8dd02fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/StartImport.php","hash":"648d76fcd031001b9bac24821e09bb68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/StartImport.php","hash":"b5b9af2fb7e16892a2738a3f492ca32c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/StartImportTest.php","hash":"7c37d1d7932e795d6c55196024a3a6c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/CancelImport.php","hash":"a4a5f1162b5cf89ecf4dd2f1b5eb17c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/CancelImport.php","hash":"b8db32523c1f282a44d2c5829e183071"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/CancelImportTest.php","hash":"8622ee800fc1e1a60dca01926df9eab0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/UpdateImport.php","hash":"1a3dd00c681a0cc4787e1c15a4141dbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/UpdateImport.php","hash":"45ae7e34c3c1fed0eae441b87320ffa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/UpdateImportTest.php","hash":"588a210dcb829a500e14184e96d8826a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetCommitAuthors.php","hash":"23156ef42ddd0e70764c2d213f6413d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetCommitAuthors.php","hash":"bd885b6920ffe70c5e61d4d6551d9d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetCommitAuthorsTest.php","hash":"8035e0f4aa9ee5a36dde4dd53ba27102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/MapCommitAuthor.php","hash":"4ece684f93950c8acdf2a805c304eff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/MapCommitAuthor.php","hash":"9c903e135880507784ead3beff301f8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/MapCommitAuthorTest.php","hash":"8a4a321f891bde9adeff99fd91ee68c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetLargeFiles.php","hash":"5d77756a6667018aac99696a94134f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetLargeFiles.php","hash":"69b818ae5ce1d5a4f0786eec64f41246"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetLargeFilesTest.php","hash":"2eef13dd3591c4098153632b1ff7293a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/SetLfsPreference.php","hash":"0a9dd2dd6039bd3db7f5c1162af81bb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/SetLfsPreference.php","hash":"07c35fe00c53c90906ca96bc5c0c31af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/SetLfsPreferenceTest.php","hash":"198ba450287c3ff509bff81fae7426a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetRepoInstallation.php","hash":"e8c48137392dcf230f2f7e4ae3a2c388"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetRepoInstallation.php","hash":"d36ad63eaf99accb514f1e9ad15e7197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetRepoInstallationTest.php","hash":"d8046106462ddbe798212f194c68b0fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/GetRestrictionsForRepo.php","hash":"06089aa06083af5f58ba1530abe9e137"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/GetRestrictionsForRepo.php","hash":"fe674cc9c66e45731b7a9826f685f4ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/GetRestrictionsForRepoTest.php","hash":"be1cef46372b4725b6d21e5f93c464bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/SetRestrictionsForRepo.php","hash":"86941f0fb53fcc9fac6fda6060cf7fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/SetRestrictionsForRepo.php","hash":"c442d839cc4ce3618c089a0ab4ce72aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/SetRestrictionsForRepoTest.php","hash":"ba50b8b41822fdec3a13ef6e4e9c7aca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/RemoveRestrictionsForRepo.php","hash":"7b8f3b1caa5e13d9cd848f221c0c67a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/RemoveRestrictionsForRepo.php","hash":"b86404483bbb48c4b3917b3eafebc253"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListInvitations.php","hash":"fb2e3a87db43cc8c704c88d8af44b16f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListInvitations.php","hash":"3ffac925e7d9e37427593f22e61c5b09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListInvitationsTest.php","hash":"5f69102bedb6f38f23d94dc5eee9d8f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteInvitation.php","hash":"1752eae0cf70eb43be1dcb34ce13608f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteInvitation.php","hash":"ec616a877744b9b91cfbf213329e28fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateInvitation.php","hash":"114588d283fa01b9e86bd28ca9a71715"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateInvitation.php","hash":"ca799a135d19b532bdb05c83441a6700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateInvitationTest.php","hash":"afca7c0bd9e737762ad7da279a070163"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListForRepo.php","hash":"8ae9b8cb802849712c492a348ddfc5e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListForRepo.php","hash":"2933b35dbbfa577feb68817f59044e51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListForRepoTest.php","hash":"e7208694d4da1242b8707771e0aa4e0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Create.php","hash":"4ab067d220aa0fafd47f000912455738"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Create.php","hash":"2804713b9551d462c43facb202f6779c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateTest.php","hash":"9e903be2f26cc857ecb3a70546eec047"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListCommentsForRepo.php","hash":"d95d820f514e863733bd379f55e91f9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListCommentsForRepo.php","hash":"4c1f6d36cabf9ccf52c6898a337aacb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListCommentsForRepoTest.php","hash":"9ba82ffcc82eff07e9c9bf599810afea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetComment.php","hash":"46579ee59b81f27293068d4d5a7705d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetComment.php","hash":"bd921c426cb0a59bc01cea8cd6d710bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetCommentTest.php","hash":"e96d1a834cba6f581caca0ebcfaf8dbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/DeleteComment.php","hash":"1b4a160dbebfe5ee2e2272ce48406dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/DeleteComment.php","hash":"861d7fc59d06137ec38527ff565943e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/UpdateComment.php","hash":"3c5a0822c5e17ee90e16ecceafc98685"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/UpdateComment.php","hash":"e4867c4f625898cc38fde18477475145"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateCommentTest.php","hash":"15fa956fe8c64cf6b074682b9098cc6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForIssueComment.php","hash":"47633ab11a62d563888c5d7f17da4840"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForIssueComment.php","hash":"9499fa0a244ca3090a9547ac874f0e10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForIssueCommentTest.php","hash":"9aa242e6b9e813ce2fdc08a72fce6305"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForIssueComment.php","hash":"711ccb2e609380e17983492a54aae9ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForIssueComment.php","hash":"604bbe85dad8f99e8b4e75b322deaa90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForIssueCommentTest.php","hash":"6fca6a04b722c2ac40fb6664db175c7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForIssueComment.php","hash":"e7d9d780900a081bab2057f486a66455"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForIssueComment.php","hash":"7c22abaee692e61bbe2f1f35217c66b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListEventsForRepo.php","hash":"ad3460879e2ec74775883b7b2aad23b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListEventsForRepo.php","hash":"44f46928ab7067a5de2fe30ca35673c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListEventsForRepoTest.php","hash":"a269dc5c2891864681052e1762faebe3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetEvent.php","hash":"732f3dece2fc2bb952e8f47bee1095a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetEvent.php","hash":"e0b2b0052ccdbe56be2317d8afe3d874"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetEventTest.php","hash":"485d8931e64518162e4d6ab1cb26aea1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Get.php","hash":"99c3900fa65a854680119e6c7701b78c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Get.php","hash":"7e88815757d996acacc6a1fa2150bb84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetTest.php","hash":"36db2bc76553b2fb3d6bccaed1d536ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Update.php","hash":"6b43ef07f109b753495336650f0cda12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Update.php","hash":"1cb2a9c1f86b51ffd86d7ba024001da2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateTest.php","hash":"5a7d126553a35b9574aa43499f539817"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/AddAssignees.php","hash":"19a957e25d6fd199ec3dee202c038592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/AddAssignees.php","hash":"cd001594d75a3559c5690ebc3d176712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/AddAssigneesTest.php","hash":"6e7d86d2b527763790abdb28bec5a1a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/RemoveAssignees.php","hash":"ae2afa5827c38d033c86a0b684b05fba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/RemoveAssignees.php","hash":"781f4bf2627a251aab2c6da1ff22a6da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/RemoveAssigneesTest.php","hash":"fe96847c55c580f969bc403525326400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CheckUserCanBeAssignedToIssue.php","hash":"91fd6c8aef2022b544891f0e7d77a678"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CheckUserCanBeAssignedToIssue.php","hash":"060bae03416195978de157269e11d73f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CheckUserCanBeAssignedToIssueTest.php","hash":"fdb17f38036b3c1f89821023b8cef7fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListComments.php","hash":"091087a18223dcbfc0b6af79dc3390d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListComments.php","hash":"5674891e9e0cebc433aed5c6977462a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListCommentsTest.php","hash":"5ee772db3162913326e0f81cd63a4fed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CreateComment.php","hash":"1555a6dc8e9d9ce4688f00f19d871ea7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CreateComment.php","hash":"9fd23938bf212d356f952cbb9fc80e57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateCommentTest.php","hash":"34f47f60c53cd32874d5d55fe7f1670b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListEvents.php","hash":"7c9df656550fa8570d197d23743349c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListEvents.php","hash":"65a7871eac3bfc22688ddfa289397f2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListEventsTest.php","hash":"e32f68e8892c431573bdbdd77a05beb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListLabelsOnIssue.php","hash":"8f69c922fd3378d642c6b6770864b2a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListLabelsOnIssue.php","hash":"6c5db3fc81150445ab5091bbfe7757f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListLabelsOnIssueTest.php","hash":"692488dd1063eaf4f033aab44397c681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/SetLabels.php","hash":"48ca0999ecd83fff4f08be59331c2afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/SetLabels.php","hash":"40bdba0f303d33888df19b1d10a093f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/SetLabelsTest.php","hash":"c0de0d1c7fbf18cf69edb9715fd03861"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/AddLabels.php","hash":"f6bd621e930e6ad03bed3591421c0f9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/AddLabels.php","hash":"61e93983e5ca7268e4f1efd77fc38348"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/AddLabelsTest.php","hash":"dc2f01c4e48fa9ebe76682ed8b7c6e54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/RemoveAllLabels.php","hash":"096cb7ec43f4af99ece66df7bd1e1700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/RemoveAllLabels.php","hash":"b434d2b8f443ba8bdde5e0ad3d929f13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/RemoveAllLabelsTest.php","hash":"db3114865f56fb3c37552923675159a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/RemoveLabel.php","hash":"b6e8bbacca1dbb20320d9e963fd80c61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/RemoveLabel.php","hash":"a2b89da54819771715bc0e7396ffbef7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/RemoveLabelTest.php","hash":"3fcaad696979cc3bf431787817c75b04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Lock.php","hash":"d450d424a296cd4a854458c57037ab39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Lock.php","hash":"a25e9930ef7ca69b8fe533f2c3290a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/LockTest.php","hash":"f331dcaa87615b3f9702b7d9227a9b68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Unlock.php","hash":"ebbd60ebce48d4063a765f47ca9432ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Unlock.php","hash":"94aadf1dd3dc0f09ab2089844eb9f116"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UnlockTest.php","hash":"e3e7228b1a1f48bf9908d5a3ac0c8261"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForIssue.php","hash":"cef98312ddaccf168dafc5c76d0322ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForIssue.php","hash":"a0ad207975895cc57b77ccc9816f6af2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForIssueTest.php","hash":"f1b0fbbd12ac76771561351fdfa55d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForIssue.php","hash":"617877e5fdc31de003af477318022060"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForIssue.php","hash":"14500fbdfd8334b6a3d5f0ed21927f23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForIssueTest.php","hash":"8c72ec3360e2c0e0e41a7c81ab7f4235"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForIssue.php","hash":"1368de4f8e1f0d8beae578b748b0a33a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForIssue.php","hash":"89d4364faa7e03a2d429692ec6399e52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListEventsForTimeline.php","hash":"56b1ccee977347408a8102898eede34c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListEventsForTimeline.php","hash":"40dfed3474189a9e4b6c6a672ea86de3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListEventsForTimelineTest.php","hash":"9e51e325707126c655b4bd5adbc7bdb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeployKeys.php","hash":"087bebd55fed7f5a0ceff45362c63715"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeployKeys.php","hash":"a233fce13079f0d892b39f26614fe1a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeployKeysTest.php","hash":"f524f18b433526f211465016bc523104"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeployKey.php","hash":"c1e65f7843ac0a83d2983db642fd94c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeployKey.php","hash":"ecc103bda3f6acd2bf1d59ab06be7bca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeployKeyTest.php","hash":"6495b05249ec471d46a0cac4827ee297"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeployKey.php","hash":"8ab31720e1d9ca5580ecb1f7043a0488"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeployKey.php","hash":"37e364661ccb073f806b18babb086374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeployKeyTest.php","hash":"cfd31378171ed21071501be025bdf717"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteDeployKey.php","hash":"c776755e0d5ad39e4d811da96eab695f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteDeployKey.php","hash":"c1f07a04d608aca0cbbbf7f04383d2b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListLabelsForRepo.php","hash":"408f44735a6e45588446eb42ecbff541"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListLabelsForRepo.php","hash":"64fb08635ebb86a6d1feec08c6b99aab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListLabelsForRepoTest.php","hash":"4d3ff42478b11059de7617155df1dfbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CreateLabel.php","hash":"c74d51902ce64168b911b8c5182172a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CreateLabel.php","hash":"925ed4bf593861cb6eac668de32c5c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateLabelTest.php","hash":"a28c7354cf7daf9d9405f3182cd82742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetLabel.php","hash":"eac01019a9e6fbeeab26a02ea3667bd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetLabel.php","hash":"fbe9c54bb842e9aaf655364cb60bba0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetLabelTest.php","hash":"82acc787e33e56e16996faf261189d54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/DeleteLabel.php","hash":"960b3996675cf8fe73ad4bebfada5dd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/DeleteLabel.php","hash":"39542c7674d9472717a479ae0cd4e653"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/UpdateLabel.php","hash":"23cbaeadc9a1178f075ad708aff77c5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/UpdateLabel.php","hash":"bce58248ef48f5a7781eb933f84e88aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateLabelTest.php","hash":"5a37e9de7264b0482d8a1d89135c9c8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListLanguages.php","hash":"4fd5e6c513b25c90a21c63c3d801c963"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListLanguages.php","hash":"d0fcc8561f6db0553f05d516751aa19a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListLanguagesTest.php","hash":"0e77605b2977b012c969bf666fec646b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnableLfsForRepo.php","hash":"e4a840ea377bd0997244ff0cdb261ee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnableLfsForRepo.php","hash":"72f59d50e08d3803dc427aa2f8beea1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/EnableLfsForRepoTest.php","hash":"96f67b68675ced8fe9b84979284fb38b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableLfsForRepo.php","hash":"48414f7e81bf179c2dd0ad28a8f802f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableLfsForRepo.php","hash":"1745d7bfe8d329ee0b0b578dc75d86ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses\/GetForRepo.php","hash":"20d555ab07ec6d753abbc4155189ce11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Licenses\/GetForRepo.php","hash":"7d932b920b13481f8cffb51a9ac45dd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Licenses\/GetForRepoTest.php","hash":"ce28bea3f8a262f21674a3cbe21624ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/MergeUpstream.php","hash":"474fd0101b01816ca23b7c49dcef8c06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/MergeUpstream.php","hash":"efb1b73c75103278efe771ad0afa1384"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/MergeUpstreamTest.php","hash":"69f2ca6d9f03dca6eaf827c11a1929c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Merge.php","hash":"720d7ac60ce212a2890f48885ad2e14f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Merge.php","hash":"a2191d0a3a0602673699195893133045"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/MergeTest.php","hash":"a249f4cc018faa23c3e1dccb753b0607"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListMilestones.php","hash":"90bb0f69cecee4b29ce9fd6e67714403"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListMilestones.php","hash":"83d27544ccb5c0ad0f6cfab93bb8f8e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListMilestonesTest.php","hash":"b98bb8636f2a8a9f90e2ff49a378483b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CreateMilestone.php","hash":"5203fb0ef983041d45472bbc5092ecc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CreateMilestone.php","hash":"5a909e2d458417c0c4dfd6d9342ad9a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateMilestoneTest.php","hash":"f78652a1b2972af9ec9f82fefedf0a64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetMilestone.php","hash":"b0f7f39de1c8c3a5952683b9ecbd0784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetMilestone.php","hash":"e51549e926d2abe98ec3de05b44215c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetMilestoneTest.php","hash":"e3cc812bf87f003d10f89f46982a2232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/DeleteMilestone.php","hash":"b3f24211cd465a22246b1f290347c467"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/DeleteMilestone.php","hash":"5485caf6aaacb2d7f2ee942d1e5472c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/DeleteMilestoneTest.php","hash":"21c0c360375ec881d03d8ad9f53d53f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/UpdateMilestone.php","hash":"25dc2077fd219c486dede7b4d382fe67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/UpdateMilestone.php","hash":"2dc30b7b75d2c36423e612a1873880d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateMilestoneTest.php","hash":"597d1dbc62b01e7c0acfa79814f76de9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListLabelsForMilestone.php","hash":"513aed790001deae6c3bb658c27bdd82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListLabelsForMilestone.php","hash":"65759213f2b3caf8415d5c27275fdd51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListLabelsForMilestoneTest.php","hash":"e7b7f5c9ed8b335767a112442c60c98a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListRepoNotificationsForAuthenticatedUser.php","hash":"5aa3bce5e412f918d655137a272066d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListRepoNotificationsForAuthenticatedUser.php","hash":"04edc9929c52caa02b7c2c25f7b80348"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListRepoNotificationsForAuthenticatedUserTest.php","hash":"114325eb71ce84d159e6d0cdb234e170"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/MarkRepoNotificationsAsRead.php","hash":"9e75c2a6f2f0d6145c34ac3a3a8e9912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/MarkRepoNotificationsAsRead.php","hash":"574d06b324732296c19f4371427b5b51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/MarkRepoNotificationsAsReadTest.php","hash":"3a377211e15a0d9b356df74fe244b01b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPages.php","hash":"1524f001d4aee543f03132932518afe6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPages.php","hash":"f4592a11d3e7a9a1768385d8b3dbd530"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPagesTest.php","hash":"ae32038ce750ae52327e7bf489c87f9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateInformationAboutPagesSite.php","hash":"54a62971307bb68befbf73df6baff950"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateInformationAboutPagesSite.php","hash":"cfea6a90a1e3e3fe092f687ecffd4b6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateInformationAboutPagesSiteTest.php","hash":"d1661f552c8c6f1f3b881e6624891aa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreatePagesSite.php","hash":"d1d3ffb633d474466d62ca9367f86e63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreatePagesSite.php","hash":"bd0843cd92d357c8fc312044f0eec7a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreatePagesSiteTest.php","hash":"14914498477f30cc3ff412539f027940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeletePagesSite.php","hash":"2f2893dbf3f5a218e3ca5850717f6a1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeletePagesSite.php","hash":"6030d9ab8fc2095d65a648d2a6213a7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeletePagesSiteTest.php","hash":"f889138777dca960efdb2b303f72c6db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListPagesBuilds.php","hash":"5af8abfd1f90d1df046a54f46a64d622"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListPagesBuilds.php","hash":"d484e19d25c39a2010641611e41a63f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListPagesBuildsTest.php","hash":"c14b8e3aa751dff1cfd2d2ed71066f2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RequestPagesBuild.php","hash":"823500e98a1f7976385b6815d7966db6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RequestPagesBuild.php","hash":"2f0aa8ff3e87231e3abdcaa28c716830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RequestPagesBuildTest.php","hash":"c20f55c7113f9ab608aa5518b8871eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetLatestPagesBuild.php","hash":"c706fe63e6984bf0322a74ea437884e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetLatestPagesBuild.php","hash":"6557e684146f0649cd0fa184f0a34b85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetLatestPagesBuildTest.php","hash":"eb2a2f0146f6c2a114ea652a16409afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPagesBuild.php","hash":"ca06112364c7002f6341c532c8ee0d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPagesBuild.php","hash":"650327119d110f891de66fa9538ecbd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPagesBuildTest.php","hash":"de6f24a1c64f14ca8c3c34b33f09e5c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreatePagesDeployment.php","hash":"3b15b49edbee5e33c121af8a1c7e064a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreatePagesDeployment.php","hash":"2749f23548f0d616468e049488882589"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreatePagesDeploymentTest.php","hash":"af1adfccba0c9f7b33f976fc55501c8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPagesHealthCheck.php","hash":"c2ab403134daeb30a78e57b434db66b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPagesHealthCheck.php","hash":"3b5895362854fe9030627a12bf2e8628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPagesHealthCheckTest.php","hash":"96ce0fa05edb932c09d07b5cfb39e883"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListForRepo.php","hash":"85a277524dc7ef71f3196a09af30b809"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListForRepo.php","hash":"cd2b4f90cfcf13d9fe98adb9f18e2403"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListForRepoTest.php","hash":"f1ad17bf56059c8f5fe51a0dbcc098c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateForRepo.php","hash":"7fe7d495b88062b240e515d717c58151"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateForRepo.php","hash":"4118a1fe268ba46621e24e0926b8b225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateForRepoTest.php","hash":"31adc64ee0d204b8f00c1cc1a61e649a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/List_.php","hash":"70db846d5ea8b76898f5632398a8e7f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/List_.php","hash":"b7e473a6dd66295ab17c4d2743c03903"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/List_Test.php","hash":"089f16e3582a79051e45fd7c2553bf36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Create.php","hash":"3d60755567080867a635cabb5a6178cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Create.php","hash":"4db66d58c8c7769bd5e2d9942eeca043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateTest.php","hash":"87bae58d72b94ebf7f52a150818e77fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListReviewCommentsForRepo.php","hash":"fb4bbd140deda3f30d37b49a082c22ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListReviewCommentsForRepo.php","hash":"0f8ed21a4f0a240e8d64abc3cb774c9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListReviewCommentsForRepoTest.php","hash":"c032f69235513ca1ffe8a3ae2507602a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/GetReviewComment.php","hash":"5ad929e9044b1545236255932fec4fb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/GetReviewComment.php","hash":"7c5d2fcfc61f922c1c6023b59edd808a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/GetReviewCommentTest.php","hash":"83877bafd6958f77a41aa64bd1270102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/DeleteReviewComment.php","hash":"3d6853e015f6c906817fdf3517009b77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/DeleteReviewComment.php","hash":"a7396f1ae7817990a1e702fb0371df52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/DeleteReviewCommentTest.php","hash":"1bbee6a193006e2302e1d4e8e244f9ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/UpdateReviewComment.php","hash":"e92ff1c2cbea9d2f981b6cbedd58cf66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/UpdateReviewComment.php","hash":"ebda84b063ae33f478ae5633be9dcde4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateReviewCommentTest.php","hash":"fefe1b71441ae0c7ab1a83b02051cfe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForPullRequestReviewComment.php","hash":"e45e13d256a07ddf682b18bb4397ed14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForPullRequestReviewComment.php","hash":"b1afe5acc1f3e7e3bf205fb8f7eb176a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForPullRequestReviewCommentTest.php","hash":"97ad7f5ccadf34c54008911d7f084754"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForPullRequestReviewComment.php","hash":"50c005e4b9e8e008538508d70527219b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForPullRequestReviewComment.php","hash":"b9ed5898f83594c409024d586cf5cdf3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForPullRequestReviewCommentTest.php","hash":"88e7d058eb1b19ea20a722322b35fb1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForPullRequestComment.php","hash":"49325f5ba63d10852825ee6f3fa538bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForPullRequestComment.php","hash":"f03e55bcaa19ebae57729b3cedaeec7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Get.php","hash":"1f35a2e513f2f2cc5d22eb84d8b4c9a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Get.php","hash":"4ab7b8d3c2a192b5b76d41762eb9a875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/GetTest.php","hash":"8c69bb83fc69a74460338f04f13c146d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Update.php","hash":"e2b696744ab9ffc1efa5f9e13aea4de1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Update.php","hash":"9a819f2e9a70c1ffb6b204e23d3f9659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateTest.php","hash":"5eb253fad47fdb792bad30e60abb22ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateWithPrForAuthenticatedUser.php","hash":"a174895525a1b116c49c9c0f45c0612b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateWithPrForAuthenticatedUser.php","hash":"fcd4e1f49292021b57ae2f08c60d0bf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateWithPrForAuthenticatedUserTest.php","hash":"5f320b1f14b3ceff3df7bf8c6ba696d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListReviewComments.php","hash":"cf57119b96c24a888c8ae7e5fb873c13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListReviewComments.php","hash":"9ba1ce18bde80bc4566fd15294a5745f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListReviewCommentsTest.php","hash":"0c2496b4cc4a3df9fc2e06fea59afc32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CreateReviewComment.php","hash":"9b874e5069a505a9011b2c2465eb8ec7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CreateReviewComment.php","hash":"a472016dd98957a307b3d9fe167617d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateReviewCommentTest.php","hash":"6e448c57b891d355f67dbafbf254f95d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CreateReplyForReviewComment.php","hash":"543d0b8f8f97f21ea1603fc8b6b48dc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CreateReplyForReviewComment.php","hash":"6fc442940f756cb0e0dfb5108c59a36e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateReplyForReviewCommentTest.php","hash":"c6fda35a0a6c6e0362a13cc479b033ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListCommits.php","hash":"7512696165f7e8590b2684b6c0465c3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListCommits.php","hash":"8667eec64b6a49cf1f3eaf86d3b28aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListCommitsTest.php","hash":"8f2e4d9c53a6a06ce47c9b52d63d2fe1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListFiles.php","hash":"8e853ae069a6f17b79def1d7784ac6f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListFiles.php","hash":"c23b606836ec986617bfcbc565323fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListFilesTest.php","hash":"0012693a3a9961464142f13ca8e284d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CheckIfMerged.php","hash":"3d810895ce940f9a99e04f1c88c9af01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CheckIfMerged.php","hash":"1d79ac9708a181d5e8d06b5a7e8a2f24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Merge.php","hash":"2be3288878ec7c730d11701bc32eaa43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Merge.php","hash":"cbf51ddaa62042271c018d9133d61848"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/MergeTest.php","hash":"45d5f0c640ba8242448eec87e85ff66e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListRequestedReviewers.php","hash":"632dde93fcd8a6f4d590cf24c6a58ea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListRequestedReviewers.php","hash":"7e95f8d3a24d9b4701d4f31ab8fd0fa8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListRequestedReviewersTest.php","hash":"550f329a12a7acba87d30097c90fc937"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/RequestReviewers.php","hash":"f4506ec9dbb975def3637930d5de273b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/RequestReviewers.php","hash":"197b1357a754f8d3ca786eddc129d7d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/RequestReviewersTest.php","hash":"2b130f24eb7d0f8de52cf71b84b4371b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/RemoveRequestedReviewers.php","hash":"f36225dcc4b5ba71a300da29a0cd1aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/RemoveRequestedReviewers.php","hash":"15dbf0fac3b78506ff3ee7bcdf84315f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/RemoveRequestedReviewersTest.php","hash":"372d4048a62b250f9fbc0de77e05649d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListReviews.php","hash":"54d534e1a103dd969261955163385bf5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListReviews.php","hash":"ca9db2703b94a1eb90b7b7117dc8323e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListReviewsTest.php","hash":"a5e5a52e6709759a47d29419f47b1799"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CreateReview.php","hash":"981502b1cd601baa21385b3296138ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CreateReview.php","hash":"3e50d99cd91fa8bf01e8d8edebca3561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateReviewTest.php","hash":"de353a2e91333d6e248d9a42fe1bebdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/GetReview.php","hash":"b3325cca2ed95d8c77f6b17854cd9883"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/GetReview.php","hash":"609366d410f65b3711e5b612e57957f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/GetReviewTest.php","hash":"fb46cb3a9fec39f0e06ea1d892682843"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/UpdateReview.php","hash":"86e84854c4da8ae3dc01d5c8e4e5c47c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/UpdateReview.php","hash":"60a13301aa6601fe6775c155e524468d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateReviewTest.php","hash":"fdad7ae3381588ea8a63ac87fe70eca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/DeletePendingReview.php","hash":"99284623b7cbbd446e5859f399660f0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/DeletePendingReview.php","hash":"0f1bb1bbbbba9f519c6a11c9adfe75c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/DeletePendingReviewTest.php","hash":"ec5d84faf8a8bba7d32aba544f9f569d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListCommentsForReview.php","hash":"d0be302daa4a18523dad12e019374635"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListCommentsForReview.php","hash":"170fd06154aaa273c0f3ff9cf48f982c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListCommentsForReviewTest.php","hash":"37d9ffca08039cbe7cdcccdd07f6ebd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/DismissReview.php","hash":"4c019739b08d1d0b7c2a8b39edf5eb07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/DismissReview.php","hash":"607b5d70ffdb7a5a1e9f851604c86a21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/DismissReviewTest.php","hash":"41e8d0493e35ee407b59d2a9d48deab1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/SubmitReview.php","hash":"594ab8620bbe617f8d161b4481b61988"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/SubmitReview.php","hash":"4ee1d42a9a23e7ee077835df3e4d33a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/SubmitReviewTest.php","hash":"61bfbf1b222471167a2553850146b9c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/UpdateBranch.php","hash":"f4e0f6f4f196d0d364b1fd7da6082b39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/UpdateBranch.php","hash":"353417dfb7b356a4df97519c7c44a339"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateBranchTest.php","hash":"8fa611d5ef30b4ec4b9202eb3b7a0825"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReadme.php","hash":"5290cb9a66c1b6c55f26650a6dbdf1a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReadme.php","hash":"66e008620965f1dbeceda79506c349b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReadmeTest.php","hash":"4e028d89c1470ad6e9c84f7b0a7dbd9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReadmeInDirectory.php","hash":"c1000b956c47637d42259cb07cb924a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReadmeInDirectory.php","hash":"e4d3551f5b7f6cb336bef32abbd74ce0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReadmeInDirectoryTest.php","hash":"a582f559dd68e566de32698c92a0f67f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListReleases.php","hash":"1860f20d08c2f81043b0c81a18bca75b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListReleases.php","hash":"e3f2c2e4e2df4c12f4e42caeb65639ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListReleasesTest.php","hash":"bca9ac132e0691baae03a8d4156ba808"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateRelease.php","hash":"869eb85c5e140a6c75c9f56aecded44d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateRelease.php","hash":"d11649206b6a4bec3c4a6dfed39253b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateReleaseTest.php","hash":"ac5ed399be7182a35869fa68da4aebe9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReleaseAsset.php","hash":"236b9138b1a3b792361b2d0d1dd67436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReleaseAsset.php","hash":"b2f2c64a955a1cea0acb63326111f50a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReleaseAssetTest.php","hash":"e28c952b976923f73dd104d159693f7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteReleaseAsset.php","hash":"d78c195e96a50c2d0972fe758cec5dca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteReleaseAsset.php","hash":"9cae166edcac95a4c56ede46a9b30292"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateReleaseAsset.php","hash":"a54159b09a2c80f6d590e87240dc1b2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateReleaseAsset.php","hash":"3a044a52d99353ee765076b1c12e4750"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateReleaseAssetTest.php","hash":"d7c3666caa996c296eed5a44af7246a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GenerateReleaseNotes.php","hash":"b093fd5eeb542df3d590a3420d977f4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GenerateReleaseNotes.php","hash":"a3fd9d5c2ce4522ecbf2ee2363f51bf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GenerateReleaseNotesTest.php","hash":"a3a58710e0f1836b44f20ee77a37507c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetLatestRelease.php","hash":"83007633dd8ed71c3ff9768547f21ee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetLatestRelease.php","hash":"16ca413198bd2772bde4b16046bae88c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetLatestReleaseTest.php","hash":"5dbf802cffb58640795017b2cbe03355"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReleaseByTag.php","hash":"3169ab96d49912f4332ca0bee25d531c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReleaseByTag.php","hash":"077b815c08bdb350619941b6a6e318a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReleaseByTagTest.php","hash":"bdc2aa5906a2fc5b3862d466b8445f28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetRelease.php","hash":"dcad40c9a07cb255f1bdad3811213fa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetRelease.php","hash":"f46d6eb9bbba7ebdf8a4339f0ba9782c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReleaseTest.php","hash":"b05dad2eb041810b4936bd2e6b4d9d44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteRelease.php","hash":"9add61ed8a61ae7e409f6d3c43215f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteRelease.php","hash":"98aa408913d8bd5e96b08f518d85d7a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateRelease.php","hash":"c6a2b0c71346a05b84462803286f9304"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateRelease.php","hash":"d5931920a6f5bbe820942e516b4a7a05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateReleaseTest.php","hash":"572f9f450e1dee6f146b93c5e06ea725"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListReleaseAssets.php","hash":"51271bf28842d1b371e2aa0237df19ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListReleaseAssets.php","hash":"851e9ac1acfdc4e4f8ed30f9e7333ca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListReleaseAssetsTest.php","hash":"33e4f39c194ed7f4caad917ada8dbb6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UploadReleaseAsset.php","hash":"7e7bc4b3392c924bd2da9b0382990ee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UploadReleaseAsset.php","hash":"5bb9ed60bdee09c2f922fe8b5852fab4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UploadReleaseAssetTest.php","hash":"c16680473bf7447a564fba9e1fe19fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForRelease.php","hash":"5b5f01ef6c7dcfcf0bd66a0204667869"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForRelease.php","hash":"e87709a8b7592c321280880620372b1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForReleaseTest.php","hash":"d1b83705b7d67ab75bfb46cde977aa42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForRelease.php","hash":"30eca6b28b71b0154ce07c7c43b5c935"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForRelease.php","hash":"e9373edfdf4b031b68ebf099cbfafa3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForReleaseTest.php","hash":"41a08c3eda0ab056d51a4c3bfe0203d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForRelease.php","hash":"d2881a4e655feaaf6c465754fff47ede"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForRelease.php","hash":"b7c1523efe0350e0c41d37336b233dc6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetBranchRules.php","hash":"cb71020b5884ecd0860241bc9fc8d197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetBranchRules.php","hash":"0f847bb266fdf2a832c527eaf28c0001"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetBranchRulesTest.php","hash":"02eb532ed4f39cfb9f30a7eeded57ec1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetRepoRulesets.php","hash":"a826157a50110f2cd0829f0e98cd4bb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetRepoRulesets.php","hash":"7a0468717ba754038353ab24c5c2f475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetRepoRulesetsTest.php","hash":"c6d5dfe24cc4f1423dd054a81d61875c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateRepoRuleset.php","hash":"09bd9ddc03effd95bd786d0344cc7bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateRepoRuleset.php","hash":"963c8f69198dea37133aaa8150780308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateRepoRulesetTest.php","hash":"6eee2dab3de314e74c2b2670ba69dac4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetRepoRuleset.php","hash":"ddcaa633135ca0584bf2cb72e18a05d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetRepoRuleset.php","hash":"7b65c934d7062f775e31679f3280f4c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetRepoRulesetTest.php","hash":"13a1e5ae3700dbb2a3fe029c0e71e545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateRepoRuleset.php","hash":"3dfba74f7db4bd2e89a8389b638b5b15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateRepoRuleset.php","hash":"d19a72b16654096286aa0206d6c9b54e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateRepoRulesetTest.php","hash":"c5a67d50ab9238acdd1c9a0090f1019e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteRepoRuleset.php","hash":"ffbf2f49b56155529870ec7d1e53a5a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteRepoRuleset.php","hash":"f530dbc7d05e74afe4fecbb85586530c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteRepoRulesetTest.php","hash":"a3bbf983655c48281783aa3cfcdb6f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListAlertsForRepo.php","hash":"a690612c7f50c4460add6722e9e8dcb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListAlertsForRepo.php","hash":"2bb2eb810500721634f1df61c230d130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListAlertsForRepoTest.php","hash":"cb67d0d7ea2580d959ff50ebdd823c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/GetAlert.php","hash":"6f427f24cd8e972910689c91f093eee0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/GetAlert.php","hash":"37e2ad8c9b4ec3b25fe05a5c82c4e6d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/GetAlertTest.php","hash":"0f7a3a843583bf7d0e3be604bf57eabe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/UpdateAlert.php","hash":"b10b20caf536b8ec4a85b9b0ece05a30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/UpdateAlert.php","hash":"7b65d078783a346c2be72ca1d626a251"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/UpdateAlertTest.php","hash":"e37b64f479702ee45012d49e58a08edb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListLocationsForAlert.php","hash":"94ebcf15a5692e0f452edc512e5a4aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListLocationsForAlert.php","hash":"7c908aad0f758eaf25473782e5b808e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListLocationsForAlertTest.php","hash":"8a448f1270abd5bb2efef6cd5b831a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/ListRepositoryAdvisories.php","hash":"9563150ed052ec408e86f45230ccf59c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/ListRepositoryAdvisories.php","hash":"1c828279ada7fa21174a3bfd9b7025e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/ListRepositoryAdvisoriesTest.php","hash":"5aa7a1842030a54906e4d35902ad9409"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisory.php","hash":"23e9e277f86149e699c9483b120f69e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/CreateRepositoryAdvisory.php","hash":"488611df42c32ba7986956dca39af38e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisoryTest.php","hash":"6dd63ca4cfd70c3c3687b1d58fe28916"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/CreatePrivateVulnerabilityReport.php","hash":"a60152ad7d9a484393bd5e21047dc3f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/CreatePrivateVulnerabilityReport.php","hash":"18257051f133725af4dd3b908cb1bee1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/CreatePrivateVulnerabilityReportTest.php","hash":"852404083843c019e853fbd0da15b742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/GetRepositoryAdvisory.php","hash":"179c9d656ee78b0b1eb239825801ebe6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/GetRepositoryAdvisory.php","hash":"6d4ec7540ccea6a3e5fdc2b5e8c0fd14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/GetRepositoryAdvisoryTest.php","hash":"991d77bf33add44f813768396a023f85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/UpdateRepositoryAdvisory.php","hash":"bd0924e155614ccd595fd70542ac9c03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/UpdateRepositoryAdvisory.php","hash":"dd324a1db0489a956658948409a293c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/UpdateRepositoryAdvisoryTest.php","hash":"595ce92327a625e081abde89ca74e834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListStargazersForRepo.php","hash":"f656a391ba75694f1672d4887061f7b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListStargazersForRepo.php","hash":"fdf3ad2a809459a3d138f90c1b1c3ae6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListStargazersForRepoTest.php","hash":"430b99b43e8adb9e5aabfbab4141e66d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCodeFrequencyStats.php","hash":"37422343adc222af4e491e029a838a20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCodeFrequencyStats.php","hash":"3510d3fa5fbed5c862f63a4e4d721290"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCodeFrequencyStatsTest.php","hash":"8f0450a938801011665f13e4ceddc82f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommitActivityStats.php","hash":"7bb6eb0d15120cd88e1faa598264a8fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommitActivityStats.php","hash":"b353c9295f8972994e69018067a51279"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitActivityStatsTest.php","hash":"015577fbfadc4723490a6ee074680159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetContributorsStats.php","hash":"95cda5a0f0ab0566fb8cb06751a4a40e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetContributorsStats.php","hash":"35f14d5b5a0cb9d464dc3e255c4e37b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetContributorsStatsTest.php","hash":"d0774e8303db185b67ca5da77b4254ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetParticipationStats.php","hash":"2a3964e233a6827174d9113698fd73d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetParticipationStats.php","hash":"eae6c0428cc6ec00d7b5b0a37d549796"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetParticipationStatsTest.php","hash":"636481d8f62fcadb757360173fed7a85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPunchCardStats.php","hash":"0c9c3d1c666519dc6cabc52574d7a8c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPunchCardStats.php","hash":"d93728bdf0ac0fa48f506f1e588fed0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPunchCardStatsTest.php","hash":"de68f5e16cea6f421d2fd0b0122351c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateCommitStatus.php","hash":"fc1419824adb5c84117dc94271710e68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateCommitStatus.php","hash":"3be97172c4ad419a8baf811beda7fc4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateCommitStatusTest.php","hash":"69fe4a1fc4a8c2996eb55d53b75dd900"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListWatchersForRepo.php","hash":"13fb1ecb9a6c2e5ed20cc97afcb6a262"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListWatchersForRepo.php","hash":"aa0ed27d12061235bae8959ebf02e119"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListWatchersForRepoTest.php","hash":"ff507c21571cd987fa85ee0ec467664b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetRepoSubscription.php","hash":"f6bb1a55b7466d013d57317067c115d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetRepoSubscription.php","hash":"059cc1a96b995cc780ddfbdaf5e378a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetRepoSubscriptionTest.php","hash":"a1aae1086a7a0683c6ea0577fbf98f7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/SetRepoSubscription.php","hash":"93099c535677e2ccc0890a1af84bd307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/SetRepoSubscription.php","hash":"0b675f2710d60c3594bed5a89490b769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/SetRepoSubscriptionTest.php","hash":"6ea376b936e418043d82389b137e9a20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/DeleteRepoSubscription.php","hash":"1973971be273e690bc617042b3330352"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/DeleteRepoSubscription.php","hash":"d4c5508d0a474acaa5403915e3642bf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListTags.php","hash":"137c608d5742655dc5a8c98b673e5a4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListTags.php","hash":"e5e95e46d223c2ad1b9f14bb44ee4783"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListTagsTest.php","hash":"629eb4ebbea89f5d258c9dfc05b1bbc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListTagProtection.php","hash":"eb608a7ec11d11eba32cda5c47ce2667"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListTagProtection.php","hash":"120db1aae167518b243de2ab7e6896d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListTagProtectionTest.php","hash":"5824d50a58f7e998c1339109d36f922b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateTagProtection.php","hash":"51fa5132274f9e772034221e4e72fa2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateTagProtection.php","hash":"cdcd4f34367275f02feeb958520a3f18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateTagProtectionTest.php","hash":"3c3c09aff3bdafc29e956b04da756fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteTagProtection.php","hash":"fcafe133e0846776e94a950246491e3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteTagProtection.php","hash":"99cc8e9e95c95f27110f9b6d1f1725ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteTagProtectionTest.php","hash":"71829b8b356e0d5d82abc79b23b3aff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadTarballArchive.php","hash":"867cc0bbf97491f9d7df7ebf2eb64e2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadTarballArchive.php","hash":"0a66681f63c437c40b0617701e0d6070"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadTarballArchiveStreaming.php","hash":"b89f4269c3d6bb0fc43e87716b3ab425"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadTarballArchiveStreaming.php","hash":"3d6e399a73c5883129986fbfbf990bf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListTeams.php","hash":"4fda9a430aa75a8c52bad2fe40cb5acd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListTeams.php","hash":"0a464fe4ef95c81c66cda1afd24b3f82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListTeamsTest.php","hash":"30ad26f84e6618fa0cac6ab34979bf38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllTopics.php","hash":"cc6dddb000189c477a705c5546d5d440"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllTopics.php","hash":"ca31634f8b38cc367e11fd002036fabe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllTopicsTest.php","hash":"f837fdeaf19f88c9b53e4bf2e5d26909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ReplaceAllTopics.php","hash":"57dd439b8456538f029f78c618d65528"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ReplaceAllTopics.php","hash":"aa74ae3bd70b8e19acedab1f09cf77ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ReplaceAllTopicsTest.php","hash":"b97c8c9ef9a8c8294e1035488c0c05d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetClones.php","hash":"da67e4f54f97b49c6e4cfd278aa7f74f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetClones.php","hash":"9056c70cc0837ec0e4b1bc54320fe1cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetClonesTest.php","hash":"bf9496d2e08c9c9f5b61236efd7ad447"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetTopPaths.php","hash":"0644650718376cbeb0b3455855731650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetTopPaths.php","hash":"a85298a69927c046cf93c485cb03519b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTopPathsTest.php","hash":"c35e2f64c63ce5612dc15968a6f9641e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetTopReferrers.php","hash":"b89b2f2d31e7038a667d8e9f83ac4d9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetTopReferrers.php","hash":"b68871100334dea22c7c6d43c44d74fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTopReferrersTest.php","hash":"a13430b0e9788fd39d27d22bd9f5aec8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetViews.php","hash":"9c14e0a01c43abb61c7d13417d2fde8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetViews.php","hash":"e9c2b6451c519ea447a317669f2f101e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetViewsTest.php","hash":"ffe865032ef1de0ecdaff10726e7e881"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Transfer.php","hash":"8f9210bbaf5ff445ea8989bcf048e8b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Transfer.php","hash":"c39e64346819ca4aa520b7847328e599"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/TransferTest.php","hash":"9dd89d3accec81f8f103d695f99125c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CheckVulnerabilityAlerts.php","hash":"f7cc22069158afa2d77d4a48b119e5c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CheckVulnerabilityAlerts.php","hash":"debe50b7f67a2fa9e089cca888a27f53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnableVulnerabilityAlerts.php","hash":"9e83154317d8a2d774d1b660fabb4bba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnableVulnerabilityAlerts.php","hash":"8bb2b313038d6f4c73da3161c45fe90a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableVulnerabilityAlerts.php","hash":"341e8b656338a50ac807a70d1e6b70dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableVulnerabilityAlerts.php","hash":"d99db25fb22ae797c012ee87e44fc333"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadZipballArchive.php","hash":"42f44597cc1c1dea231df5fa42ab4c5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadZipballArchive.php","hash":"d6dd79b81c23690dddc1224e64b68faf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadZipballArchiveStreaming.php","hash":"6269b0adeadad78db6e6ef74d84d8416"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadZipballArchiveStreaming.php","hash":"e516cd685778947fc654e8a2996651f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateUsingTemplate.php","hash":"42c74a9759cf6875f5a8432a9ed0db0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateUsingTemplate.php","hash":"1164b434459bcf70c8089af582671873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateUsingTemplateTest.php","hash":"d882543d16ee9e01ec1cc172a4913a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListPublic.php","hash":"2ea5ce52bfc09f8e7ae42e34dfb2b843"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListPublic.php","hash":"375bc7dded0c939575f8d67d7eb4edb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListPublicTest.php","hash":"b11164b5578f9cd27db012ba093aaa8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListEnvironmentSecrets.php","hash":"2aa71dead779c7c69264b6368e95aa1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListEnvironmentSecrets.php","hash":"d919f3eaa0f7400e1f38a049330952de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListEnvironmentSecretsTest.php","hash":"83e666eb667e3fcb1d9aadd38a05ceee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetEnvironmentPublicKey.php","hash":"38cd04df38022652868d8e4e96d5c0cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetEnvironmentPublicKey.php","hash":"fe5aac647e1fa19c5149579851510da8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetEnvironmentPublicKeyTest.php","hash":"f6beedbfd03202fa70846ae82f622b72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetEnvironmentSecret.php","hash":"bd769ed07a40586dc0526be0d2a34266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetEnvironmentSecret.php","hash":"fc6e74c6edf20014e2a9cc2b5c9a652a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetEnvironmentSecretTest.php","hash":"dbb500622df8dec711c00bad81588742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrUpdateEnvironmentSecret.php","hash":"6e5a4e61f052c0307adc652aceabf461"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrUpdateEnvironmentSecret.php","hash":"567c227f43e2d677bc18a777a1b3bbf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrUpdateEnvironmentSecretTest.php","hash":"bda4c29f4b2e94ec3f3f9620f8b3537d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteEnvironmentSecret.php","hash":"30342f584dc6c7e765537300e6aa07ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteEnvironmentSecret.php","hash":"81dae018aebbafdd056b6e56640f9a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListEnvironmentVariables.php","hash":"8781392c105b106e7d59b89cdd74aa4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListEnvironmentVariables.php","hash":"5a5e98bfca3c2c2c366b0d547c21490e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListEnvironmentVariablesTest.php","hash":"763d69ae64fc9ad31075034bdc2dfeeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateEnvironmentVariable.php","hash":"dccf7c440699ff0c350e0d72d9e7a0d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateEnvironmentVariable.php","hash":"e2010c65c6582209e03ba5177184406d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateEnvironmentVariableTest.php","hash":"731559d7d9637b6a840833062ece1ffa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetEnvironmentVariable.php","hash":"c657da1f13e6284dbb6e71132eb38d49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetEnvironmentVariable.php","hash":"89a683cf00aa6301255930c1c4dae9dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetEnvironmentVariableTest.php","hash":"acf4f0bc4b8a3ba0925795f9f6af079d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteEnvironmentVariable.php","hash":"d6bdaf2d63aa32f17c210dcc5afb9f22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteEnvironmentVariable.php","hash":"6b9f3573c135ee140950a43088f2d94b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateEnvironmentVariable.php","hash":"f84252886886733e2f4f5d98e9375656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateEnvironmentVariable.php","hash":"f77fdcf78f9ad8f71c0cee3617b8b990"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/ListProvisionedIdentities.php","hash":"a29e50a9c83effb4722bca7300851bdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/ListProvisionedIdentities.php","hash":"4b366c21eede43cc410796f06e7df86d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/ListProvisionedIdentitiesTest.php","hash":"f88068dbd09810cf8531a7c3a3c2876f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/ProvisionAndInviteUser.php","hash":"28b95ab4e88be6ad521c06d360cc294a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/ProvisionAndInviteUser.php","hash":"bdf1134ebb3055265da1db7403ddfa83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/ProvisionAndInviteUserTest.php","hash":"f13d278838f5e94ac175cdf402850db0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/GetProvisioningInformationForUser.php","hash":"4eec7b3c452ee8bf7851769f9d53e53d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/GetProvisioningInformationForUser.php","hash":"847874c9aa07c7f487415a4e93a042a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/GetProvisioningInformationForUserTest.php","hash":"e768bedf15d62f500ef4495b0dfe79c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/SetInformationForProvisionedUser.php","hash":"59c68aebf02a761e92fdbac877e88a24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/SetInformationForProvisionedUser.php","hash":"f2328345f6bc39984b6ec76ef8b1aa8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/SetInformationForProvisionedUserTest.php","hash":"4821d34ae80a9106cef99f0efdb19322"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/DeleteUserFromOrg.php","hash":"bf07222383409ec9d27d3289cc895e84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/DeleteUserFromOrg.php","hash":"47f83b18a75ccc2144a19a213fa449ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/DeleteUserFromOrgTest.php","hash":"18e1ac06fc498653524653a1035bfd42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/UpdateAttributeForUser.php","hash":"ffb9dc34f0b149310949008bed3296cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/UpdateAttributeForUser.php","hash":"68d877ea51b64671d2219d6254037a8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/UpdateAttributeForUserTest.php","hash":"1513b009a24d9d3a7b79b2725e8e8168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Code.php","hash":"257c4878cde03b16dfd5a1fd059a9334"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Code.php","hash":"37d6a823bb99d771aca15ecc1454a507"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/CodeTest.php","hash":"df6cf7396d951e722cead541756d55ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Commits.php","hash":"8cfbe28837c4bce628bd670c373597e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Commits.php","hash":"f170fd8075d8452f0e4de388d07b7f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/CommitsTest.php","hash":"031a66d70e9cae8e41bad4dfe25dd45b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/IssuesAndPullRequests.php","hash":"e633144f11b0d9813a1c6d1fe0abd3e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/IssuesAndPullRequests.php","hash":"52cb490e65ba8b84ac880702be127438"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/IssuesAndPullRequestsTest.php","hash":"ac941f170c7efaef9b3b3694d224622c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Labels.php","hash":"360e7546e2c9c01a517b246ee20f12c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Labels.php","hash":"503b231d707afa1be3bc0ca024ca3f5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/LabelsTest.php","hash":"382e1bef3fdb67361587bb1be4178f21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Repos.php","hash":"0d3070df9dfad3106a9b9a3cff2784c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Repos.php","hash":"07bafc6f35ab6f0fb661defbdf24dc85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/ReposTest.php","hash":"28aadd8b184131494f816759a30fcf43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Topics.php","hash":"c4a511ece69196df7f49d67a90ca252c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Topics.php","hash":"686e0c22a5ffd8d84f27bfb39d4ea6ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/TopicsTest.php","hash":"6fa6dbb0b756d5f2bd0d13b53b332852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Users.php","hash":"823bd26555d91847b45b6a91a2abf51d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Users.php","hash":"9975a628584b7fbcece445d334a475c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/UsersTest.php","hash":"701328fafbb476ec2a3bfa427ffc8a92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetLegacy.php","hash":"d05c532c5a8f3d3d4bb506331f12f2e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetLegacy.php","hash":"1a79134f2564cc46847bf1b9889f0288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetLegacyTest.php","hash":"815d7f76e7b690fadfccfb3acf349164"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteLegacy.php","hash":"b86f769b880d03ae627e7481aa1a6962"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteLegacy.php","hash":"3d48eddfc3891f9a0661b53a59a36fb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/DeleteLegacyTest.php","hash":"0c463a9198dcd889342a228b5fdf5c34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateLegacy.php","hash":"deff9833dfae1af561d8a13c23b2eeb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateLegacy.php","hash":"3dd564ebbfe12a1bdf35df53976fa362"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateLegacyTest.php","hash":"2b01dd7b5f0a5253b14ef7da8ceef215"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionsLegacy.php","hash":"2f9ec2e77193cb026100d1a5ecf138b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionsLegacy.php","hash":"52ae997856a72b2ffc80ec149ef9415c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionsLegacyTest.php","hash":"31ed57a2073fdeaacab14da9d3559dbd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionLegacy.php","hash":"2cbf5773636063cce928eaa9ed6288f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionLegacy.php","hash":"3ea055015f05a04451080e9dc6489318"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionLegacyTest.php","hash":"c7fd20f9a0f36605039f61a3c0de478b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionLegacy.php","hash":"767d70b6b1034c77ebd1161c85b5741e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionLegacy.php","hash":"9c46f753c7e2ccf7f341638be0bea8d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionLegacyTest.php","hash":"deb963b537de1748ff2f334882a18ab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionLegacy.php","hash":"bff336879279705b50d0dac16103a9ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionLegacy.php","hash":"2b2f7f75586644721761ad78444e0ee7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionLegacy.php","hash":"5d3b7381a79d277b34967b6bcb4415bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionLegacy.php","hash":"3bb6e236f9a76805a2274495e1210085"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionLegacyTest.php","hash":"ada452a882bb29df37b8b25d8873a444"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionCommentsLegacy.php","hash":"d1ff72771d82cf08440972bf6a23ff48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionCommentsLegacy.php","hash":"dc508a0bd1e893b2d873c62cf3c5d38f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionCommentsLegacyTest.php","hash":"f3f14f96a1ecab6797bcb8514a7ff66f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionCommentLegacy.php","hash":"11eead3191860bc9c365e1a396c1d564"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionCommentLegacy.php","hash":"397cf407381fbdb305a3b30384cec0ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionCommentLegacyTest.php","hash":"b63e3414b51ca5d706c646555333ce83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionCommentLegacy.php","hash":"246e8dda4e848d012d79615ce86e85a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionCommentLegacy.php","hash":"5184d8f6d716a69e05f10a2e9f40f24c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionCommentLegacyTest.php","hash":"33140fdbdf47070d9cb52ab141ad0079"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionCommentLegacy.php","hash":"13d30baf01c71d4a89377a6fb1567d5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionCommentLegacy.php","hash":"9d55db865ed618862eb06d9b93b25089"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionCommentLegacy.php","hash":"df6f400879a1a130b59418bfa5578ab3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionCommentLegacy.php","hash":"e08858b51c6aea1c9895e260635a0ce9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionCommentLegacyTest.php","hash":"573bf892508a821608ca9ae5e6fac8f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionCommentLegacy.php","hash":"753c68c25add6775144f379cee1b4812"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionCommentLegacy.php","hash":"6e5241595d37b15abbc3bc1e8593b492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionCommentLegacyTest.php","hash":"668f3c59e7d860c5eb7b2f284d8a3061"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentLegacy.php","hash":"82b9ea64d79ccc7eebaf5c7f89a4d865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionCommentLegacy.php","hash":"f707835ec5ed6aa11dd8c201223e94a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentLegacyTest.php","hash":"a917f29e88a1ba71c01f4f20df4f603d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionLegacy.php","hash":"99ea72e33db70c5f7dbe5d4c0bde8790"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionLegacy.php","hash":"a2bd31233823a96c6556ee25cd3d52e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionLegacyTest.php","hash":"6eb4bc5425828662a05796e64ad7f408"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionLegacy.php","hash":"f0eafcd2e2e5c644b8cf97a6d564528c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionLegacy.php","hash":"e55dc75855baf44568e2aaecf192d11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionLegacyTest.php","hash":"34cda5a79312c57831c7c293128844ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListPendingInvitationsLegacy.php","hash":"2725f535c04caf7a8df2e76648d25012"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListPendingInvitationsLegacy.php","hash":"4544526fa53bc3d96fa24261d4557c2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListPendingInvitationsLegacyTest.php","hash":"dc67eec22131f29c305f6fe234af4944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListMembersLegacy.php","hash":"7b86329391597d48f97e4c89cad2bac2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListMembersLegacy.php","hash":"9bdf155006e983701cf61dbee4a890de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListMembersLegacyTest.php","hash":"c19ef44e73a2b94e92286cebfb0deefc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetMemberLegacy.php","hash":"5f0c4a8c4d038bb3429763b35a31d7ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetMemberLegacy.php","hash":"dbc7b8f6342f5df62cff50dafd7fb4a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddMemberLegacy.php","hash":"c3e3bf465e4e3f98062ef345ad29ca4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddMemberLegacy.php","hash":"6e7c040be1e64ff741fec91123df9afa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddMemberLegacyTest.php","hash":"64e401d8cd06117db9908f0e05cb5374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveMemberLegacy.php","hash":"4fbe1029379f691b9b2d6543ad5227e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveMemberLegacy.php","hash":"64976e70796b46512792481773ccf300"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetMembershipForUserLegacy.php","hash":"09c4f18a3148d1c4293e3b4b8a3d85e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetMembershipForUserLegacy.php","hash":"351456e89463b40df6f04e9c794e84f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetMembershipForUserLegacyTest.php","hash":"a6495a9b52536b75fa0f671dd23279df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateMembershipForUserLegacy.php","hash":"2b2cc4c5a1d7cb5fc5c3fcfe52449bab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateMembershipForUserLegacy.php","hash":"57b0afc16ae80e6d5270b4e70acd1f72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateMembershipForUserLegacyTest.php","hash":"be066b45f95bac999a9809302b869309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveMembershipForUserLegacy.php","hash":"d24237fec3ae5a488ee7de41198392ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveMembershipForUserLegacy.php","hash":"c2299eb7b961964549b1ed2e81f82f99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListProjectsLegacy.php","hash":"da9b09ec52a1d601fae5fa72a7e4a656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListProjectsLegacy.php","hash":"bd58feaa1427bf74a659bbb2cdacefec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListProjectsLegacyTest.php","hash":"493a6351162c6cd6c7fc23386eb027cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForProjectLegacy.php","hash":"eb4ab6b8290845a998157461ec54c3e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForProjectLegacy.php","hash":"a21cd867fe2bd1fb1fc85ccec677a055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForProjectLegacyTest.php","hash":"a76e102a12fa99811caca7d0c77397db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsLegacy.php","hash":"f749d6f8d24a6da933c1c192300cc6b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateProjectPermissionsLegacy.php","hash":"c7a8977b86dafca0e5dde58cdbcfb524"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsLegacyTest.php","hash":"95f5eae25929cc59395a405419497b90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveProjectLegacy.php","hash":"87ad59e9397dd2e1177ed4c738fdc669"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveProjectLegacy.php","hash":"7ef8150c3efa17ef10cfec8fe3b9f1a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/RemoveProjectLegacyTest.php","hash":"d97edf615400dd2ac05348a7eb6d9542"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListReposLegacy.php","hash":"7854c386f616a39263c1e92c12f820a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListReposLegacy.php","hash":"04b48e6aefa8310e714a04afd61cf604"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListReposLegacyTest.php","hash":"15ba83ddcc164022183461b23b539a4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForRepoLegacy.php","hash":"487a66227cce2d1a12389db0be0a5ed3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForRepoLegacy.php","hash":"ce40d0cd4c2202fcbd72614cc8ae0248"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForRepoLegacyTest.php","hash":"000aaf6c0ac46a77d8e8b510a9e153ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateRepoPermissionsLegacy.php","hash":"c01600c834c2fcdb81980c8bcfcb26ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateRepoPermissionsLegacy.php","hash":"c51a9fb99133884b3f990fbf4ef7aeed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateRepoPermissionsLegacyTest.php","hash":"36841a63c89927f36220c7846588c47b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveRepoLegacy.php","hash":"64fdc32651dc811f8974777f49a7b096"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveRepoLegacy.php","hash":"52ef403c59792cf8507c81ba45720ac5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListIdpGroupsForLegacy.php","hash":"6617881e39162ddbf1c595432011f89b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListIdpGroupsForLegacy.php","hash":"0b3cae114e9d93e1c2b18bfece4ad872"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListIdpGroupsForLegacyTest.php","hash":"3423c90fcadfef1cc7b3dc712e6d415e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy.php","hash":"8eb6e2b21828398b21c830762e852441"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy.php","hash":"f963dde815389e0bf70e2a257a5ebf2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacyTest.php","hash":"d62a7d4d83fb32142ff67d313fb8ccda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListChildLegacy.php","hash":"39412eb02f5fe28025b49c86755170e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListChildLegacy.php","hash":"ed9d87454132a88eb2ed5909048b137a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListChildLegacyTest.php","hash":"88a23d17b52e5b68919c0085b505ea43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetAuthenticated.php","hash":"a316460ad3671b01818136462490da7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetAuthenticated.php","hash":"f410444ca2fea88be4edb1acd2cdce1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetAuthenticatedTest.php","hash":"549d8828eb8056419010830cfb5ccfcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/UpdateAuthenticated.php","hash":"ccef6d0de407d022a70f66b67885364b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/UpdateAuthenticated.php","hash":"ab7288c425234408465e962fe6db4b18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/UpdateAuthenticatedTest.php","hash":"6cfc224c500e55b8f4950dfb733d2e30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListBlockedByAuthenticatedUser.php","hash":"86ebeee30b7bf8969124c47fe38ac347"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListBlockedByAuthenticatedUser.php","hash":"1576800b2dbd16ef3f8124ee0bf3abe2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListBlockedByAuthenticatedUserTest.php","hash":"259bd05c6289aa36a3126b0a3eaebb9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CheckBlocked.php","hash":"3cd765446ff15b8e7a3a0265aa29d77a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CheckBlocked.php","hash":"b30f20d6c2feef06d6c892191346b3fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CheckBlockedTest.php","hash":"155bea9e0abedcb9eb60d9fa760fb242"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Block.php","hash":"4d942fbb4335e3414ec61e52dafe8dc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Block.php","hash":"2d1f048681477be6b53eea88e0ab9732"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/BlockTest.php","hash":"32089b1d9e917deac32518256a3fb6d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Unblock.php","hash":"f52b4fb833f20c64e8002f248f3b6e7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Unblock.php","hash":"e7b2be4b9d3c5443e60f483c81d0577d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/UnblockTest.php","hash":"916b9d3d5359bc32b40823f901db2241"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListForAuthenticatedUser.php","hash":"5b221d4303d0c034a3f0446681324c8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListForAuthenticatedUser.php","hash":"7f652653097b9db6f8abfc10bd6431be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListForAuthenticatedUserTest.php","hash":"191fd8cf2545ee3d9c68ae281c17f5bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateForAuthenticatedUser.php","hash":"fef05589098feb5eebd315372c3ce608"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateForAuthenticatedUser.php","hash":"ec9e6ba73b3bd029a137401b8ddd6520"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateForAuthenticatedUserTest.php","hash":"cdfb94e3a68f25e37bef815e72519080"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListSecretsForAuthenticatedUser.php","hash":"1ee4ea22b91eec5d6629e1468a82606e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListSecretsForAuthenticatedUser.php","hash":"359b573ee35b5b09f7eccda0177dc078"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListSecretsForAuthenticatedUserTest.php","hash":"938f5cc7b6cb8ee9415eb3c013732b0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetPublicKeyForAuthenticatedUser.php","hash":"025f5ec4af46232f72a50d0099f1f4cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetPublicKeyForAuthenticatedUser.php","hash":"6a66f183d82316643a8abf96b4037070"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetPublicKeyForAuthenticatedUserTest.php","hash":"cc09b8597f7ed6bc2c6b953b78785de9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetSecretForAuthenticatedUser.php","hash":"3ffba7240fa26be9ccdcc1a20e77f41c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetSecretForAuthenticatedUser.php","hash":"20965e73217e14be4ba0962d4f31cfc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetSecretForAuthenticatedUserTest.php","hash":"b8abebe11ee47d566e89e0ec6dbf0603"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUser.php","hash":"b20fc4091ee5b74a7c9e7acf9488a699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUser.php","hash":"fe7350ba8f79d64b5255dd023d31a1c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUserTest.php","hash":"1c9f0083c0d634dd09084caa1a2d4ab5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteSecretForAuthenticatedUser.php","hash":"c5e386173c87dec37b8ca4fe760de7e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteSecretForAuthenticatedUser.php","hash":"28283ee7930bc9c89e842a380c0f8509"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser.php","hash":"a715e36d79ad9ca482bc7c96c2275637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser.php","hash":"1b8f73c0b55291638fc08546b202a766"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUserTest.php","hash":"2dc410b8b91a7315bc8d767589ba7a64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUser.php","hash":"ce8a68ce89d9e9b88d59c22d4159e00a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUser.php","hash":"326f32b5d6c4269412bb99e536ea0e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUserTest.php","hash":"c176be21eb7b3b1b05d7706746273733"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/AddRepositoryForSecretForAuthenticatedUser.php","hash":"5e237fe97de24acc39a94077348021c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/AddRepositoryForSecretForAuthenticatedUser.php","hash":"1e4396729318e1531c124c0c65a32315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/AddRepositoryForSecretForAuthenticatedUserTest.php","hash":"5c32d82fc90b3904e56dffa3be450ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/RemoveRepositoryForSecretForAuthenticatedUser.php","hash":"e42c087805763f16e9f57f8f2a4111e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/RemoveRepositoryForSecretForAuthenticatedUser.php","hash":"c9dbfa7f95c66e5958b88fec27fa7726"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/RemoveRepositoryForSecretForAuthenticatedUserTest.php","hash":"29e5cba8c25e1ba137c66988544f702c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetForAuthenticatedUser.php","hash":"9007f8cadc3628dc5775f376abf6fff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetForAuthenticatedUser.php","hash":"b95eea37b0271dc492b3b091ca7faa28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetForAuthenticatedUserTest.php","hash":"5064291b3032b852abe120e29db8326b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteForAuthenticatedUser.php","hash":"de8f6ecfe33f547cb70f17bf2cdbf68e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteForAuthenticatedUser.php","hash":"358332dbd1ca101508f02e62d945d675"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteForAuthenticatedUserTest.php","hash":"7812be54346a41cc4208ca0309c6f381"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/UpdateForAuthenticatedUser.php","hash":"8a7378aaa66004f6698604d9a7e57643"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/UpdateForAuthenticatedUser.php","hash":"3c1fe886f21be6cecb62de820bf3bc93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/UpdateForAuthenticatedUserTest.php","hash":"1569f6c71085c815e5859aa68aee3b21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ExportForAuthenticatedUser.php","hash":"0e6aee678aff3ee980993600cbf3f111"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ExportForAuthenticatedUser.php","hash":"849c1dfe24707bd65027afceaab18b0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ExportForAuthenticatedUserTest.php","hash":"d303c9090ea9cd9ace9295d19c2148c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetExportDetailsForAuthenticatedUser.php","hash":"1605a07e801377a846662652e2ae8bd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetExportDetailsForAuthenticatedUser.php","hash":"c4869e0da616931ccf18cdd777aad069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetExportDetailsForAuthenticatedUserTest.php","hash":"1e777946fd9288a92a308170bb21bf67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CodespaceMachinesForAuthenticatedUser.php","hash":"4b697c7b38f91af84d38054f47152de5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CodespaceMachinesForAuthenticatedUser.php","hash":"609a7fae2151d6f81ed96e9902dc64da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CodespaceMachinesForAuthenticatedUserTest.php","hash":"049643fe861bf4d6baa373e10fa05f57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/PublishForAuthenticatedUser.php","hash":"b51fb4b403bffdff44573ee4c85910ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/PublishForAuthenticatedUser.php","hash":"864da0b462d7b40fe73b07335e9a5630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/PublishForAuthenticatedUserTest.php","hash":"85859de3c736086181fc9c9c271f23dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/StartForAuthenticatedUser.php","hash":"75b75e02149b2d7f34396532a7feb427"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/StartForAuthenticatedUser.php","hash":"14420710c4756bc67f198f713d5844b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/StartForAuthenticatedUserTest.php","hash":"b5f70e24942ef7483c878e7074c6bd1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/StopForAuthenticatedUser.php","hash":"eed771d3f0d5fb41c01792cc47ed7f0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/StopForAuthenticatedUser.php","hash":"4b0a027edb81cf256b5a9505b2bd702a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/StopForAuthenticatedUserTest.php","hash":"6cb2de60c3ed2eaf1347be886e004e2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForAuthenticatedUser.php","hash":"12d3d79e018c6d1f6be34aa00b2f9870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListDockerMigrationConflictingPackagesForAuthenticatedUser.php","hash":"e45d249823a81f539094885c0e488c74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForAuthenticatedUserTest.php","hash":"ad4854176a7da384713f74e68b406448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUser.php","hash":"818f584b163d98a9ddf754623c4f1eac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUser.php","hash":"7f7f8f82aa43e4109429faf2dcc29af6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUserTest.php","hash":"de1f453ab45d4c5527b8bed9cec3d142"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListEmailsForAuthenticatedUser.php","hash":"0f651edbd83c0517e3eb5cae0ef57030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListEmailsForAuthenticatedUser.php","hash":"f3cd7bbdef5a516d2c9d7a27efea1dd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListEmailsForAuthenticatedUserTest.php","hash":"b57b5d5cef6745b5c9be00d2e7461536"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/AddEmailForAuthenticatedUser.php","hash":"f977ea6296a141e46e83a46d1e575ff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/AddEmailForAuthenticatedUser.php","hash":"d8a84dfd924cdd1f80db313ab158e888"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/AddEmailForAuthenticatedUserTest.php","hash":"dbbe2d08a07a3b3c24ddd63fc744071f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteEmailForAuthenticatedUser.php","hash":"2d741e5ea07e0deda75c4f691efc3740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteEmailForAuthenticatedUser.php","hash":"61db3f91bc12f4147b1e2bbddb46161c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteEmailForAuthenticatedUserTest.php","hash":"4fbbfa4412e74324251464bed16432bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowersForAuthenticatedUser.php","hash":"28bd5722c5542c4e0aea9f74063fd1af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowersForAuthenticatedUser.php","hash":"7e3c60b53a9dcf1eccaef46f16652948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowersForAuthenticatedUserTest.php","hash":"7cc7953923f0b4dbb9d6cdb268b57364"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowedByAuthenticatedUser.php","hash":"a718ce1a393503c3dda66dee7a6a9c67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowedByAuthenticatedUser.php","hash":"91f511d813b8f30d6265457e1cf082b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowedByAuthenticatedUserTest.php","hash":"b01893378b8ccfc2adaefe785368f276"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CheckPersonIsFollowedByAuthenticated.php","hash":"0b8a6d5c1e9b7ba865f676bbe2202daa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CheckPersonIsFollowedByAuthenticated.php","hash":"be4f36e880896c4418429da2e2dd1d8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CheckPersonIsFollowedByAuthenticatedTest.php","hash":"04833b89017287f982f330fc393475dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Follow.php","hash":"fed1874aac4d33d359911a41e90757c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Follow.php","hash":"0d2ba283b4451c60dcee3d5065987bbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/FollowTest.php","hash":"6af0ac85b58a883b2343dfe4abd3f196"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Unfollow.php","hash":"0a765c4e1e63cbe88fe1d72405ed2795"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Unfollow.php","hash":"cb477169ed145ea12a4c4224542779a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/UnfollowTest.php","hash":"251636f65c08692bc4c3c8ef54ee1aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListGpgKeysForAuthenticatedUser.php","hash":"56872759f87199a1e4e3079cfe0136d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListGpgKeysForAuthenticatedUser.php","hash":"2315937a812105d5cd27e99bc8c58281"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListGpgKeysForAuthenticatedUserTest.php","hash":"ef74701d3c33c2d6ff6e6adc7829ae7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CreateGpgKeyForAuthenticatedUser.php","hash":"c7792c9098f817a7ad200266fcb7fef4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CreateGpgKeyForAuthenticatedUser.php","hash":"1b55faeafb6294e7e6e78b152444b33f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CreateGpgKeyForAuthenticatedUserTest.php","hash":"c4584290767c1616c4b92e1cbb00e49c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetGpgKeyForAuthenticatedUser.php","hash":"e76b5c6acb2a486cd3fd5f7df720e3c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetGpgKeyForAuthenticatedUser.php","hash":"a0d7aecea3b191cd834762559dd1cce6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetGpgKeyForAuthenticatedUserTest.php","hash":"1d3dd3d0b57f58b68e9b6b6a63b02c52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteGpgKeyForAuthenticatedUser.php","hash":"db598b01be68139b5956b638132c7181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteGpgKeyForAuthenticatedUser.php","hash":"48f2084dc87f67db33e0eccbb436f6a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteGpgKeyForAuthenticatedUserTest.php","hash":"35a45da3b53d70f84a2c039b81339e40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallationsForAuthenticatedUser.php","hash":"4f96e2b9db2f2be8bfc6915f57d424cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallationsForAuthenticatedUser.php","hash":"fce933fc7a9913fa885589d10fe48f10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationsForAuthenticatedUserTest.php","hash":"ee4cd44587a2933fd03fecb2b65e4ff5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallationReposForAuthenticatedUser.php","hash":"f8ca5385da1d64fd38e3a0d5e7550344"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallationReposForAuthenticatedUser.php","hash":"a144a7abe735e77f45ef99b81c8549a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationReposForAuthenticatedUserTest.php","hash":"3258e4029b0e593b643aa7f7474e734f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/AddRepoToInstallationForAuthenticatedUser.php","hash":"ebf9befee61232c1691ed09c5a428b23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/AddRepoToInstallationForAuthenticatedUser.php","hash":"58895b061a9c1eb18c5c256ef8fa8f3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/AddRepoToInstallationForAuthenticatedUserTest.php","hash":"94cd999396f2eeb8cf911576da524bee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/RemoveRepoFromInstallationForAuthenticatedUser.php","hash":"d3ac6c47d3e5a335032ed8c620eeee72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/RemoveRepoFromInstallationForAuthenticatedUser.php","hash":"fccb6fa73cff7926c0d8c35ae9171a0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/RemoveRepoFromInstallationForAuthenticatedUserTest.php","hash":"0472162103028cb5121287c465c40ab6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/GetRestrictionsForAuthenticatedUser.php","hash":"7d08b809adff791ac5f129db62fb61c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/GetRestrictionsForAuthenticatedUser.php","hash":"24761c4171ef460736ec64c410668d13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/GetRestrictionsForAuthenticatedUserTest.php","hash":"7c0541270b07b61ec891255687d20157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/SetRestrictionsForAuthenticatedUser.php","hash":"4e20342d11e762e1a2823caa104a2b01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/SetRestrictionsForAuthenticatedUser.php","hash":"98b8d2e1be0f858da4e51e7c4899589e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/SetRestrictionsForAuthenticatedUserTest.php","hash":"53f3ff4a2a169ba3cddc22683690f1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/RemoveRestrictionsForAuthenticatedUser.php","hash":"95e7ebd7be7bc11eeb0c415cf19419ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/RemoveRestrictionsForAuthenticatedUser.php","hash":"9b28b110165ad6d6cb38ad1a997cc76b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListForAuthenticatedUser.php","hash":"00679c61eefef1a84db516e5f3a27ea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListForAuthenticatedUser.php","hash":"47a239ff3751f3170762a1e38a069c2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListForAuthenticatedUserTest.php","hash":"faf5c7a0cb32ca91211f9d0cc9c0ed8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListPublicSshKeysForAuthenticatedUser.php","hash":"e5991353bae54e1b4d19067852d154d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListPublicSshKeysForAuthenticatedUser.php","hash":"f7f6f3745bd6deeb825762f7d46643ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListPublicSshKeysForAuthenticatedUserTest.php","hash":"d20b2ab83a5c7c7d02ae20c8dfe12146"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CreatePublicSshKeyForAuthenticatedUser.php","hash":"bd5cb8f97788651a989e0e96fa7a64eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CreatePublicSshKeyForAuthenticatedUser.php","hash":"69031b1f04dd362b8a4731e5db4f9fa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CreatePublicSshKeyForAuthenticatedUserTest.php","hash":"bd15afa68ab61d65fd31694a8698168d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetPublicSshKeyForAuthenticatedUser.php","hash":"eba7d233b2b0fd1ce4d4687b8c9b70dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetPublicSshKeyForAuthenticatedUser.php","hash":"7b577d8054d48210569dde8920d1fa55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetPublicSshKeyForAuthenticatedUserTest.php","hash":"5e8836dca4e830f0039082f57b37c888"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeletePublicSshKeyForAuthenticatedUser.php","hash":"9182dc736d3f69fe42170e7c43d1a59d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeletePublicSshKeyForAuthenticatedUser.php","hash":"f11efd4d529375c26153256b317429c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeletePublicSshKeyForAuthenticatedUserTest.php","hash":"ee80fffa3a444b5830eeeccc312866a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUser.php","hash":"5a6bbfa9cfa7d2ce62e3c42697ad65c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListSubscriptionsForAuthenticatedUser.php","hash":"b6756f6f415f0355583f976d66ec4adb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUserTest.php","hash":"ae8c5136ee081d5a09ea0f252ed91c60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUserStubbed.php","hash":"e264cd1892b2e01d1d75327679db9bf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListSubscriptionsForAuthenticatedUserStubbed.php","hash":"63626924568ff2557bb51adec255c37c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUserStubbedTest.php","hash":"9f61645ee79550fc3eb89ff684e95a3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListMembershipsForAuthenticatedUser.php","hash":"25908c297ee7f7e43179d57a71666dec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListMembershipsForAuthenticatedUser.php","hash":"96766b2b966e247cc35201faa3998e8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListMembershipsForAuthenticatedUserTest.php","hash":"f502fe664c050b56527f2cdcefad2fa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetMembershipForAuthenticatedUser.php","hash":"0466817bd6a70e4b2a4009d1504f9e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetMembershipForAuthenticatedUser.php","hash":"7497d4e15a9211f25fb04f4c6ec4045b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetMembershipForAuthenticatedUserTest.php","hash":"60d5dc4a5fe36cfea94814a476672867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateMembershipForAuthenticatedUser.php","hash":"b2f2dc5d6e8fe64f41328f95bd3869bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateMembershipForAuthenticatedUser.php","hash":"a90f5d3cd2e74431ffce7756afc07594"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateMembershipForAuthenticatedUserTest.php","hash":"e5e176fe796587addf813ec73ee1a50b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListForAuthenticatedUser.php","hash":"8db86b3a60e17faf136b112d754265b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListForAuthenticatedUser.php","hash":"058667b868d007ea1c6bbcf49666ff96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListForAuthenticatedUserTest.php","hash":"b324158683d46627c161f48548e03a19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/StartForAuthenticatedUser.php","hash":"990bb906750f66c155d6b684a2c51c73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/StartForAuthenticatedUser.php","hash":"6bb390cf7ddd99e278fbacbae60b945f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/StartForAuthenticatedUserTest.php","hash":"2125ce7a9b5b8654ffa3aa2a1aa299f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetStatusForAuthenticatedUser.php","hash":"c86ea9e63415cf9b45babcb281fe1099"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetStatusForAuthenticatedUser.php","hash":"4b42fb72144bb10b342ce81f5bce0b50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetStatusForAuthenticatedUserTest.php","hash":"838d3a617affa1208fabcf9fbbe0f428"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetArchiveForAuthenticatedUser.php","hash":"349ebd9cff708e748f18a2386a7f8786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetArchiveForAuthenticatedUser.php","hash":"3487f30813a02ddb2fc066fc03464a82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetArchiveForAuthenticatedUserTest.php","hash":"f83a5c5a78a77158d228b53f1611fe4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DeleteArchiveForAuthenticatedUser.php","hash":"5e5565e9085abdd83f074c4e984115d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DeleteArchiveForAuthenticatedUser.php","hash":"4db3336f96c83ccff99b89b5062af41c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DeleteArchiveForAuthenticatedUserTest.php","hash":"230b8586079c42e46b04df917f23e7d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/UnlockRepoForAuthenticatedUser.php","hash":"a475bcc381f100f8fd8edfc33c8cd4df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/UnlockRepoForAuthenticatedUser.php","hash":"0d85a5ad0cc89dba7056f580dd893523"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/UnlockRepoForAuthenticatedUserTest.php","hash":"e5b2a11c82dae8eb44f414430f801e36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListReposForAuthenticatedUser.php","hash":"4af8803a7ee1f2dd5659d58cd9f906ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListReposForAuthenticatedUser.php","hash":"2c808f006abcb0da458f76fea0c97cc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListReposForAuthenticatedUserTest.php","hash":"37edcb1710878be69a0f437a5160458e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListForAuthenticatedUser.php","hash":"b0ed54a6c8c0750121197771c4466df6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListForAuthenticatedUser.php","hash":"8cee1b713cae35b4763da2eec5ff05bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListForAuthenticatedUserTest.php","hash":"b797f753ab918479242a4c1277283bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListPackagesForAuthenticatedUser.php","hash":"cb5d437fac90c9c5284f522bcae0a7c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListPackagesForAuthenticatedUser.php","hash":"4b50a3bc3de44cbd4f5e8ead065fa976"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListPackagesForAuthenticatedUserTest.php","hash":"dc4f6aece1d8df21428f163cfd5fca95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageForAuthenticatedUser.php","hash":"b7e1ec24f0b922da29edff229431c0cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageForAuthenticatedUser.php","hash":"e72b4a31c135cc9948c500896f07e389"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageForAuthenticatedUserTest.php","hash":"52394b1f334c01fd42bd1436ac958e91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageForAuthenticatedUser.php","hash":"f99bf30d0f521c84f022ee665d01146d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageForAuthenticatedUser.php","hash":"6e0310a01716f64ef02b00ad6f43b901"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageForAuthenticatedUserTest.php","hash":"1b35042b2ae238b53e607e54bf45c181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageForAuthenticatedUser.php","hash":"07e62cc4b39a2a6a6638039f7b041bf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageForAuthenticatedUser.php","hash":"ab5b9545c438e1f7c6c91d259647e456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageForAuthenticatedUserTest.php","hash":"cbab07ef69dc8dfea2c4793fdffc7b69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByAuthenticatedUser.php","hash":"fa9e5eb221e22002c35ef85dd56807d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetAllPackageVersionsForPackageOwnedByAuthenticatedUser.php","hash":"970bd87536ea4d50edba0659bf5ca478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByAuthenticatedUserTest.php","hash":"ba4a29ff303921f807ea0094b02bbd32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageVersionForAuthenticatedUser.php","hash":"ae05cb8f2f5c1e00d26c681d1b8045c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageVersionForAuthenticatedUser.php","hash":"2c62fbaf21952edf62e38beab0d854bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageVersionForAuthenticatedUserTest.php","hash":"035e6042c3ee1dbed35b451ec2460117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageVersionForAuthenticatedUser.php","hash":"f577d429f4a168f8c9e204c34077a50d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageVersionForAuthenticatedUser.php","hash":"61a640177e4d856eea46a3cb64799f20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageVersionForAuthenticatedUserTest.php","hash":"247e00346f9432b17429ba4e138e7628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageVersionForAuthenticatedUser.php","hash":"b7ea58f327bb2e2617799ac77600aa5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageVersionForAuthenticatedUser.php","hash":"a4d38d458b775e3c3b2ceed046517eb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageVersionForAuthenticatedUserTest.php","hash":"561c0f2142815e7efbce2a4614f9d727"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateForAuthenticatedUser.php","hash":"16d4ff8ca2e93ce234d8bed927c00158"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateForAuthenticatedUser.php","hash":"ca26d0099704a9fe512190382a7bd8df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateForAuthenticatedUserTest.php","hash":"a2f053fa83af3d2aafd724e83b9e78fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListPublicEmailsForAuthenticatedUser.php","hash":"88bc40ab11500e8234c04491a9962a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListPublicEmailsForAuthenticatedUser.php","hash":"31da1bef529458d00577726c4b0453f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListPublicEmailsForAuthenticatedUserTest.php","hash":"476021a89776436a327014f6f5b92354"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForAuthenticatedUser.php","hash":"62a1d6c4fd1cf52d7b699ab0c3df5ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForAuthenticatedUser.php","hash":"47a80486966292514e1286eaa8940dd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForAuthenticatedUserTest.php","hash":"8b1f62160ef3e9e5f0a415ae4efbf6f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateForAuthenticatedUser.php","hash":"b540a010bc846901f1dc93f4d92f4ea5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateForAuthenticatedUser.php","hash":"87dc6dc0c47a8db0196e97f451c8f436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateForAuthenticatedUserTest.php","hash":"630a844d5fd032ad72af495702f5975a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListInvitationsForAuthenticatedUser.php","hash":"7038446a8e3b1af2f34437476859fd92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListInvitationsForAuthenticatedUser.php","hash":"3537034c6c8334a6ef62bdd4981676cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListInvitationsForAuthenticatedUserTest.php","hash":"5693d794ddc7a1b8195848b11e14e79b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeclineInvitationForAuthenticatedUser.php","hash":"3f90df80f56ba950a939fc40a7267d2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeclineInvitationForAuthenticatedUser.php","hash":"26ae54c334b7c70a63b9eed6b74f19a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeclineInvitationForAuthenticatedUserTest.php","hash":"3748bd3e00df7237c1331dc816a3dd17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AcceptInvitationForAuthenticatedUser.php","hash":"44ae8bd89499988fe5c097c3e21a8985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AcceptInvitationForAuthenticatedUser.php","hash":"7cad8b21d32b31c13fd01f23c99bb0ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AcceptInvitationForAuthenticatedUserTest.php","hash":"5f8d717a430de6771af74de454e0c171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSocialAccountsForAuthenticatedUser.php","hash":"bd4a0d1bc81c78aabcc460c17c9950fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSocialAccountsForAuthenticatedUser.php","hash":"a2bb6534ea282480213477ab3ff36a04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSocialAccountsForAuthenticatedUserTest.php","hash":"83199cf9222c09368c077d235f251360"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/AddSocialAccountForAuthenticatedUser.php","hash":"a3888488695d85ee732a819884725ba9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/AddSocialAccountForAuthenticatedUser.php","hash":"0e8a618ab788abd7b91451709bdd9a4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/AddSocialAccountForAuthenticatedUserTest.php","hash":"2f6f1bfbba73cd70efdcf43d502afde6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteSocialAccountForAuthenticatedUser.php","hash":"77d6e0558418bb9085772d98c39a4682"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteSocialAccountForAuthenticatedUser.php","hash":"8c114026039be2e4198ef4dee56fdb5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteSocialAccountForAuthenticatedUserTest.php","hash":"025269c884a92066f911f20a1103395b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSshSigningKeysForAuthenticatedUser.php","hash":"d6e2969ca12a0ba61940df9161d983d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSshSigningKeysForAuthenticatedUser.php","hash":"8344ec897a8867014c30f771a63becaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSshSigningKeysForAuthenticatedUserTest.php","hash":"ba511d3bc20ff35aeabf135bf79d6644"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CreateSshSigningKeyForAuthenticatedUser.php","hash":"b778dc76d75fe0bf50a1fe350aed523e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CreateSshSigningKeyForAuthenticatedUser.php","hash":"7ffab53323c718098149cc6b5c41c85b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CreateSshSigningKeyForAuthenticatedUserTest.php","hash":"e7f214ef7a0e3e4419750a0f86f4a9b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetSshSigningKeyForAuthenticatedUser.php","hash":"409cbef465c7714cc52eccd4a05aae8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetSshSigningKeyForAuthenticatedUser.php","hash":"5b62ce40303a55f97b4e4d6838026a73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetSshSigningKeyForAuthenticatedUserTest.php","hash":"db947b3dd4d2eb05c7ddc47aab833e8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteSshSigningKeyForAuthenticatedUser.php","hash":"b165cd110f513b5cb01d636187b3e1d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteSshSigningKeyForAuthenticatedUser.php","hash":"08650a6bcdd648573892836c8beda3fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteSshSigningKeyForAuthenticatedUserTest.php","hash":"ace07a4355f916010e11d81a16e4d743"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReposStarredByAuthenticatedUser.php","hash":"a1171573134f8904d514847a3c9509a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReposStarredByAuthenticatedUser.php","hash":"bafeff7b8ec22b736ffd0ab8b57b2036"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReposStarredByAuthenticatedUserTest.php","hash":"43fac3de6c85b90e4ca8bfc0cef53f69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/CheckRepoIsStarredByAuthenticatedUser.php","hash":"3e50e1d894ebbf9f9d412fb7920b25a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/CheckRepoIsStarredByAuthenticatedUser.php","hash":"9d27c57631bbc3cb020f55e51ccea1f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/CheckRepoIsStarredByAuthenticatedUserTest.php","hash":"7ed395185caa4754a72f87826ad3a112"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/StarRepoForAuthenticatedUser.php","hash":"474621014fa28bda0ec2f5b28a31a8c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/StarRepoForAuthenticatedUser.php","hash":"1c228100549bff39027a3b35daf2df0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/StarRepoForAuthenticatedUserTest.php","hash":"eb5c2f651f667273f14cd1eaccf964eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/UnstarRepoForAuthenticatedUser.php","hash":"fd0410a61060728dcef9196b3712f585"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/UnstarRepoForAuthenticatedUser.php","hash":"12a21360e5391a136f0a4112003901bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/UnstarRepoForAuthenticatedUserTest.php","hash":"7f7c879fabad5cb4ec3f0085e509b2c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListWatchedReposForAuthenticatedUser.php","hash":"9fcb3f67d5535ade70e0f26be55f24cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListWatchedReposForAuthenticatedUser.php","hash":"4adee770181ddc721f08f16003afb59f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListWatchedReposForAuthenticatedUserTest.php","hash":"8416eff0f9c0955b87a971f02668b670"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListForAuthenticatedUser.php","hash":"26afa61d73f4b8a3fa3120b30f35c009"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListForAuthenticatedUser.php","hash":"20b16855b63e91a4789831d918a55fac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListForAuthenticatedUserTest.php","hash":"8c8620658b3de3c99ffd252637fabf74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/List_.php","hash":"0c0bfd23a7bbc5268956377ed42bd0e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/List_.php","hash":"edc3b431e3154fa697e395d93bcead39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/List_Test.php","hash":"41d565b0ced642db1aae6724df0b07b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetByUsername.php","hash":"414b576e21fc079b8f813806505ae3a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetByUsername.php","hash":"eeaf8b555dd587d05ec7e011b9532495"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetByUsernameTest.php","hash":"008358efffb1aad582158f9ad9ab7829"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForUser.php","hash":"ea446f76e0bed59a07978a43e153bba9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListDockerMigrationConflictingPackagesForUser.php","hash":"15fb51e5df2b1ee16852a42403e3b462"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForUserTest.php","hash":"646d4f4f698abc95837d584d2e057719"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListEventsForAuthenticatedUser.php","hash":"c8a4f51c16fca9605d28978cbce11372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListEventsForAuthenticatedUser.php","hash":"090dcf4d708c6b54c0359af6b5e2e130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListEventsForAuthenticatedUserTest.php","hash":"29408fd4b7e26d151a3efe823d7f8d46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListOrgEventsForAuthenticatedUser.php","hash":"20cd6e6e5648deaeee78518a633857b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListOrgEventsForAuthenticatedUser.php","hash":"f2791db2c52eeebfc1618fc7935535f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListOrgEventsForAuthenticatedUserTest.php","hash":"be8f6286c101a0d9d7e070d53bafff82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicEventsForUser.php","hash":"744a78e81dc6b5f45f46189b06931bc0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicEventsForUser.php","hash":"9edaa234f2dc0ace800261430e6e56a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicEventsForUserTest.php","hash":"c6289f785b7bca313926e7446715f891"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowersForUser.php","hash":"259d9b1be7d8d5f78d2d8d0c8d9f795f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowersForUser.php","hash":"2878fd3f3e04633840c0634c003a16de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowersForUserTest.php","hash":"80f7013e2d1891619416d69f7d8cddc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowingForUser.php","hash":"48b8231269fe2fb39c76117041c89de4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowingForUser.php","hash":"50374a3f68ad811d0858cd65862a2e8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowingForUserTest.php","hash":"c9dc2c40908ddd23c6ff1b81c90fd93f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CheckFollowingForUser.php","hash":"c93f7adee846ccced626a4e392b994f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CheckFollowingForUser.php","hash":"1598583e083aad63678612c1eb50295d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListForUser.php","hash":"3d78171580acea0b8c2affcc302c7d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListForUser.php","hash":"5cf801fdee87011c91e596d252daedaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListForUserTest.php","hash":"f27f34e0b5666913291d9c2401e783f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListGpgKeysForUser.php","hash":"da54ad7fa0db8580aada935b5181a86b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListGpgKeysForUser.php","hash":"5ad2e1d62493b8fae2075b8b7a82e673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListGpgKeysForUserTest.php","hash":"7cab286a05cb98b8c2e6484f0fa735a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetContextForUser.php","hash":"2f5c205003b3cd0d8aa6d8074f437b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetContextForUser.php","hash":"3780512837342a90c7933181a202144c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetContextForUserTest.php","hash":"706a4fad68dfe3c706907eff3b75d2e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetUserInstallation.php","hash":"b26cb77a45323e08fca4c579569a3b26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetUserInstallation.php","hash":"74e3fe422674ebef71e50366af962f55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetUserInstallationTest.php","hash":"46b7eae45f5a75aeb6598e8fbc7e2dd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListPublicKeysForUser.php","hash":"6ee92433bd895520e4423edd05adf97f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListPublicKeysForUser.php","hash":"37bc61e09820d2d942be48814310d345"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListPublicKeysForUserTest.php","hash":"b4898202d376e724764f22e320352960"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListForUser.php","hash":"d141cf23f6f5ec6df89243d25a326a50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListForUser.php","hash":"039dc1da94430127e3c5caef07e54aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListForUserTest.php","hash":"136d764e006bccd77db6992c11a92841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListPackagesForUser.php","hash":"cc25f4fd687c7c330eacd1c8eb9e37bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListPackagesForUser.php","hash":"fc3bbd81ffa67480083c475880ca8257"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListPackagesForUserTest.php","hash":"cae480051a0074a280b10f417f5e6cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageForUser.php","hash":"7bad0d6afaa89f338e9fe2dc468d2d7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageForUser.php","hash":"64f92bca02df7cc9bf2b46532f7c9f06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageForUserTest.php","hash":"b7e83a0ad14355b84df3ab44d0cfc1c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageForUser.php","hash":"7c0560b5bd0f5dd2402a0b6cefb92a15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageForUser.php","hash":"a89d41d8d17c3e4964d5b286dd4e20b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageForUserTest.php","hash":"ff266f407189761a5237209b591e7ad0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageForUser.php","hash":"a0de916e23852b8918d9a715da6dee4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageForUser.php","hash":"049fdbd50445eafa02a6699dccce9e02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageForUserTest.php","hash":"24b02d2742a2f15b1c025804306d93a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByUser.php","hash":"e01abdd26b6bca45f782be59a37b6055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetAllPackageVersionsForPackageOwnedByUser.php","hash":"0a26db115c4947169a3f31eecd18e1a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByUserTest.php","hash":"c346cf45f6bcd4990fb6ab8da46d33ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageVersionForUser.php","hash":"bc5129b8b74f8690376502cc83cf7ffe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageVersionForUser.php","hash":"149cb7f970aa78442f9a133990ea6064"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageVersionForUserTest.php","hash":"21ddadc5304849a4d4ce0a3afaedaa39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageVersionForUser.php","hash":"32d99364f4faf03461ca69835cdeaf94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageVersionForUser.php","hash":"0da376aacfc975bc8cf3522e1fd252a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageVersionForUserTest.php","hash":"055b363e7c270c12f7d40dfd760fb5e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageVersionForUser.php","hash":"8fa3712b188efb5dcdef36fa8a0c9f25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageVersionForUser.php","hash":"7aa6e437179db07553930ca3c4581aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageVersionForUserTest.php","hash":"4cde8f3d10fa0443fdd56860d7f5a1d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListForUser.php","hash":"7fd34a598c746ad791e4590c8fde194e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListForUser.php","hash":"4cb4c07792977d57ecf1c72de37c9102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListForUserTest.php","hash":"4e5d472cd4e976d59131f8869d289a33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReceivedEventsForUser.php","hash":"8232c604b7941d87711c10a9e29bc16b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReceivedEventsForUser.php","hash":"9e373c1cc43fd4c3b4d35982dc0038a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReceivedEventsForUserTest.php","hash":"b066757e634a7c1963456b2e7bd15889"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReceivedPublicEventsForUser.php","hash":"3b6fcc563f5e0aa25e1811a2721d69a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReceivedPublicEventsForUser.php","hash":"608cdddb57177c9c0b668a32ce2c8dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReceivedPublicEventsForUserTest.php","hash":"399f6eb760b15db4447da5a08b966f6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForUser.php","hash":"03cc157ae3ee8896413b64258e7fbc99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForUser.php","hash":"0ddf31b57f290016ed94c89f1054c0ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForUserTest.php","hash":"f2c7944d33432a433cb34dd97b110869"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubActionsBillingUser.php","hash":"a482d873524c5b035bc252baa7993e48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubActionsBillingUser.php","hash":"49be701f521e3a485e8998b6a1c1b011"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubActionsBillingUserTest.php","hash":"3262e648c3d4ff034a69d67953454f6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubPackagesBillingUser.php","hash":"0ebf3ba6220397ece713650ec4cb3dd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubPackagesBillingUser.php","hash":"3db52a2e90ec60c9e33396170ce53563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubPackagesBillingUserTest.php","hash":"f68af61f942df406c7f0b156a40d0c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetSharedStorageBillingUser.php","hash":"0322bfd5df62cade872b498e3c6b1ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetSharedStorageBillingUser.php","hash":"8797c7b7f3cc107a6bc2cb91f715a891"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetSharedStorageBillingUserTest.php","hash":"9586b3ced957ec266614d0dd43b6d087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSocialAccountsForUser.php","hash":"cb1fc2507bbec666f35adacaa1857b9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSocialAccountsForUser.php","hash":"86080af918c30ebcf03df76df83c3e6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSocialAccountsForUserTest.php","hash":"af59863a90304f763a957baa027318ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSshSigningKeysForUser.php","hash":"731958eaeca4fdc5b1c94c3b88683e6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSshSigningKeysForUser.php","hash":"726b03a5b0903791c06542aa5199bdb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSshSigningKeysForUserTest.php","hash":"38550bad956e5442e88de6f498a1f0e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReposStarredByUser.php","hash":"a42cd55615f5e458c271d7163537f21b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReposStarredByUser.php","hash":"e099e3429f8ea78776d9e8b37d4157dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReposStarredByUserTest.php","hash":"a498ccd3fa9294aea0c5a4b873437994"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReposWatchedByUser.php","hash":"d20d6229126a506fbe2daef465bca923"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReposWatchedByUser.php","hash":"99f9fb6e27e7caa940494fda170b55fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReposWatchedByUserTest.php","hash":"3ddf4980fa94f4ffacc49a5052888225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/GetAllVersions.php","hash":"e9de5849f6e38a0d40221d5f95598368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/GetAllVersions.php","hash":"e00f7bd6d8cbe5d33c44b33d903a3222"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetAllVersionsTest.php","hash":"4ce818409f47984def7ec339c728f907"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/GetZen.php","hash":"d2442d64433ce85284434762e204385a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/GetZen.php","hash":"b34692b706fa8432d14b068ce57806c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetZenTest.php","hash":"24bdf6e23810553a90002935a158c662"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Root.php","hash":"7815c742e296b5df8bed183c62486127"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleUser.php","hash":"97067a92ca8283cd802c1dda8f2bc420"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Integration.php","hash":"4634ba7ac8dd2352bfab506136ff80bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BasicError.php","hash":"aa63dcbe1c834d3e11db316261161fbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/BasicError.php","hash":"2a38eaeeaf370c545d5ab0f24ac51cfe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ValidationErrorSimple.php","hash":"9de475fc0fe5d675bc5519115703ce4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/ValidationErrorSimple.php","hash":"f986f2f11d21985d3af142e2e182d6b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigUrl.php","hash":"509aa169317eca4d5a787d16edf35456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigContentType.php","hash":"e0fc0fd4901dc6b7870f504fd20ee140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigSecret.php","hash":"3138d144cf05554990e30c6092e9ef5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigInsecureSsl.php","hash":"c41437a6371b8716d667e24c82e91251"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfig.php","hash":"a619ba6d938d457597d828910afdc372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDeliveryItem.php","hash":"95290fbb84cdbdc15ee70913a45c7a42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimError.php","hash":"7061c10cd7abaafb683960d6da2fb586"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/ScimError.php","hash":"0fb2438967e1f9afe83d53afb7f22d3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ValidationError.php","hash":"673e83611c1ec1c43834c05d61689c2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/ValidationError.php","hash":"8fe05003f301b199303f754586a178be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery.php","hash":"dce367a5a04339750dfe9861e58b3645"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Enterprise.php","hash":"acb449e4a333627e8c71e1306c74d948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IntegrationInstallationRequest.php","hash":"af1729ff83d62e75648bdd4983d303aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AppPermissions.php","hash":"720d495cfe2dddeb5e6e0e82e76399ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Installation.php","hash":"04af94482a94f5e5cdc4859adc0a3aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LicenseSimple.php","hash":"dedd71e8071a518e2f8f724f6b02b32d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository.php","hash":"05bb8f0d5a4eb0e4391d3375709dfbd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InstallationToken.php","hash":"5e64bae2607f48176b393f6f0eb2a92a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScopedInstallation.php","hash":"c179cfeeb736a355383a76080a74d6df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Authorization.php","hash":"eebfebf298156011c540d2ddef75d3a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeOfConduct.php","hash":"7787563c8e35223493147c81ce9ee043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics.php","hash":"fc5d8b0fc8db548e149fe5747c939799"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheUsageOrgEnterprise.php","hash":"140a9561c46ecb21ad3860efeee71677"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsOidcCustomIssuerPolicyForEnterprise.php","hash":"6d74017fe7205a8b15526122a88a30be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnabledOrganizations.php","hash":"fcabadea410b2d8eb095d986cfe52c9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AllowedActions.php","hash":"a95ea22acd76143dc0645a886276efa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SelectedActionsUrl.php","hash":"cf5e05beaf35c0846b633e4e8e0d278e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsEnterprisePermissions.php","hash":"0a71e71e75f9755c020470d65e3f5920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationSimple.php","hash":"bfd23fa41f9e7766979fe7183d2eb4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SelectedActions.php","hash":"6f20eefbebb3ea5749c55c6eaa2a8e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsDefaultWorkflowPermissions.php","hash":"07d5da9560880302bdf1c9eb34990aec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCanApprovePullRequestReviews.php","hash":"de864a259cc8ad79b9649c3da8cdc062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsGetDefaultWorkflowPermissions.php","hash":"febd147dad4e31adabd981bde397f1c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsSetDefaultWorkflowPermissions.php","hash":"2639c9d8c95a925befe4fea49916e8a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerGroupsEnterprise.php","hash":"c1ed67c4c7cf1e13d80ceed57fdfe02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerLabel.php","hash":"652a7992fec166e37d848adf6a8be126"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Runner.php","hash":"894a441c9e7961a0db41144b39ee7501"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerApplication.php","hash":"28606193f5f8bfdc64180429197f31ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuthenticationToken.php","hash":"f281913f055c0218585c9a2abc6b42ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementMessage.php","hash":"d57c6b9dd14585d70bf602cc233deff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementExpiration.php","hash":"13c9ef131c9d18c4ff7aa3ec4a6859cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementUserDismissible.php","hash":"a16ca0590af1cc030a3d33edd8d2ec30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementBanner.php","hash":"93aa1b1da9c85450146864728ff8e26d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Announcement.php","hash":"b318ffd23313c1a74d6caf37783820ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent.php","hash":"4c8ad3ee62cce417e7c164b8ebd25967"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisToolName.php","hash":"56f05d35eb6b1951c15ffa2884d94d01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisToolGuid.php","hash":"a7f67400272fc617b27ce4a70ab50c61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertState.php","hash":"641e079f9e9ef9a43583a1b607d83ce2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertNumber.php","hash":"9e6ccb705d1858c5b10ffcb316f6e366"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertCreatedAt.php","hash":"cda653373a48b9b1c20052e0f61f5293"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertUpdatedAt.php","hash":"9655423aeb443acc44f60e6fe72216eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertUrl.php","hash":"9314273d3946a80a40e0c8fd98cdce35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertHtmlUrl.php","hash":"ed8ff63f75fd85b54eda1fa2c40845ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertInstancesUrl.php","hash":"f01ea81db414b0030259b193165cd2e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertFixedAt.php","hash":"004f41b3e623aaa72bb687675f7e53f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertDismissedAt.php","hash":"b58617f335a8f10e2ec1594ab6b8f106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertDismissedReason.php","hash":"b4d41c8f28ad35930ba2f74788e26b5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertDismissedComment.php","hash":"faa25793efd075f2318df733c9aa990f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertRule.php","hash":"e7c89036ff31ad7f88e9d0275ecb8c6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisToolVersion.php","hash":"f20cb174c001a3ae16d4d38816f89fff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisTool.php","hash":"819c5c6e001dd50da387bd4a798a013c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningRef.php","hash":"2453e7f1c23b50328f75d36d64485d85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisAnalysisKey.php","hash":"d40f393110a0e258e8f10d4761a6197b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertEnvironment.php","hash":"5dea66eac8c85690d841a2398292da02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisCategory.php","hash":"2c9032d76456bd6265492bc3e25dab48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertLocation.php","hash":"eb4857594cbc63f0fbc9617dd5c5484a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertClassification.php","hash":"ef76eae311a87c202663cbefa0cd2db1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertInstance.php","hash":"b4f1c443cb8ca8732317fd8f25a2848f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleRepository.php","hash":"99bfb2b192f62661be54df5ff98c9972"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningOrganizationAlertItems.php","hash":"3131993dabe0fa9673bc946f19f75ca7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseSecurityAnalysisSettings.php","hash":"00284de9156fe7c0a4330e52d736b62a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetConsumedLicenses.php","hash":"39079b6c3898f6ab4e4e2c712681cb1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertPackage.php","hash":"8d7582685d55352ffc5ef071884e56c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityVulnerability.php","hash":"75899c2e389b5fbd1337145d3d210d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory.php","hash":"b0fe00b417ffd60c0b7e2d9dd8ffdb69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertAutoDismissedAt.php","hash":"76618a1a90b15ae86982f9865b03e5e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertWithRepository.php","hash":"c66a73ac778c62c68e63c42f62efa303"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetLicenseSyncStatus.php","hash":"8e4772a9fc17117429710483898c3e1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertState.php","hash":"538797773766ac2e587bbdb73875023d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertResolution.php","hash":"52ac23edb8a0df22f4b3421c3a7ec041"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationSecretScanningAlert.php","hash":"06627b56c95e2032616ed3bb2d621ef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsBillingUsage.php","hash":"5128774998d9c137a283ce97ecf6e483"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AdvancedSecurityActiveCommittersUser.php","hash":"37686737f1435db606480a5973d765c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AdvancedSecurityActiveCommittersRepository.php","hash":"5651cbcb3b5238126a7a47f4022fe0a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AdvancedSecurityActiveCommitters.php","hash":"a3063eee3e9fdda8838f2799a747e054"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackagesBillingUsage.php","hash":"ac1037fbd71eaba60950dba7e1fceb2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CombinedBillingUsage.php","hash":"843b8174dec9402efe50911125351410"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actor.php","hash":"161b9a1ca0d76aa4b2bf398db3558133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Milestone.php","hash":"33d8ddea784819bb881c842339bcf88d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuthorAssociation.php","hash":"5f4ac527563d8e2ef6d9a2066d386823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReactionRollup.php","hash":"f31728e500d4c5d0ad2e416c81080f74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issue.php","hash":"c1ef2c1860f426bc3157bd3107fec680"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueComment.php","hash":"5422a2579b27c2237ca224d8fded9b71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event.php","hash":"da85328a1a4e4e5f819950766ab1f343"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LinkWithType.php","hash":"3f84e69b489f9f7f915fa5eb683e0ecb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Feed.php","hash":"29dc6a0bae82b9b229e1931eb46570ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BaseGist.php","hash":"0336354a619ccca4017afde902b1e4e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PublicUser.php","hash":"c6b72f14f5e7d376f3d17ff8c6f0cc0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistHistory.php","hash":"da633b1d0333dd58a906f9c7112bb70e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple.php","hash":"07bc0e37e222dd4ee3b21f7a96a3f11c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistComment.php","hash":"6ef0308fa76fb9e60fdcd639d5f0a423"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistCommit.php","hash":"92f911a16c44455129ed6b0409cc317f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitignoreTemplate.php","hash":"8696658ed8dbdd8fdaf3cefb77edfeaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/License.php","hash":"ac1c01acbb859577a4db36d8b0d61f4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplaceListingPlan.php","hash":"2da604e99f1d55cc082eba20c2b1d2a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplacePurchase.php","hash":"7a512e5371bcfa22decfcecd285de573"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ApiOverview.php","hash":"9a15ef9e7f723786e7394a9437a3a43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis.php","hash":"ce692d4af27fe6f70540f2640761fbdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MinimalRepository.php","hash":"9b3c568b74971e717e0a692f45148c7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Thread.php","hash":"1a43483b5903669359081558e9abf465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ThreadSubscription.php","hash":"595721f753e417d3c6a617fc3120266b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationCustomRepositoryRole.php","hash":"a4c9f2a0e70de9d393d42e0c69e9f0ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest.php","hash":"6ab5161850525eed4994999056ae0c97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant.php","hash":"500bfaae1281630b73394fb3fca4a73f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationFull.php","hash":"269143d13f6474f7d2267d114a2fb43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheUsageByRepository.php","hash":"3708faec7074d3e6cebf406aeba2df22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OidcCustomSub.php","hash":"9baca382f638dc63fdcdf6dfb91b586e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EmptyObject.php","hash":"0afaab96039b7b3256522a02d59b6abf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnabledRepositories.php","hash":"2130641041b3fe2306ea8f8c752cdb40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsOrganizationPermissions.php","hash":"0473d780a3e33d5f38449dd5e7d94b9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerGroupsOrg.php","hash":"10b907990783a9edb946157739b974f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationActionsSecret.php","hash":"2a31f76225874ccea212b65e476b8315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsPublicKey.php","hash":"6fe2f4dc1d0b73bef75b72d63a0fb317"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationActionsVariable.php","hash":"5e35d8f9560d8f99de7dc35bd0604284"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertSeverity.php","hash":"a04db092d652b910cfc81a9b64ca7048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceMachine.php","hash":"a8c0e02eefaea53be841ae15cf353aa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespace.php","hash":"b3253728c3c8196501b1f814f53179f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesOrgSecret.php","hash":"def564753f360c8ffea03784f23eb838"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesPublicKey.php","hash":"b9b792dbd257f43c1e6bea02467bbdd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CredentialAuthorization.php","hash":"a014b419aab2ca7dc21ecd44ae8b6eca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationCustomRepositoryRoleCreateSchema.php","hash":"9bfba7a0e7870c750c82c469a5626096"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationCustomRepositoryRoleUpdateSchema.php","hash":"1014db020e538a16de8411463361eb94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationDependabotSecret.php","hash":"dd6ec985f7829310fbe13b778e2d1927"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotPublicKey.php","hash":"e3bde574645b293c942e8706c01ece1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Package.php","hash":"67c413ba390256f1857ae5357f2908be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroup.php","hash":"bfc3e2e41383d59d67681da4516b5cfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroups.php","hash":"bdc29fae0583e0afe0f08e26f24d1548"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationInvitation.php","hash":"249d9bd39fb7280523df365b183b17c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryFineGrainedPermission.php","hash":"2396d01d0675b7b4a20e19b7f6737ad3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgHook.php","hash":"6fb06d47dd35e055dad5b6088919c4e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionGroup.php","hash":"6b1894cb53b9a2a159a736ee3fa525c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionLimitResponse.php","hash":"526c5e89365e617735c278aed6bd3197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionExpiry.php","hash":"cd5cc8a5ee3a7e835b29921047468205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionLimit.php","hash":"ab3c337619efbd49b9944d7563c42ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamSimple.php","hash":"0fecb654b0363185ff078621edebdcc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Team.php","hash":"b92391279e2914398b8c4b45a93f019f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgMembership.php","hash":"596ec4e3f99e30b13ab6e5e77dd34870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migration.php","hash":"291c05472c441bce59fec90210c49d42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion.php","hash":"09dbfa01c87bd90c3fee7e5945b04dd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Project.php","hash":"57b50c638bd52851b5597f657f5fa056"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleEnforcement.php","hash":"e98b13654a13e86cb23344dafd054fe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetBypassActor.php","hash":"2926813c89b200bead7e250db5637ebe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditions.php","hash":"749c5c4deb9e010cd4b2ae424cf6001f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryNameTarget.php","hash":"79fb99d6ab7fe07d127e6143d1e45825"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgRulesetConditions.php","hash":"4c2aa03c1bbcc5d3f79196f924483742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCreation.php","hash":"5573980ac8ee619510d39e360cdb86fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleUpdate.php","hash":"db100e9779bf348c6a3cfb12b22ffc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleDeletion.php","hash":"c314cd4310b3e8d89324ee409c951ae6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredLinearHistory.php","hash":"3c26fa2f382ab85eada7b9b78e08622c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredDeployments.php","hash":"7a4f54259ed40783cbbcaa82dd84201e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredSignatures.php","hash":"fc1a7258e1aa6ba31ec6b32118524ab9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulePullRequest.php","hash":"830d24b3fde587c9984c7c2e801b02f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleParamsStatusCheckConfiguration.php","hash":"376d7df23f057fe1c76bdeaf94495b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredStatusChecks.php","hash":"11ba0aa6574c6048976363e9e92262a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleNonFastForward.php","hash":"0bcadcc815fd633fff8bb36d67b020b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitMessagePattern.php","hash":"9b50a2e5ab85ff3b881274901e8a1278"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitAuthorEmailPattern.php","hash":"a96233b7e95842bba3ba334273bd96d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitterEmailPattern.php","hash":"204ec864bf217f4ed254e985ccd88238"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleBranchNamePattern.php","hash":"a39cfd1f282c3ba8e964a148992c4413"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleTagNamePattern.php","hash":"8c9b1f9eb4b3ecd7549142d6315b06d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRule.php","hash":"a6d7a4073f60eae928a4ab2f4dc443fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset.php","hash":"7f5b19291f532ed2df7ee12b22eb8937"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GroupMapping.php","hash":"8cb907fd3639122be24048dc00d94bf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamOrganization.php","hash":"e59b280191010571557a2e9ca0bf4f00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamFull.php","hash":"cd2003ed21baa78756a5b6be9f2e7d66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamDiscussion.php","hash":"d64fdcf6d16942ec99f5b58bb4d6a96d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamDiscussionComment.php","hash":"0c6c5199383b291ecaf794c41f428155"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reaction.php","hash":"5b08f79cc0fd494ecb98caedd26462a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamMembership.php","hash":"f4bfa53c0358680006a8f2e9699a5d35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamProject.php","hash":"6883f937ab6a6cdc34d4bc18ab1ef1ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamRepository.php","hash":"110c44923c5e80eca18077be4a35e35b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectCard.php","hash":"50a4e26f96b29d6cdce9f2619e3718d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectColumn.php","hash":"8c1b46a42ed0555c171197166b1d2a28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectCollaboratorPermission.php","hash":"6520cd3057094a1bf91cc3562050767f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RateLimit.php","hash":"3d0fae3d5f9d4a183f09ed4e7d1ca8bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RateLimitOverview.php","hash":"9635f6236f4d1193ed698acbf18c027c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage.php","hash":"22b175623b9e2d31d391293c2bb585d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeOfConductSimple.php","hash":"9c55dfaee56966e6e7ac555e662e2851"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FullRepository.php","hash":"d8be661a891c23e27c483e335c9c60c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Artifact.php","hash":"2d1e84f7ff3fee78a28b5469bad6ebd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheList.php","hash":"32cfbf4329a7f1c418ef9cdf50971722"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Job.php","hash":"bb4983571f0211c3256f428e11920583"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OidcCustomSubRepo.php","hash":"ac43e72f795517773a4f55f667a406a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsSecret.php","hash":"6d00117784cb7fa5ff48636e41a609f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsVariable.php","hash":"5c55f0eea7289ea96153250fcf59e041"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsEnabled.php","hash":"8df5cb3f66fa835755503d2e92d243ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsRepositoryPermissions.php","hash":"d9df9623c9c634dd10acece47b83521b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsWorkflowAccessToRepository.php","hash":"08759416023b0ba280fcdaf41343f73b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReferencedWorkflow.php","hash":"cd0b078d830668cb6dea2f5baf3bb567"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal.php","hash":"b0be1b24b93b2b868027a7b0284b88d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommit.php","hash":"e12525a3fd1c8a30233f1a456d3a8f2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRun.php","hash":"750a2ed29892f72d84533312f72b84af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnvironmentApprovals.php","hash":"4dd7b42e19768fc0f6d07067299a02fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewCustomGatesCommentRequired.php","hash":"bb65a89cd7b72ca1a36861abe86101df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewCustomGatesStateRequired.php","hash":"5fa8a8c7e963ca5c24afe61edb70d442"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentReviewerType.php","hash":"d713320a2fa3c5106ba04cec61c9ad9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PendingDeployment.php","hash":"ad8b5630410300c5a9342a6420d48912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Deployment.php","hash":"bbc1c6cc889eb541e821214b8150e2b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage.php","hash":"9f818bc6fb0fd971e0d609195e0ff6c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Workflow.php","hash":"25fda60273357613096cf4ee30058908"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Autolink.php","hash":"42958a51783ad0a1ce913d964433748b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchRequiredStatusCheck.php","hash":"c4c1cc7cb5c68a1e45d9112baa23c775"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchAdminEnforced.php","hash":"bc15fad673052025c1d3d94c47f32bf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchPullRequestReview.php","hash":"4ece260253a3f07db7be79acf39850b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy.php","hash":"c1f53f8c2e9302dd47a5a918089fa8e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection.php","hash":"b8a1ae9e1e286c4203c994859fc291ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ShortBranch.php","hash":"799cd716768077d6c92897a80ae02a73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitUser.php","hash":"0a9a3ab0a16fca81527d9e4dfad11e4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Verification.php","hash":"1723a47bc2858972d72a41fb095ed8ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DiffEntry.php","hash":"482b4092a21eacac42693ad42d8ac374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit.php","hash":"a28c2715a2d62bfdfb873649d91308a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchWithProtection.php","hash":"d9a5b40c682eb4bd382362f5d9f12e2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StatusCheckPolicy.php","hash":"4c8db03a82fc8318f7940cb7856a7ce7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch.php","hash":"415b2cf3208c4e9dd5bdf73637947f73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentSimple.php","hash":"114f7fe433afd0df92c2fba2e51d3a80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRun.php","hash":"297219960dde42cf76d95cfdd6660b0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckAnnotation.php","hash":"b3caf6a3055e4fdad9939e99955d24f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuite.php","hash":"6f7f06231174651aff5036421b03e0b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuitePreference.php","hash":"1dba4d52d6f5d2d9d3065723b95d830c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertRuleSummary.php","hash":"d2a51afb74050ad6a859f8d63c41e0d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertItems.php","hash":"5bb01bec0ed41a3d2667f1219843ba2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlert.php","hash":"aa84f4c34a5d74c95aeb8e8a71e26ad5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertSetState.php","hash":"73e7283b35c502d69335ac3f5a003606"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisSarifId.php","hash":"76461f9aa75ac16ce58ad11b80060055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisCommitSha.php","hash":"4c0bad1dc9d7b3b83a2963c5b0755905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisEnvironment.php","hash":"bb7aee58cb525d99c8f7b519e7484336"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisCreatedAt.php","hash":"77e6838d99bdd190aff7aa6c93adcb47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisUrl.php","hash":"c359aadb45f51a9e5513718fc2a661bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysis.php","hash":"c73f8f9fbd4be66821dc574e3b9c986a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisDeletion.php","hash":"4fc02a8ee1e2d738ac47cff81fe10cfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningCodeqlDatabase.php","hash":"d6d550e52cfd98f9cf21b8c359675aad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningDefaultSetup.php","hash":"8e9bc4b227b97089f29644bc3a800956"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningDefaultSetupUpdate.php","hash":"272088a385d7224e5ee190f780f3c69f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningDefaultSetupUpdateResponse.php","hash":"8a2b6fe321778b50f22c87397abfd7bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisSarifFile.php","hash":"509ad599d15730bacfc1604ded9dfc13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningSarifsReceipt.php","hash":"8ddaaa212ab10fe2d5c1a5b997d20d8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningSarifsStatus.php","hash":"7e6e860130e0808897bdc8f323f50818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeownersErrors.php","hash":"be74f5573b31d245340df5200aeb1d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepoCodespacesSecret.php","hash":"8696a118bc6ab0b7e300c8d9be68d1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Collaborator.php","hash":"1fca90ebc74bcec5eb545f927f855661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryInvitation.php","hash":"59f7d227188a41699ac68e1c511dbb1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryCollaboratorPermission.php","hash":"29ef770954368e606c020c022e4a720c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitComment.php","hash":"0152ad373e40f86ece5d11b211b3fdeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchShort.php","hash":"3325f7d7d86242916722cc89b2216f75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Link.php","hash":"4409d14c1d3a572c5caf81514f23d47a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AutoMerge.php","hash":"adc3b5bfa57ee37ccd64b19fd6f6ccb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple.php","hash":"47d48a44d28b1764cb3c44144b864610"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommitStatus.php","hash":"ad2428fa264db96ca62f16063949efc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CombinedCommitStatus.php","hash":"d781d7cf71f1dbe1b71ac565150d7e65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Status.php","hash":"5b82c16ec8b520e29f318eda3548f495"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommunityHealthFile.php","hash":"29ef74ab265986195bfb9ed668f099df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommunityProfile.php","hash":"4a79d5b70cdacf1022aa5e260954cf19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitComparison.php","hash":"9dfb4560ff0478af8b37b83493a59424"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree.php","hash":"84c0b1da73fcae73bd8de417eadaf7c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentDirectory.php","hash":"7537e5c7e08fb6273153cfb8a6f3863e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentFile.php","hash":"8c5bece4b998fbae200419242a13434c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSymlink.php","hash":"2ca30c54d5ba0029b1ec433ad0c2f543"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSubmodule.php","hash":"00ab88b0b76a8ecbc0a4e78405eb3fc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit.php","hash":"f634089d1a319a22ab3480abe7d75d33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Contributor.php","hash":"f3c09ba9d39a9eeab7d4ef4c6d219daf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlert.php","hash":"1e6181bd67b1248c530442263cb515d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotSecret.php","hash":"7156fdd16b36b7f37fbd2e2e250a1a3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphDiff.php","hash":"1d9ca9079d2c8405f31723472704b4ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom.php","hash":"2ce321e1cee10d9d9a9b73ec82539666"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Metadata.php","hash":"19673a7a5fff703421d0f2b5d798f47c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependency.php","hash":"1fcae6e4d4b6db2daf4e2106b47acc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Manifest.php","hash":"491179a3594498d1bfbf0c07d1b106b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot.php","hash":"475294a2182811c51355d37fc272286a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentStatus.php","hash":"89988be75186320e2067fddb53b5fbad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WaitTimer.php","hash":"542fd179ee3e6b105d86c248d92da2e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentBranchPolicySettings.php","hash":"fa258b447bc8b44d48ff827698362e6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment.php","hash":"419fe2049f9028b1b07465ba6055dee3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentBranchPolicy.php","hash":"d5190cca257b64fa814edd41bf461fd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentBranchPolicyNamePattern.php","hash":"7d28b57f93ffeaba4c33c603d00f5917"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CustomDeploymentRuleApp.php","hash":"1ce8335e7004351558e7dac527fdb524"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentProtectionRule.php","hash":"50423af392b322df00666bb533df07f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ShortBlob.php","hash":"a335beaf564e47f98bf851c697f29e78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Blob.php","hash":"528932a7eeca3b246ac204d7f42e9650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit.php","hash":"794f3e4796f86471d4999b373b57e894"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitRef.php","hash":"2e4d8714382295da5ecf81ed3da98fdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTag.php","hash":"371994de2f8e7d44cc8a80d898c46c51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTree.php","hash":"a1878ab6496ae82777b3731f9f09f78a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookResponse.php","hash":"b896386d1b0e6653ec9a5cb2dc006628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hook.php","hash":"99dbbc453271054f81687978556ef18f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Import.php","hash":"26b42787b67eadda51fdbeb0efba7574"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PorterAuthor.php","hash":"0d53dd5e9243a9d62b41e60bcc432941"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PorterLargeFile.php","hash":"11ffe643172ffc0d1adc31cb554c0278"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventLabel.php","hash":"bab2314131e650981f017688ce0792dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventDismissedReview.php","hash":"0cef15152413aa2dc05687abe0c63465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventMilestone.php","hash":"60346290ab0e575befe34b5c514845e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventProjectCard.php","hash":"3e84970a4c039c8a33fb0c2f2b6f008a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventRename.php","hash":"d03c0a05cc1efae07eb94ba982fcc32d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEvent.php","hash":"bff42a7a79d738527d0c4913a62ed230"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LabeledIssueEvent.php","hash":"7bbec20ba8206f820d515e277ebc0eb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UnlabeledIssueEvent.php","hash":"6c0947812ec23ffcf67264089102695a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AssignedIssueEvent.php","hash":"0d00aa773d5297ef35cbf188409c06a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UnassignedIssueEvent.php","hash":"6453f9f4eaa2fb9b9ca9c85de89923d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MilestonedIssueEvent.php","hash":"3d50e419246d9736584049a41d57e013"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DemilestonedIssueEvent.php","hash":"f333e6cfdaf039ae8665bd99515f29fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RenamedIssueEvent.php","hash":"9ddf9ee35af0f217cae65e4e90546eba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewRequestedIssueEvent.php","hash":"0cf0190c40fac380c1ae9f0b63b169e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewRequestRemovedIssueEvent.php","hash":"c04c3c71e9b9155e9311a534d634e25c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewDismissedIssueEvent.php","hash":"3094afdccabd10f493e4fb783263d157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LockedIssueEvent.php","hash":"d42923180cb828323e95dccd084b935e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AddedToProjectIssueEvent.php","hash":"f1860a59987ded4bc8dc1441a612f8c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MovedColumnInProjectIssueEvent.php","hash":"7fa98120c432bf820990cc04964c34a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RemovedFromProjectIssueEvent.php","hash":"c336a0b77b6f35bef09434b35c47adb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ConvertedNoteToIssueIssueEvent.php","hash":"d888dc671c71398d83211cb3da1b6fc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventForIssue.php","hash":"914a0f39aff1d9f9aa9513849389058e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Label.php","hash":"19ea4928b9d97d1e55bc1bae3c6f1841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommentEvent.php","hash":"2339ab104dd6e0cb636c36ee19c29536"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCrossReferencedEvent.php","hash":"38744e5d5a81d53af1552fc935b0b065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent.php","hash":"438b5e15c3a4eee6ef8644e79f99a3ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent.php","hash":"59909a79e09ed0184db664d60bb4c525"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment.php","hash":"7cca22bc038539f7fb8e5b74da1fed7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineLineCommentedEvent.php","hash":"a7434674d4c99500377a460a8ac91957"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommitCommentedEvent.php","hash":"4204c1ae3be947c61f4024e89cfd7083"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineAssignedIssueEvent.php","hash":"ec1013db7b24ad04915e2f81beb5d9e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineUnassignedIssueEvent.php","hash":"80063e4f4151a0426fa132f3ea23239b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StateChangeIssueEvent.php","hash":"16b3cd04c530d45ca06d9c149028d6bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineIssueEvents.php","hash":"1ed35fe116d4a3ff36e08e4b37f7e9c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeployKey.php","hash":"8fc832bbc9871e007c364bdadc7db3bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Language.php","hash":"8b4d8c3db8565f791375cf4f92c23e9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LicenseContent.php","hash":"ea6cca697b7528795b04842d27bd9048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MergedUpstream.php","hash":"c2ab8dbdb41432485a322d8dc99f4124"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesSourceHash.php","hash":"f8594e222c2581d342f623687f44c75f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHttpsCertificate.php","hash":"fe20446d6ab3ed5c4b4f887b8972b741"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Page.php","hash":"3cfc3e38c60c226f20deac4ccf954fa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageBuild.php","hash":"1dfe1f057bb38ea5fe99e01adf61b562"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageBuildStatus.php","hash":"2ac12d28f52380e6d2005496d1067c0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageDeployment.php","hash":"3a44236be17ec7ec243a563044f6e8ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHealthCheck.php","hash":"ca4c5f9f70b496ef366dc1717e6615ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest.php","hash":"47993e664bc9f2b3b33fb82e753aadfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMergeResult.php","hash":"c8db50edf436969c23a572959cb7da81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewRequest.php","hash":"4a425ab626e593dd787a6f951cb82258"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview.php","hash":"32588cfd5cc54112ae429bff24342729"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewComment.php","hash":"37693e2d1ed070749f797706ad57f304"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReleaseAsset.php","hash":"46605c483a502bf4a3e6ac6c734dc430"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Release.php","hash":"670a847a295466b44076dd0e48e6cedc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReleaseNotesContent.php","hash":"8e2eed828411896774f9586db99d91e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlert.php","hash":"dffdfff10380909bfb551182cd4c849b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertResolutionComment.php","hash":"92c31f3445608780346dc1b5b86d8be8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationCommit.php","hash":"68ed39e6351ed027813ce8f694a0f5b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationIssueTitle.php","hash":"dcb5e7fd8557f10821a48501bbe062ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationIssueBody.php","hash":"0d633d388fc1681085352c20c4b622c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationIssueComment.php","hash":"4d1836323480d2e134cefa7870e3da50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocation.php","hash":"a5d817cd418e86b2ec3d2ca5a57b172b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAdvisoryEcosystems.php","hash":"17345792f2cfb799b76b6c370fbe8ee0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryVulnerability.php","hash":"7e053cc2323b339612a73f1a2d186811"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAdvisoryCreditTypes.php","hash":"fb669e69aebcde6dfcb3781c1bc52e09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCredit.php","hash":"19b94914b18bba81083910d4b62b85ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory.php","hash":"f3c0182120a1908e94b96a25b715017b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate.php","hash":"b9b4915d26a50fd3fff8670fca739930"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateVulnerabilityReportCreate.php","hash":"048cc2aa7a026af374cda7d3bff40d3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate.php","hash":"5ef2c8bc65efdd668d422c2f43a9d1b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Stargazer.php","hash":"46dd1cdd0faea2f6dd4db2e1c3e49f50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeFrequencyStat.php","hash":"e74ff80883793ee8cbb1fea16fb12370"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitActivity.php","hash":"7e9c2c08950b6ca19d5e13e6b0d73175"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContributorActivity.php","hash":"5baca83ff106d60a9c8864b84694037e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ParticipationStats.php","hash":"28b434bb7cb6e45e21a2925f9d21f848"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositorySubscription.php","hash":"d8f9301be43d688cbf0a4f92e8a018fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Tag.php","hash":"a5cc2fe191a5d214fd922071e4da6574"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TagProtection.php","hash":"66fff940c11b689c4f7bd05be56340ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Topic.php","hash":"89783d183566ed82f1b6a874255ff21b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Traffic.php","hash":"73f6a9e8ded144ef999e44379e0b85de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CloneTraffic.php","hash":"e33a859ccb5643526031891121ec3f12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTraffic.php","hash":"292dad2402724366621d9f5f7d96e74d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReferrerTraffic.php","hash":"83e73ee071a706aeed5192e576551b6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ViewTraffic.php","hash":"77bf09d0b79e73ce30cb1ada007b3136"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser.php","hash":"8cd6b76ee1325caaba1abb2013cbe4d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUserList.php","hash":"32c6f4efaf74a483ac15bce528ddae81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SearchResultTextMatches.php","hash":"27bbed1d49fd6708527cf0cb7f2ee1d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeSearchResultItem.php","hash":"0b2d2e7b0fee91eab23cca307aa9d8c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem.php","hash":"723c4bd1e501730640711e23a11aa0e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueSearchResultItem.php","hash":"36f7eafa40ac4c594247983ad303263a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LabelSearchResultItem.php","hash":"e47c15a5303fccafd8c3107478e03d5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepoSearchResultItem.php","hash":"6563a5f40373dba50542af8019715b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem.php","hash":"f26f84830eca470f97a52548855ad6f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UserSearchResultItem.php","hash":"0b2170be089b8d9183f11ff10ad4c512"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateUser.php","hash":"aabfa3f9965cf076a181594e3ef278ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesSecret.php","hash":"08be67604edad45fae217f8363a077e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesUserPublicKey.php","hash":"c7efaedf26aec60158724f9cd73f5c29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceExportDetails.php","hash":"6dc140a6e7fbbbd8715118cb05a78749"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceWithFullRepository.php","hash":"2306c6e64c17fc371e82eec55f50ac55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Email.php","hash":"d12330722f707ab4dcf0744292e75478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey.php","hash":"c4bd8c06cda563121c688e24f747e49e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Key.php","hash":"8f6fa0be17cac8777ffbb98bbb41e6f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplaceAccount.php","hash":"b8727e76268a238fb3277dacda204db9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UserMarketplacePurchase.php","hash":"77d779a0dc6afa4f03ad2b414b297ff5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SocialAccount.php","hash":"47ad83d0e3271de4dcc9928be1617c88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SshSigningKey.php","hash":"09b634aca186f940a8e6e887570a57e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StarredRepository.php","hash":"f79f0f9d4c9e2ab599f23f65b034ff0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hovercard.php","hash":"187b0478b2bb3fb40f48bdca87cd24fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/KeySimple.php","hash":"bf9f505d2718c1e7e0668420e3ea099d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleInstallation.php","hash":"9c2c9f40e696592ae8fa0d3c00466211"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCheckSuite.php","hash":"8fb1048cd6544792dab56893f9b98fc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRunWithSimpleCheckSuite.php","hash":"573887106ccec70cda7bb3d40f73cb66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion.php","hash":"ff74c312065c57e07cb3ad6243844be2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MergeGroup.php","hash":"707f71cbcd4f5ca1acb09930b2937ca0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest.php","hash":"5705251b5c18a57cefa31a9a6ec06c17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectsV2.php","hash":"f0169ef4f859afdcbc12a0b54a7366f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectsV2ItemContentType.php","hash":"c7e040e46445d63fe90eff09c0a58bf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectsV2Item.php","hash":"7f8381239bd226423c1b8ccedd2c1935"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleCreated.php","hash":"e53f9b2f7e13e4b840702d6b5411ccbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleDeleted.php","hash":"cc91132b6a0d1652a41aca7597fe9309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited.php","hash":"c6df5e122735b808ed3e4a63c46d650f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCompleted.php","hash":"25d31766764cce467331ec1ad1f5c428"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCompletedFormEncoded.php","hash":"23531e2b404005d0027e0e8b231d658a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCreated.php","hash":"9e0acc32b40a3de0d7a1b5c00cf9890d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCreatedFormEncoded.php","hash":"883d3ee94896ccaf9afc5e3c2f12b7ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRequestedAction.php","hash":"9e99f6a4651137e882e73090dced845a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRequestedActionFormEncoded.php","hash":"144c052c61a9c963eb483d496b26c774"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRerequested.php","hash":"323090b9f2553f1c2bfd267374eceb6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRerequestedFormEncoded.php","hash":"ac82344810a5703689e89dba1bac7a9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted.php","hash":"0f20ef26c9ec825fa9e9157df0a4855d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested.php","hash":"6f5d4911d3018ff171f5ad852400a29c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested.php","hash":"8df28b6df206aa604a1f8e8bad397475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch.php","hash":"981ad9ea69c6ff5550763fbc0954dd46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser.php","hash":"a91ec77448a0c682a3d12493506a9c24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated.php","hash":"ad0864ca34d01a1cbda0f6aa9a740b33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed.php","hash":"42f294b50888f911a2e90ec7ad089a98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened.php","hash":"1d0b9dfc69ec583ee379048dd3fa658d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser.php","hash":"a1f031b45db37f74b0e4b1369a9030df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated.php","hash":"a7fb14d2b6bceff9b01a384e1bb26601"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCreate.php","hash":"027e37580e5e5028b9bf4d662fa45eb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDelete.php","hash":"18a53daca66ebbc541d33edfbdb8690c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertAutoDismissed.php","hash":"0dbbdd065e08940fc4fdd2fde9462ff8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertAutoReopened.php","hash":"baaec87db9023d556b83b02b94c0d339"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertCreated.php","hash":"1f0fc6ac5c96effcb498367e96e200e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertDismissed.php","hash":"b02d7f085c6485b5f49a183bced3b49e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertFixed.php","hash":"588e969698ce2230f588e6460c00ddb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertReintroduced.php","hash":"6e3bce3e3d7c85a926aa387252ebef18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertReopened.php","hash":"b0ad5b56a845779c72ae427923f80cb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyCreated.php","hash":"61895fb5d377736e0f2dcb7cede8172f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyDeleted.php","hash":"fee7bf2e201578e336f448b102ccac6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated.php","hash":"6f193550e454666000f7d6ff98120134"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentProtectionRuleRequested.php","hash":"2a8903713b25fe20acbcf1c20de85200"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated.php","hash":"f1615c5a0c6eba591a6a79fac2085ddb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered.php","hash":"cab26e93e9a1391e6728940cbd92f5f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged.php","hash":"ac1578f999ba654035d8d7c4ab0a28f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionClosed.php","hash":"8e7f7eb85cca80041bce7e9e8fc40339"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated.php","hash":"b73b09155f35a26241fb8db6a7271ff1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted.php","hash":"e35316b50227aae99d92b227b2ff6437"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited.php","hash":"3c151a881d179b0a6b8065619e118d3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated.php","hash":"b22f2618b807024d9d5eb5921dfb11ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionDeleted.php","hash":"b073816d59cdd9125493d7b7daa16151"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited.php","hash":"b46b9e551857af1705c2f3eae85a6a40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionLabeled.php","hash":"d1658d09c9f13721bcc92466550da2a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionLocked.php","hash":"d499de5b9e1fdf624f24d62f2f570eec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionPinned.php","hash":"e1d2f06a5c935fcfb456e0cfda2ae448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionReopened.php","hash":"30f889138c09dd1e57e5808f93b369f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionTransferred.php","hash":"186b6f7e4d4c09e318673e1ef30fd7c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered.php","hash":"d79396efed37c58699ef6cafba6b43f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnlabeled.php","hash":"310341b202b7ea6ae4beb5ddfb39339a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnlocked.php","hash":"db098c7770e7a6aa449cdff56163eeec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnpinned.php","hash":"4c5942a1347bf3f612814d4b65f72e2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork.php","hash":"70f467f1a63909be30fa29c45af4c6ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookGithubAppAuthorizationRevoked.php","hash":"210eceb23897813b38128bbf8551f273"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookGollum.php","hash":"b7f862e6efcb996207813905e14082a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationCreated.php","hash":"c009b604e933169dd6716a40b83a70a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationDeleted.php","hash":"51d2a8e8c1d36eb5d0162b6a97e5ceb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationNewPermissionsAccepted.php","hash":"5ce7353372e17853583d29a8c915dedd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded.php","hash":"440026d3260e2b9236f54f207441b9a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved.php","hash":"26d7589d33eb2060d179d2d8b4d38561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationSuspend.php","hash":"be76bdbfe5aa62c21e008677b65342dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed.php","hash":"204945541bb178059f48ec871f34ddd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationUnsuspend.php","hash":"15dc8a1ad0ae75975352f0b998057ae1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated.php","hash":"8205bcfbec3aa09d19e6eaa35031b4f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted.php","hash":"46d50128379486ed3aed442f2cfff982"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited.php","hash":"ff9c9b40b90876bdeeed6746b7f834a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned.php","hash":"ec84826fa36ca8bc1c1d132f684a2b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed.php","hash":"ff8ad07630984590f5ff8067b869cd1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted.php","hash":"c736ffb2de061314acc3061980441478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned.php","hash":"3fb77b7edbfc7d055bc3b49aa5176aa6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited.php","hash":"0617603ccbca9d22c5b23ed6bfba00f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled.php","hash":"8b0437d48f7cb7cafa838168df4e5801"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked.php","hash":"bc500eaa9db8ac554959ff252ec9f4c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned.php","hash":"c811323eb57081b41c81aa7f1536a5cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened.php","hash":"ce54c8323cc92760e28556a7e9953faf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned.php","hash":"e774f3c8ce8979582b040b2dea2402d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened.php","hash":"7eb180817752918836fff77ea0dac14f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred.php","hash":"9f46269ae937565a1b21e2ee914658cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned.php","hash":"950fc652442ea2e51d55de545c8b8efa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled.php","hash":"a45138bf4f2aa56c11b29abb15bebf40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked.php","hash":"7325b9d62d4897441ab3f438aa36240b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned.php","hash":"5e710775e29be67ee9aa2d5ade42f8f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelCreated.php","hash":"cbb1f52b418bb740d444aea379a3d57d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelDeleted.php","hash":"29dd3a969a674a4909e55b001a2761ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited.php","hash":"e8d6cfebf95cedba8825e113d706f5c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled.php","hash":"02171ba6c052c1d3ad30d149437df7c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged.php","hash":"0ccc29f21162a28897f1f298e5d55932"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange.php","hash":"ebd96dc112e94bd8a84e3df3fd384aa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled.php","hash":"bb85e7d52818dc60de8518f5ea26ece4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased.php","hash":"da6e7613e2b5534d670fbcb32ad17b3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded.php","hash":"f6a7a615b901fff954470c94c43d77e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited.php","hash":"a76dc579ac2830023e186d18b39ac0e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberRemoved.php","hash":"693dc61c77816649e2e5193eaf4dd71f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded.php","hash":"eeaae6a73942838184423d8f6e2840eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved.php","hash":"ac3331c180122fa771edf8c5e245a764"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeGroupChecksRequested.php","hash":"825b41dc3999ed9d5ba5ee0ccefa3561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeGroupDestroyed.php","hash":"13c296f292618a069f6d6c6c597a6830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMetaDeleted.php","hash":"44c267ac8951cefcfad1c51059d1ffc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneClosed.php","hash":"46e2f5af129422e524382891e9d6b700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneCreated.php","hash":"a4de123bebfef8b23ae5490cae13e464"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneDeleted.php","hash":"e60076e8ccb13db41b659cf3f68c1b25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited.php","hash":"eb4371478ade88ddc09b2df046d206e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneOpened.php","hash":"769d9b4386b867724f070c1ff982660c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockBlocked.php","hash":"1804b0dc926e1bf4689e3e45ff78b478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockUnblocked.php","hash":"4d2edd523ab9bab610eaea795cd19af8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationDeleted.php","hash":"f2df3778e0426be043b405de00151170"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberAdded.php","hash":"b5c1e8e0755a5c5c5cc3afe81a91b9f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited.php","hash":"36ca14ac2d79a105fa2bf23ccfebdede"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberRemoved.php","hash":"82ac71a43228b6d6d8f41f1386e09104"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed.php","hash":"6ae5f8b5a23f6e1b0dccd1dd61ad3da0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata.php","hash":"ac800ce7404767d8590bbf08e2f5c479"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished.php","hash":"3bd1facfa0976204ce9d2ebdf60abff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated.php","hash":"0db25fba714fe4c0f1e1baaaa3256805"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild.php","hash":"6394371d43d74a9e4c83439566d77cde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestApproved.php","hash":"ae2412b51515e6ddce641adfab2e4471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestCancelled.php","hash":"68198e980f6bb5594893e888b74f07b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestCreated.php","hash":"942556fb791c4ee6a418f4e1b161b762"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestDenied.php","hash":"b9e498a14e6019ae6ca29b16fb3259c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPing.php","hash":"d89ebe54e1e7cc41526cda64d41360dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPingFormEncoded.php","hash":"e8fa37a1b9a8cb551e34e00ace76fb5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted.php","hash":"c92a6943a7fac25e31e0d9786763a00c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardCreated.php","hash":"4580aa11023cee3f7b20fcdc3170d0e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardDeleted.php","hash":"85a95eb882af9123549fe979863dd1e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited.php","hash":"78ff6c41a0f42e0716ba3dad2ef78bd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved.php","hash":"f6b3b76ec4c9852326abedfd0022219c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectClosed.php","hash":"238fe071dd7aadccfe2fcb4004232f26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnCreated.php","hash":"f88434ca5289d4410932c5591dc5456e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnDeleted.php","hash":"66de7024af8652b1f75d054caa33dac9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited.php","hash":"b632fa9c34d3d464d4db487dd434d5e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnMoved.php","hash":"6b10e494dc0f78f932ca7e28be998a26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCreated.php","hash":"0bd8db570d8c3947e2d1e1c33ef8052d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectDeleted.php","hash":"1ad32e80b89177b27956c9ffd29404fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited.php","hash":"d74035b7976a7a708c0b94fb1250d1ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectReopened.php","hash":"e0178ef74beea566cb185e5f29c2e8fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectClosed.php","hash":"2681682305f10585f14feb0d64b4f628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectCreated.php","hash":"3c9628b5e9ebb03fea97927e0346481b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectDeleted.php","hash":"e9cb51781b195c59638655154f48b34d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited.php","hash":"28a2108ec53b362f77de5b176624ee0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemArchived.php","hash":"cdf9d5b1303c4839a8d17a76645c356f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemConverted.php","hash":"158c499dd53a5a33df22f622a278d51b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemCreated.php","hash":"6029a52e4b3ccc8ec41f3c3278074478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemDeleted.php","hash":"b330e5e942da2c5aec0d5f9c1414d9cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited.php","hash":"b6bdc42e106f540acbbc354b3b237c30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemReordered.php","hash":"15bd8bc34f3c38319b0dc0c0afe370db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemRestored.php","hash":"24e843753182b6ec392ce279e0f051ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectReopened.php","hash":"0e8e9be954cb63de20d3b39c04be70d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPublic.php","hash":"3861399fae66349693f06f87ed8ed497"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned.php","hash":"b35a6920dc9d67dc6d74099030ae52b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled.php","hash":"5e414c4cefebe8000bdf7826c8918dce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled.php","hash":"089f85673b53a6fd115268096bebcef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestClosed.php","hash":"7f463c8039f1f769094b6593a002cf01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestConvertedToDraft.php","hash":"7975a54ec0830ae8143b6690d7b48114"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned.php","hash":"00c10b7edf5b803caf6df1f673be0782"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued.php","hash":"4f943e5589e9f85bc7e40a06ad6f1f62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited.php","hash":"ca1251f60fbc2e7534dfd6c0a584d37a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued.php","hash":"7a6570ee0e19d37e45de6acebd579ea0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled.php","hash":"7365abb6ce8be8cb95288fe5ee27f706"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked.php","hash":"668e03a50ba1061b5680d6d4180e368a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned.php","hash":"34777d8c3d15d6372b2f28af2b03ef40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestOpened.php","hash":"a51efb6483d66e12e5ba90ddb0e3f309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReadyForReview.php","hash":"6bd9f9e13f49ee7e6ed4db4795acee00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReopened.php","hash":"864e585bc688ef53ae5ee03522b56cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated.php","hash":"c898f447eaca600f6805113d1fe64c3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted.php","hash":"c9e2646e61bb247acbc25e9b2dde1363"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited.php","hash":"8f021fbef7003be94323e8152dc6cdb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed.php","hash":"d30de0fede25b9b0bc46bba32050a980"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited.php","hash":"1eee05e6484233f6bb97ac62f7cc12a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewRequestRemoved.php","hash":"0206956a0ba804527cddd9fd6b6d1608"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewRequested.php","hash":"9ae9df2ad11ed72777fceb50ae90aac8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted.php","hash":"5f15897429d55ed7bdb4e767b8430856"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved.php","hash":"c80fc6e805ee3cb9a463136da7d4b1e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved.php","hash":"de0970cf909e45638c4a7a9a7fb11560"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize.php","hash":"1635f00423e51f9b867de53dc99f18d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned.php","hash":"033ba3992ff83b15bd959b015f46bcff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled.php","hash":"7ba0d973d6c96ce2bf68a8ffa57530cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked.php","hash":"14d766dc35e90b022a44159a25ce8722"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush.php","hash":"e226ac6929ce176ef5bacfeb727fb948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished.php","hash":"dec8a2bcd43e9406830eb7d5ebf1f911"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated.php","hash":"c2278669271009bc4878911bfc2bfe7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated.php","hash":"5d0791243be99525993016f95efa35ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted.php","hash":"a14e7cd7adb1994d4fe8ee3b59c823fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited.php","hash":"091781fe44026cc7a6141fa47ea476a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased.php","hash":"9661a2eed3aeabe448305d013e42fa71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished.php","hash":"29d72db903e3d8b495d7b7e7ba4b17a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased.php","hash":"f5c07869b30442439367c7e140224d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished.php","hash":"4de8f1b8fc8c500821a71a15b1786580"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryAdvisoryPublished.php","hash":"a538d6b5fb150911d4e6a7653f337beb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryAdvisoryReported.php","hash":"b64eeaf2757a8e67dc1620567d495aa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryArchived.php","hash":"0faa0e0f5dc8525b83e6262a91458854"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryCreated.php","hash":"cc4bbfa09a0de879dafbc9429b58d293"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryDeleted.php","hash":"351c3b57bff63c7a471025f7b07b7878"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryDispatchSample.php","hash":"7b3b509669cd855ef51350203b8a833d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited.php","hash":"8df16121c99c98d47e6fb73be4a4e651"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryImport.php","hash":"5bd5f734b19494bb117387eae90d18c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryPrivatized.php","hash":"9f14b8b7a4a1617258f777ae0ad3821b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryPublicized.php","hash":"ed6cd7a24e6ecefb51bfbe9529162afe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed.php","hash":"cf5fa5ea5de92c76a988de439dde843c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred.php","hash":"0edda7fc089329884eecd146616f9644"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryUnarchived.php","hash":"e7142f242de259a4e8c9e2d5ab1c85f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertCreate.php","hash":"401af9bc52c3ee2f9f94a95b4f5d06f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertDismiss.php","hash":"574bbccea6a3adc1b9401d427b5d765a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertReopen.php","hash":"044a3e5125d86b0b4586368114ade05a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertResolve.php","hash":"3eb3e01a3280fe90cef90b533e781171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertCreated.php","hash":"8aed790ad09f3ffa70f839a95bc38f61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertLocationCreated.php","hash":"7cdf06583bbce76344f3ba01d5a9eb15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertLocationCreatedFormEncoded.php","hash":"a8fa3f65a7348616c0cc6aac02a41fa0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertReopened.php","hash":"acd6069e1c9deefa9d918778fba6857e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertResolved.php","hash":"9fa8efc7a6e1c5c490d0913cae534aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertRevoked.php","hash":"d8752e72567066f1b082df5f7a33da21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished.php","hash":"68b3da3dc9ae360b5d99670ab4c21d73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated.php","hash":"84ea17f92c581f0a1269c6e72231b8aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn.php","hash":"95e588ee8cfc9ca66e5e896d7ebe8378"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAndAnalysis.php","hash":"af5415709c4c05c4c51c3da295eb1872"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled.php","hash":"ca58867fbe246fdfd440829856a3de28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated.php","hash":"3884c06c578673276869afcc086f078f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited.php","hash":"dc3eed9133fdbfba17fb445cffb3b32d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation.php","hash":"4baf9d936425d2f6a8e6ea37953a72b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange.php","hash":"2a6bb3b3708a89c12565e11d2c888fbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged.php","hash":"dae36a7e75e9a24a9d141f792b4d806a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStarCreated.php","hash":"73ed7892a15b153672c1d935064ed315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStarDeleted.php","hash":"99c058633d1a589e007368f8c9de26a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus.php","hash":"37f0219ecbfb0fc9a357c625c4a5234f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAdd.php","hash":"d9e7c2979d657993c4cc22094735f0f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository.php","hash":"5c938e433da5ad037aecac098220ded0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated.php","hash":"d7fb6b4f52bd79220e8911a0f0062b3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted.php","hash":"72e70e9d6c03d87159052024755eed20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited.php","hash":"1e492d59975c25f15fc9d455e20634e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository.php","hash":"7e42a53b4d0223e4ab9aee09193d73cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWatchStarted.php","hash":"7370ddc2d097aa7b740cbf4f01446892"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowDispatch.php","hash":"097067ce7da09e334ac80c493f85affa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobCompleted.php","hash":"e387b138b9c803aef23f2b3e9be561ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobInProgress.php","hash":"f41cc0db5c2a861b0f5fac61ccde8663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobQueued.php","hash":"d07a26db8d52f52cbdc5fbd8189cae42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobWaiting.php","hash":"9715dc99f1c32651d86eeda28407c40a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted.php","hash":"22def21b2b75050f57cdab55fc8dcb82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress.php","hash":"d1c9ed5f4df0492e5b819ead323c81e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested.php","hash":"3f0f2b724c8fe44353d43dc25c846e79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Integration\/Permissions.php","hash":"e3a30cd5880b65c685ee8faaf288bd77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ValidationError\/Errors.php","hash":"ec6c48566fcf22bfe59706f65e5c3871"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Request.php","hash":"8c8cb85c4f26d5783cd46021d582f1af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Request\/Headers.php","hash":"3ce83a196febb6c039f0f2e5412ec7be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Request\/Payload.php","hash":"427476a2b9ea41ee45844f53acbe3aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Response.php","hash":"ec92b01efe30b69cde7c10874c43dfeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Response\/Headers.php","hash":"769fceaecc9aa3a67b210df368331f4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/Permissions.php","hash":"cfc7c890f48609c97e6942f1b1e2b740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/TemplateRepository.php","hash":"bfbfea9e28adc08b56a711ee5cd084ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/TemplateRepository\/Owner.php","hash":"c52bca1b6fdb70edcb3e5d17fe4a5d2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/TemplateRepository\/Permissions.php","hash":"42e4b97f3af08b3eb45fe92acfad2c46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Authorization\/App.php","hash":"f08441aff7814367fe7cf2911c03dcae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GithubConnect.php","hash":"8b77d2ed50a94510b49b4db58f30d0ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats.php","hash":"e0a07afedf7d4ffe36f9be2f3cbf2746"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Comments.php","hash":"0671b8f4556d73007d939a4dfe952312"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Gists.php","hash":"b735a83f8c6bb768c8c58caf4bbd8ceb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Hooks.php","hash":"fc3eca73f70459bd30841f5ebec4910f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Issues.php","hash":"5aabdc3eb44b211e00b186cfafffc96f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Milestones.php","hash":"92324e5667f0fcae3e4282a2c608c1ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Orgs.php","hash":"0192fb8f58fb6877b24a1854c1257fa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Pages.php","hash":"90b50b42ce5f9b6a6a476ab2e8ca28ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Pulls.php","hash":"a11a1b07a8651c5b3da1672562e58764"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Repos.php","hash":"69669d938c9484882c961eb9ee2aa5bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Users.php","hash":"239e760cce92c05047073eb5288a6df5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/DormantUsers.php","hash":"94799de0b32ae7eb44b76383df85d8a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuthenticationToken\/Permissions.php","hash":"7b109e7d0ab9f5faed96cccaf51a2a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/ActorLocation.php","hash":"7eaec8535a29468a5c34143cdb5af492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/Data.php","hash":"fad8f5875d941783e41f43b050768eb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/Config.php","hash":"4c50a5982300fd56b5435ef7768647eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertInstance\/Message.php","hash":"2cb848c190207596c0ae968b0525ce44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetConsumedLicenses\/Users.php","hash":"0b21e37a0d19e62fd3dc323556ffdfa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityVulnerability\/FirstPatchedVersion.php","hash":"3fa382d479c35785fdb617a823e99426"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/Cvss.php","hash":"0e049a36a6c933ba5ff439d08199906e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/Cwes.php","hash":"1567fb588ee1523d11aa56d3a850f12d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/Identifiers.php","hash":"414b01a3f22f15d8e76e082bb1432bb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/References.php","hash":"c56cd600484a6e2b15ecdf5f480dff5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertWithRepository\/Dependency.php","hash":"6e42c4cd20ed962122152c39ff8e5d45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetLicenseSyncStatus\/ServerInstances.php","hash":"68ebbc1e7f5fd99eae2ae69de38f74ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetLicenseSyncStatus\/ServerInstances\/LastSync.php","hash":"1e59ea6779f8f2d330138d9fabef22eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsBillingUsage\/MinutesUsedBreakdown.php","hash":"d621d8034e945752998ada13030c625d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issue\/Labels\/One.php","hash":"e377daad9a1b2f76ecd77b7d4a261e8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issue\/PullRequest.php","hash":"209cd3df6a73efe9eb77bcd6f9d59ae7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event\/Repo.php","hash":"8d799f7cc26f1f16a18f0a3593ec9570"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event\/Payload.php","hash":"b815f319c9f52147cd697f6504298132"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event\/Payload\/Pages.php","hash":"9fb5e87b3f01af4c560b6d5654ba249c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Feed\/Links.php","hash":"9128c04507f8cfd74e1d3cec1ea4114c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BaseGist\/Files.php","hash":"257572d93ff4f46b6d77a15f2d3e1a6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PublicUser\/Plan.php","hash":"9ca9c0a627242d87437c418ffb6e25b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistHistory\/ChangeStatus.php","hash":"088a45e5033d20a020641a202bf9c96e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/Forks.php","hash":"56dc55ad8a98924bb9e779338bc76e31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/ForkOf.php","hash":"9f7557af13613cd1a977d68d0127eaf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/Files.php","hash":"6d92f912af6da78c5bc8c447fce314e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplacePurchase\/MarketplacePendingChange.php","hash":"ced8fc9987cf561d6e1f44594ab9fc21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplacePurchase\/MarketplacePurchase.php","hash":"585036c3d75295651504179bcdfde19d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ApiOverview\/SshKeyFingerprints.php","hash":"e217ca56497c58ff6f07251f2056b8db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/AdvancedSecurity.php","hash":"2b00b1fab12dd4fd6bbb9965c46bca3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MinimalRepository\/License.php","hash":"5b1a8941e428466f8a20b0082a53caa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Thread\/Subject.php","hash":"fff9a4b5afc99782b8ac85be0cf43309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions.php","hash":"6dd3cd5756bc520a1cffc25b43409c08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions\/Organization.php","hash":"f5313405e35231e75fe4401fd3bcc33e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationFull\/Plan.php","hash":"1611cedcabc0c396aa03f087aaae4985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespace\/GitStatus.php","hash":"868da38dda8a653bead1f94c193b5a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespace\/RuntimeConstraints.php","hash":"8ab9b021236be3ff7f02687629279e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroup\/Teams.php","hash":"256dc361c1db9a5fa6dd705d0a13384b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroup\/Members.php","hash":"4c8302f14a9d9e0617bc5e0216c3d193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroups\/Groups.php","hash":"976e57426b0f987eb60c3d0b5cf49c4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgHook\/Config.php","hash":"7fc51356fad5dfb48b9510b67ee6de9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Team\/Permissions.php","hash":"f40ae15e695c225b4d3449bfdc17f8a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgMembership\/Permissions.php","hash":"aa82728f2968b1848583504961e7f4ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion\/Metadata.php","hash":"4f0071f51c5f57e45681eeaac13494c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion\/Metadata\/Container.php","hash":"deac84278a55f0f8093a29ed30292ef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion\/Metadata\/Docker.php","hash":"e2f31f2a277be876f063f111e23764be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditions\/RefName.php","hash":"a23da018a18f4fc67e7e0587ea3f7fd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryNameTarget\/RepositoryName.php","hash":"4b64901fca968696f30b0493b0187d4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleUpdate\/Parameters.php","hash":"035d40711383d31cd5802447e44d10e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredDeployments\/Parameters.php","hash":"8bf862acc26f92c4a1ac68dd8851f818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulePullRequest\/Parameters.php","hash":"84a67525306169a41bab174ee8d59ec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredStatusChecks\/Parameters.php","hash":"d08988d0ffed6076b4a057b340ab80f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitMessagePattern\/Parameters.php","hash":"36a1571fc7a7800d10138875783bc33d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset\/Links.php","hash":"09c4b98bf43aeba0382208d42092eae2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset\/Links\/Self_.php","hash":"b2b8c4e80453421fc0e89747f01c5ce0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GroupMapping\/Groups.php","hash":"34fdfa3eaff5f8cb8badb434ed286efb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamProject\/Permissions.php","hash":"19e7ddc72a6e0591840ed2f876934f65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RateLimitOverview\/Resources.php","hash":"b415f5c1cf11822b5424958f7a0aa90a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable.php","hash":"77ede4b3a23852fd439e148feca38343"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable\/Ubuntu.php","hash":"11b2262273e077d27293a3886611265c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FullRepository\/Permissions.php","hash":"0ad02e972efdf59dea3c41a08decfa81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Artifact\/WorkflowRun.php","hash":"862cb7bf7f4aa135ad0a8ce606cf2efc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheList\/ActionsCaches.php","hash":"e7add7f07a61843addc5288a68c1df49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Job\/Steps.php","hash":"a84cad22b015c7aa9cd4c7f8bcefc177"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Head.php","hash":"10bca266064fb0898239a8c73ed4765c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Head\/Repo.php","hash":"4e4023c7bbb801fe57133a1ff1d59b40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommit\/Author.php","hash":"6d11a117a6415a9371b819442dcf4d3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommit\/Committer.php","hash":"26abd74bd7e89e814ea04700682fdc24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnvironmentApprovals\/Environments.php","hash":"98c68ec7ff9fc415b53e8cfc398ce993"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PendingDeployment\/Environment.php","hash":"a17414cd1205e0e6c25e4b96c7dff9c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PendingDeployment\/Reviewers.php","hash":"64e04c687936205b05510949207fae68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable.php","hash":"0f8f1ebc3e643888896f1e6d84a21cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Ubuntu.php","hash":"1579c1fc2adacebc1d34ad8c0ea479a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Ubuntu\/JobRuns.php","hash":"6effb2c1bea9956a7893a3507ee9e4d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchRequiredStatusCheck\/Checks.php","hash":"34f7e1ee375e4887e4d24784fb978d76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchPullRequestReview\/DismissalRestrictions.php","hash":"0fb5ed891a7a80ead881fbb24a13120a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchPullRequestReview\/BypassPullRequestAllowances.php","hash":"55d8f34d3928d96a378c46a77ce55300"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Teams.php","hash":"fa7ada3b59ae77e8ccf7780f798500e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Apps.php","hash":"9baa0735b117018e2334629264cb8fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Apps\/Owner.php","hash":"cd947753d0acf7694e73d0e92ea0027e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Apps\/Permissions.php","hash":"23167067c30f4d5364cf4f49bee91c81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/RequiredLinearHistory.php","hash":"eb46232f67ebc45deca09e99de276bd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/RequiredSignatures.php","hash":"699857d08953c0117d316d77fee11929"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/LockBranch.php","hash":"bea70e0f1a6de27c03bdb7ed2b486890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/AllowForkSyncing.php","hash":"c8efe8de289ad6f40f9743d8a87ba546"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ShortBranch\/Commit.php","hash":"45c58c59eb5386b03074b002c189f4c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Commit.php","hash":"f33705672dcda1cfa6b42113c32fe69e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Commit\/Tree.php","hash":"c2245ecf1b0023e25410b9c619659d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Parents.php","hash":"daddd26683b002902a147e50d60e884e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Stats.php","hash":"292ea4f7497c8cd6c0dfb2003e640dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchWithProtection\/Links.php","hash":"63575c65e50ada686cbd242f8f55cf67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StatusCheckPolicy\/Checks.php","hash":"e53b858f2186b1ea3ee2fc13cbc4e433"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredPullRequestReviews.php","hash":"7be309e4e6ef0ad51403d0b80964d707"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredPullRequestReviews\/DismissalRestrictions.php","hash":"9c9e523849b16ec45b06b75b1c6fd139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredPullRequestReviews\/BypassPullRequestAllowances.php","hash":"5679449f7eb3e712de5fcc57d0014806"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/EnforceAdmins.php","hash":"07e44a16545e1b58259ab65c8ff2c720"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredLinearHistory.php","hash":"4933265d244d50b4161d6d6edcba012a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredConversationResolution.php","hash":"a0a7f4e0cbcc9bab0393ad8013a98043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/LockBranch.php","hash":"b7ceb23ec20e5c65a1fa7d6fa892c1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/AllowForkSyncing.php","hash":"e6678007e2da5219b231bc98b33e2920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRun\/Output.php","hash":"817a06f8f7f39ea4e0bbca3c956fcca5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRun\/CheckSuite.php","hash":"0d6a7a8f7eaa42448d7a871e70291992"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuitePreference\/Preferences.php","hash":"f08bed542732bf5e09e09bc2c2b97885"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuitePreference\/Preferences\/AutoTriggerChecks.php","hash":"c32d798b1129f8066b33579ef68e1913"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeownersErrors\/Errors.php","hash":"60e3ea028bc5b28943ef225c43a88dc4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Collaborator\/Permissions.php","hash":"43287bfb340858636b46d90a667991fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchShort\/Commit.php","hash":"2cf8d96dadb89cadb6ddb53186f401a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Labels.php","hash":"f88e1e3cb5698d30c7a5e478fe9f85c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Head.php","hash":"0700718bf64a57c8667f36698d6ff7e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Links.php","hash":"68ed50ba221e0febd2b5436a5f24ff74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommunityProfile\/Files.php","hash":"91fdddc5ac7f9008c5feeeb8196d782c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree\/Entries.php","hash":"b3f2a486a8c2509cf2b28b69bcef5a62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree\/Entries\/Links.php","hash":"171cfef93c82f5fee09097f8865f1c2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Content.php","hash":"0f18a7acb396ab9ea5754936ee9bcd93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Content\/Links.php","hash":"06cede0674558637be71d080a0eedff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit.php","hash":"3f503d38172d8c9e6aaee8b8fe96760f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Author.php","hash":"da1b7dbed383ba6c60d2e0aedb5b90f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Tree.php","hash":"b8be0e4a3e5c22a744c315c37b14205f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Parents.php","hash":"250fd6174d167bfdc25865e488c25110"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Verification.php","hash":"1060576b73474ae32909f4d1c0219af9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphDiff\/Vulnerabilities.php","hash":"09d78be5ac5505c2d917f96e04a45953"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom.php","hash":"5a7d663ba770d1a7cd40d0427161a1ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom\/CreationInfo.php","hash":"c7bc9ff5de7bcd9ccc6299de17126355"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom\/Packages.php","hash":"8577062c85603111f583e11445cd71e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom\/Packages\/ExternalRefs.php","hash":"65679f19ce124d0f5a6e584a880476b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Manifest\/File.php","hash":"e1ac2685fcc358228a4f27aab7c53059"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Manifest\/Resolved.php","hash":"f716601a5bfa9fa26c32fab64bd0389f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot\/Job.php","hash":"821ab534db1c305746f5019bf818050e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot\/Detector.php","hash":"59ea6a018db85bb9a386366bca1b02d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot\/Manifests.php","hash":"157dd5a792c9cfbba481492860419dc0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/Zero.php","hash":"9d80642312171a0e57b1ad6ddaf09210"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/One.php","hash":"526450ea4c8cd00bf011aa8d1d255eb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/Two.php","hash":"3dcfeae1d95b359bfb8f59078bb3fc52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Author.php","hash":"28aebc7d133468791797f65561dc9453"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Tree.php","hash":"b7bd7cc361eba183500e3bfb8b1093c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Parents.php","hash":"4fc1ecbca142d9ad189c608e4c8492e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Verification.php","hash":"bcf054f0e1ac00eea2e6fbdc06d6b1e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitRef\/Object_.php","hash":"2d43e296ed18bf0bb2364096188b8b1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTag\/Tagger.php","hash":"bf587295a2a4f3965c6038f27eeb0748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTag\/Object_.php","hash":"c6f0b95c6d17d712798c76d88b791471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTree\/Tree.php","hash":"ec503c2c087d262281cdc1dedce3c45e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hook\/Config.php","hash":"a2a07aefdd29a8af6fc3e68d7d2c3f0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Import\/ProjectChoices.php","hash":"614141fefe1e859df248a9add4958d7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LabeledIssueEvent\/Label.php","hash":"3a47ab13800d209af34764b1fdebac4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MilestonedIssueEvent\/Milestone.php","hash":"0216a86fbbcecd50ddd79d70b2c1077e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RenamedIssueEvent\/Rename.php","hash":"c2a081dcaf87f846efad7aa3203f1804"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewDismissedIssueEvent\/DismissedReview.php","hash":"adc88b94080a9f803f6d63c7d70f9a53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AddedToProjectIssueEvent\/ProjectCard.php","hash":"f3c1bf388b623d978e775037b12763a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCrossReferencedEvent\/Source.php","hash":"c6e9586d0c8a13209a154ff71b3d3714"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent\/Links.php","hash":"eda6666309de332de51d6c60967cf86c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent\/Links\/Html.php","hash":"38d66dec66d91ae600e8329a8327d97c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links.php","hash":"787a84d1a02a1a32e0075537adb5916b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links\/Self_.php","hash":"e0efc0888aa031308e72de95f51c01dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links\/Html.php","hash":"c2a8882c802dbf25a3a30128c3bfc061"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links\/PullRequest.php","hash":"a3f987d3dfc34606aa7aa7e723889667"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageBuild\/Error.php","hash":"1f3647916cc269b41af420ce6699cdc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHealthCheck\/Domain.php","hash":"4b8bf310ede811943c34e012d847e4bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHealthCheck\/AltDomain.php","hash":"3cac48b7c146b292703d7502fe66ae8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Labels.php","hash":"259eb0fdec6393e7bcee5c88f56fadde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head.php","hash":"66be0226fd33feece42551683decdf89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo.php","hash":"34c9d23d9ac59facc16a60219a84e915"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo\/Owner.php","hash":"2e9f29dd462072b778a1a28c94ea06a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo\/License.php","hash":"6a202713ca44bf96f1863254ab8566f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base.php","hash":"d3ee498198e594269b539b68f0f9414f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/Repo.php","hash":"30187446e460b15d49a31d8f1fa947c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewComment\/Links.php","hash":"a3b56607ebe55d5558ff4bc5673874b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryVulnerability\/Package.php","hash":"376f5365c8f9bad86dccbebb9dca3a2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Identifiers.php","hash":"54b171553aca382938615dd4a8d81f2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Submission.php","hash":"1fb3b7e2b14bde242ed73cd151fc1c1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Cvss.php","hash":"f754fb85516d45b3e55a7d512578b5d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Cwes.php","hash":"4e880fe6aeed6d1299fd90ef6f2cd48a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Credits.php","hash":"ad5a0e3fdd22c84cec5cb5bf40c8b36e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate\/Vulnerabilities.php","hash":"9d3fffe15914d29c319bc241d3c32da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate\/Vulnerabilities\/Package.php","hash":"ffd3ba52eeb174ffe8744a99c93c91a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate\/Credits.php","hash":"947d32c5f5e1f1bfcce0de2787865ed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContributorActivity\/Weeks.php","hash":"1e1a4791b032d87465e72b6def2e8ca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Name.php","hash":"f41919e4d8372bd736321103bf758859"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Emails.php","hash":"b03882fc39997680c858a6156b0dae33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Meta.php","hash":"73d7f43d43bbff790545e78c740ab201"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Operations.php","hash":"18329e3e27fc1654afc7d3b7d18b2d5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Groups.php","hash":"0554db33b148e47b1c8b2d5dac8ea68d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Roles.php","hash":"edaf17038707ac7e191146f9dc28cef1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SearchResultTextMatches\/Matches.php","hash":"0eeec5601890c30c87a90238e9521f63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Commit.php","hash":"6e1aa74e1a0b4896ef057aad6aeb9c19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Commit\/Author.php","hash":"9930c2fe4a574a90b0ac4bf6fae724a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueSearchResultItem\/Labels.php","hash":"416e6e37ddf42d72614230b1bd462041"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Related.php","hash":"b8ee5ae66caf6a8c986f35d26553ea6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Related\/TopicRelation.php","hash":"cf892cd77c8b0cfca2de56d8aba03871"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey\/Emails.php","hash":"5552ef7f3e8ad6becdeafff79ca817a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey\/Subkeys.php","hash":"c17c89452b237a1717efa9423e291637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hovercard\/Contexts.php","hash":"5e0b3944a6aa8c2aa28fb7224b51308f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRunWithSimpleCheckSuite\/Output.php","hash":"9ab6c0d7ef3bbf53db6e341a318ba909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/AnswerChosenBy.php","hash":"d81b94ee7c5ca50f550f5a0b91af4ac6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/Category.php","hash":"a125ea3300b55848fef869f744f50389"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/Reactions.php","hash":"80257747015e4d58fdbf760352293fa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded.php","hash":"c737ab3b5113223686890b40767bfe73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded.php","hash":"e052e2bd59fca31bdb2fbea2c5d36a58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult.php","hash":"cb7addb1ccc6769718607951dacac7bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/Repositories.php","hash":"3324afb5b22d76e58752299d6cb35eff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleCreated\/Rule.php","hash":"72502779a8ad6841da1f9a5545395135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes.php","hash":"fd65487d56d7d909e3357a3f9d91eba7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AdminEnforced.php","hash":"95e20cd5d8c2c0889ebed2348fb8695b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AuthorizedActorNames.php","hash":"1954ab50cab7148442d713f2cca9ff2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/LinearHistoryRequirementEnforcementLevel.php","hash":"585bb3001bc9d76916611d51db9cfcc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRequestedAction\/RequestedAction.php","hash":"e0f6a69dde66bf9111f749ea71272a99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite.php","hash":"92554e16990953941a2de5cfe324cdc6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/App.php","hash":"f06a78cec0ca074cbddf23d1a2ac50c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/App\/Permissions.php","hash":"b07263fe83db6d5ff681868a1014b6c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/HeadCommit.php","hash":"cc5b71a8546a524d438425b1572f9306"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/HeadCommit\/Author.php","hash":"aae86d5b402fe9b080e1aeb10ddb3569"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests.php","hash":"08c41c0a299313da8c59da8112b180a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Base.php","hash":"f2a6f088c782c55017b2d0dc4202b97b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Base\/Repo.php","hash":"d2a490268d52761e11c5353ab805cd7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite.php","hash":"1ec0ec33896a69ccffae939ebc969135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/App.php","hash":"eaf859b88f1159715f2bf5f2312cfedd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite.php","hash":"095d9c7fe616fbf9c625922454f1e3ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/App.php","hash":"197a1171d8c6664d31595fc563db013c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert.php","hash":"904f724a21ca44f05be3c39f1724e066"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/MostRecentInstance.php","hash":"88b44cf248785bc3508c45fba2965929"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/MostRecentInstance\/Location.php","hash":"1dd6d0826cec1278ee124f5271686de7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/Rule.php","hash":"9bc3bed6912e608cafa1871813e58728"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/Tool.php","hash":"71ead8a0fd0001b67ad422f843f872e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert.php","hash":"95df2b1eba39112893aaa8d58e3a04d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/Rule.php","hash":"d6605104a3350cc3385cf9c68e9c3240"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/Tool.php","hash":"feeee7290c3261fa603e92464d6324de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert.php","hash":"f3dbb7ffe27cb8d82d3883e996d3f7f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/Tool.php","hash":"dd1aa7e51f1bca3e4c8172b197c7832f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert.php","hash":"fafd9a4cb54622a631ccae7f7432aba5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert.php","hash":"60df2771391ab29129f235edb70644c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert.php","hash":"07bdc5312ff5fac0d34b58c6611d759b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated\/Comment.php","hash":"70a96ddeae296074920c52970e27f3a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyCreated\/Key.php","hash":"baaf75e97862abf0a11e196572e735c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment.php","hash":"7847335cd6d41fddd9b7a4bc32b2ca9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/PerformedViaGithubApp.php","hash":"9c139573ec3d40700afd67f251a7fed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/PerformedViaGithubApp\/Permissions.php","hash":"e75c3df3952061d50fa1c9e25354ef88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Workflow.php","hash":"6948442ed8d576fc498dd815a6b86327"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun.php","hash":"d2e3ff5b7d1b2055e7ae7fcca4d45077"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/HeadRepository.php","hash":"9f6c1d2c7212b4296ef70f5f78515c38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/HeadRepository\/Owner.php","hash":"7bb3a4468b10cb3700a70360918d34ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/ReferencedWorkflows.php","hash":"fcd15d3d634e0205bf47be8c017664db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/CheckRun.php","hash":"b64460c51b2bdcb01e25e37ad61961c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment.php","hash":"de92cc196a1932c971e5daa26f116220"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/PerformedViaGithubApp.php","hash":"04e949f164a22efa4a2f93085d7d0c5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus.php","hash":"33830515929091ad7890125c7afc904b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/PerformedViaGithubApp.php","hash":"b4ebbafef9c5fe878ed2ca99c28a8c3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun.php","hash":"ab36b37257e1ae0e504742486e9f50e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered\/Answer.php","hash":"df8c281fa0f43312891c14025a57f4b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged\/Changes.php","hash":"2b00e5356c96312eb88d9391801bfbf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged\/Changes\/Category.php","hash":"a3c6d2fda86c8b65fac3d4395a575c3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated\/Comment.php","hash":"5da8dd7968dd3c9467361340b77d7ba7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Changes.php","hash":"00e138ace0f2d6f31d41a9a520a086bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Changes\/Body.php","hash":"e14d51a1e40a630fe74d9f3b62752bb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion.php","hash":"ee6549eeb4c571c79f1a3f3176a48c07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited\/Changes.php","hash":"e0f734cd7b46adb3f7231cf98f8c6b77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionLabeled\/Label.php","hash":"5ae0e86ef4923080dfcdc8d36aed9485"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionTransferred\/Changes.php","hash":"17eb159ea8ba993117f114ff49190225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee.php","hash":"a9f5f2437526817d5f18e8de8d65e400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee\/License.php","hash":"9b8ffcdb2f7936f9abcf904b60baf72d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee\/Permissions.php","hash":"7398f237a77da3621f0ce38398f8e395"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookGollum\/Pages.php","hash":"7b650d0db13e342d8f3134b9622f6c59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded\/RepositoriesRemoved.php","hash":"0d96779e4aa5fd07f8ec3b332b34a2a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Account.php","hash":"a434da4c9952d8de3b43448e6d3badda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Changes.php","hash":"a9fb14acb106d3fbef0effef7c123397"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Comment.php","hash":"3e4723ec2e6a2375ac9699ab5d639f75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue.php","hash":"54be991dfa8ff9969f7731ece52daa38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Assignee.php","hash":"63865ac233eba9394acbf9da035251dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Milestone.php","hash":"ab9952556c60b076999af43a6458571f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PerformedViaGithubApp.php","hash":"c5946a27bf4af5d622ae51caff19aadb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PullRequest.php","hash":"ad0ad3afe3184e9cb4b17dec558237e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Comment.php","hash":"a4766ec1ac094d70f8d5856dd6a611de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue.php","hash":"22ec75f1b3f69491d3bf091e1143040d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PerformedViaGithubApp.php","hash":"90f2a8a1cc60cfc7cb6d3b130f153958"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Changes.php","hash":"d0fd5477033ef99a99ceff353813c4c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Changes\/Body.php","hash":"efcd40777dd5cb5d606e3a62559b7de8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue.php","hash":"e4e54fa0be002c2ff4b8ba255ddf3805"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PerformedViaGithubApp.php","hash":"090c7e3b785d409243a6ff4309d95a51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"adb71cbea0a63f9aae8f6a02699e05b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue.php","hash":"df3467d36e3f1dd2c4038e25b23cc957"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PerformedViaGithubApp.php","hash":"1d9cdd756f5a9faf6e1cddacdb9052c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue.php","hash":"bd53933afcde78d4995a255ad792cab2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Milestone.php","hash":"64f90a2ac8d383c2d0b95221a02d9091"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PerformedViaGithubApp.php","hash":"1db1054ee793435b8d3ea0478744de3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue.php","hash":"a5c2722736df1cec692e6ea3408e8638"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PerformedViaGithubApp.php","hash":"860f194f55eb4efdb73627216998f895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Milestone.php","hash":"6bdaeca0db33128f32171524acbbb1c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Changes.php","hash":"fe0c8f2255dbe27c765923971e3089d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Changes\/Title.php","hash":"cd25878f66eddbf57845b8eed3880798"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue.php","hash":"160462ff7ea833c182115860673a444c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PerformedViaGithubApp.php","hash":"30c9372e9a14f375a24707cda77e3d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue.php","hash":"e67b0be4c1894d514d5b3380615e600a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PerformedViaGithubApp.php","hash":"c0ede6f1497831d9a40f6ac6a829bbb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue.php","hash":"05fad06d1a257a37a4d038f20dafdaad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PerformedViaGithubApp.php","hash":"35e7cd3ddca849caebadfd6f5c14a624"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue.php","hash":"1a83b8e2b16e324794c5359922ecebe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PerformedViaGithubApp.php","hash":"13f005b6ef490b0187318d56576eb778"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes.php","hash":"8c2487ae364bbd90ee024c6608b71bbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue.php","hash":"759a3359f2feddf65bb1010f591a7b06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository.php","hash":"957afd3a4437aaedc15386070a475e62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue.php","hash":"61003163b432855281348d2d60806f87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue.php","hash":"0f6b222c7f9442c50720624da21ba459"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue.php","hash":"567709901697327d85105d5fd50d637b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PerformedViaGithubApp.php","hash":"460834278dad1f7c273f584b5f212200"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes.php","hash":"8cbc64afc92d086464207cee5d5b8ee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository.php","hash":"6f2077f6d041bd49c77b616385cb6287"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes.php","hash":"916a0851328998c48300fbbe9258fe98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes\/Color.php","hash":"b19bc3c212a6bc2b329b882de705886d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes\/Description.php","hash":"cb74ba7a9f28f4960784d9e048601d39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes\/Name.php","hash":"fa9d502189f1abcecd48ef1c559bd9ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/MarketplacePurchase.php","hash":"a4273dda4407e29311f5c0387684d262"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/MarketplacePurchase\/Account.php","hash":"c8e8648131166f6b5c33ae74b8d73bf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/MarketplacePurchase\/Plan.php","hash":"dba2f55bc559b9c4eb2c1b1ad2a553d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/PreviousMarketplacePurchase.php","hash":"cf7772d4b5ffab9e2bafd508c2a8ee86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/PreviousMarketplacePurchase.php","hash":"47bc4a02df5b4e38de8f81cbc24072be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded\/Changes.php","hash":"0d436883ba4b2806203edff4dae6c526"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded\/Changes\/Permission.php","hash":"88f43d1b87007e9be5f0512307e391d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Changes.php","hash":"6d85a7c06833464e112d3ff5d68d3eff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Changes\/OldPermission.php","hash":"cc86ba613c833d065d00bde940c2e10b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Changes\/Permission.php","hash":"b8232278abbe502e0cc7facbc813a2c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Team.php","hash":"a1e90c94db1354de74da000a1f949326"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Team\/Parent_.php","hash":"0b369b7a5352fdd7e14ed3d93991b938"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMetaDeleted\/Hook.php","hash":"c95cbf8268d432ef397d412590ca0520"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMetaDeleted\/Hook\/Config.php","hash":"482018b2226f8191583e9b2baa846426"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneCreated\/Milestone.php","hash":"0214f2b11541aff441e7edb9f6afd0b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes.php","hash":"20c8a0eae761cbbda60aa1c5d64e7eba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes\/DueOn.php","hash":"3886441e5e429a47971a74a39010b7d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes\/Title.php","hash":"d9525a9b507f0e8a0428ef44cfe59f18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationDeleted\/Membership.php","hash":"35f453f5091a8f03dfbd8d501699e3df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited\/Invitation.php","hash":"7431b2d828ca712d705e3d0f048e1357"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Changes.php","hash":"f0f13ef27db793be030e3a6561cf2990"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Changes\/Login.php","hash":"ea6163187d786edb4434004f645a54bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata\/VersionInfo.php","hash":"826a2d3c95ed8f007ed6020392e21360"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package.php","hash":"8e8c79777a4cd430d0f4922f25990947"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion.php","hash":"96382430726e63581127f14b6f346e1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata.php","hash":"aa5556e39d943f8c7fcc9c164a25a11b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata\/Tag.php","hash":"0ad0ff40d1d7a6c57a1d772bc91bb1d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/DockerMetadata.php","hash":"543471471739e8a4dd35c8aabb64ffef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata.php","hash":"5c01b2f211d2f9dbabdb5223f44a7f2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NugetMetadata.php","hash":"31deefa671a0fa15df378dd4894c76a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NugetMetadata\/Value\/Three.php","hash":"51101d206578bf5cd7745ddabe1286f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/PackageFiles.php","hash":"0943319f7836e5e5aaae87747e48bc0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Release.php","hash":"a812d7471b17908071b2fb64f48ec08c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/Registry.php","hash":"d2280ab7c1ee3a73fb397f83002b3cde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package.php","hash":"8d75c04e66d01627d1b49efbd3b59123"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion.php","hash":"0bb13ede1a303f7b5823369ed73f486e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/PackageFiles.php","hash":"614a99f8743d55293c4036220cb15b94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Release.php","hash":"c2e955f5028e34790cc6e450d40dbbe7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild\/Build.php","hash":"9a8f1376a0f45bf53224facf2c6426ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPing\/Hook.php","hash":"9791d1d137a070ce8e1b09d0af60ed7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPing\/Hook\/Config.php","hash":"ba1f1821761a47715c399d7d32cb27e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/Changes.php","hash":"6ca2d7edcba908ae3e30ba7755a86aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/ProjectCard.php","hash":"530236d1a3532439b1dd4dbb584f7448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardDeleted\/ProjectCard.php","hash":"8889bf1f8d540036b0542bf05c5956f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/Changes.php","hash":"2fc571960397f8c351ceae929caf5b9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/Changes\/Note.php","hash":"330bd0b0e133f5bfb6944ba3e95b3969"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/Changes.php","hash":"7166467abd576a4be7d231aa74d98245"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/Changes\/ColumnId.php","hash":"f55bb548632b30ae742f475a0d3cd55e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/ProjectCard.php","hash":"e60e2ec30dec6ff2e3990c10f4e285c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectClosed\/Project.php","hash":"3839c8556bafa610308bf3fb28361175"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnCreated\/ProjectColumn.php","hash":"11fb53eb9165de4d1d068e996d1cd92b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited\/Changes.php","hash":"d790ede5354a7109cce62f06bdb9d70e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Changes.php","hash":"4607f7b0cad224cfad1673537e68d8a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Changes\/Body.php","hash":"77e538fa7a292de8169f7439d3dd6761"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Changes\/Name.php","hash":"36e2235804e88a6f9141a4438bcc066f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes.php","hash":"d7bfca3da1576eb3326fce4fe4949a34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/Public_.php","hash":"db79fb2633eb25f92ca297975e25ec4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/Title.php","hash":"a6a662b31295296d081ae1d0c49c94ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemArchived\/Changes.php","hash":"75f5fbd0e29f0b6a2ff6abd809d37346"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemArchived\/Changes\/ArchivedAt.php","hash":"123cf1c7d6a39953f6e8897e515d0e80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemConverted\/Changes.php","hash":"a84b78d0b30d0a8fa84de5bedfd5380c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemConverted\/Changes\/ContentType.php","hash":"73913717d1ac0cf38460cfab0fdac979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/Zero.php","hash":"67ba430d7de85603be659a2c2b932c6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/Zero\/FieldValue.php","hash":"cfaa2bf2e8c22079b0ff4b798e0f163b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/One.php","hash":"f79e8f88e2039f717e735b982d7662a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemReordered\/Changes.php","hash":"baa8243cf82581ae0650f85d36770cf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest.php","hash":"ac5221be21240016d6cc7612c4b9c492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links.php","hash":"e637bb443d95f241b6ff15dbaa088681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Comments.php","hash":"5c2d7e014b71835c50cea5295219bda4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/AutoMerge.php","hash":"811cc9f6869aaaf5c6182cb9e08fc6a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base.php","hash":"5d1f4a30250670f34bdccacd341b4325"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo.php","hash":"f7b91965e5212470574524ef04c6f6b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head.php","hash":"cb2679bd9e55c6a1b22e6594431d4870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo.php","hash":"da3b33204cedfc0bb2c96bf8bb2b4d69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedReviewers\/One.php","hash":"681529c825634d5bfcd78bb37b370a2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"4d954f4fce631748f06327675e46d70d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedTeams.php","hash":"9fbcd8e329ee2a7fbd957abe43731288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest.php","hash":"6ef10b92c3b24e3b1a883f9aa242f0bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base.php","hash":"3a58f84a5a0a31deb2bae73ac607a1e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo.php","hash":"ac07f9d547513b7313c26a7f008399e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest.php","hash":"89841fbfdbaceba9d2fcca1426acad12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest.php","hash":"d493a6b3849d9adca79847afaa8f30a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base.php","hash":"6ad0ea1f2371262fb8d7a5398add00db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo.php","hash":"82b9273f442714627158382795dd1924"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest.php","hash":"1cd72df325fa5288ce48a31702336a57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes.php","hash":"dfcead01d1cf7f2ada087483ec72df84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Base.php","hash":"48b65ca295445afe0ada523e6397191d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest.php","hash":"97c546a8dcd81628194444e853e15efe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base.php","hash":"c572ba0541ab50b1d46307c793302204"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo.php","hash":"435bbfb40a3c2a4a88311036c6532414"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest.php","hash":"4d9e0c8a5aed7eca31a24bf440b2c8d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest.php","hash":"f9fa618f8f0d0c5e135128bf4ad3fc06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment.php","hash":"7ed51bbbd98588301949acea4b39e564"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links.php","hash":"6843fef7277710685337625c2cd304f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest.php","hash":"00c3bbe680d3b5c21bef1ac86183c834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head.php","hash":"dec5e4f6a087699579506a40ca4a580a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo.php","hash":"daebf3df2ffde9f439fe9e801b6d8cf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment.php","hash":"18e5624ff0b1a5df9cdf011b5df602e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest.php","hash":"c97ea1800ac8f37dec3bc9a6871993cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head.php","hash":"eaf122878a3bd395fde8cfa6e89703c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest.php","hash":"0d41fb12393f8859707421d057172239"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest.php","hash":"a85ce30e86137f5b9c11df9889947174"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review.php","hash":"f720787199ee616932e5ab3c747346db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/Links.php","hash":"5497d76073ba084da6b65d60d2c8ac40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Changes.php","hash":"d6b168942d955b7c90966fb63653ce0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest.php","hash":"ae7e30df69c655f0801a7f11784ffa3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base.php","hash":"d2aa7859adb1c094be111f60590d6d34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head.php","hash":"3bb2bd18b76153ddfb114e6dbe8991a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo.php","hash":"89bcdd5b00083b1aee5d7738df5ce4bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review.php","hash":"a5cd9b2a8f370f93396ccbeef73cf708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest.php","hash":"85dc5e9353a6bf6f05a06ce8218be503"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest.php","hash":"03720817b2de6fd353922c6e2e59e5b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base.php","hash":"2c5d168a394580d873334db02d0706ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head.php","hash":"4b6a79c14b9ddac28e69c034b093cfa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo.php","hash":"8218b32567b90259db523c9f625660a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread.php","hash":"d362fcaf7195b7235f32170e35be44bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments.php","hash":"7c08427ff18233e6f4710f9edca05035"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest.php","hash":"9bbac7d6f116f5d6610cda457ab2ed62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/AutoMerge.php","hash":"84faf277862d7ae9366697c84e534368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread.php","hash":"414abe50db73bb82085f46f998d15e21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest.php","hash":"7ac4d9b9d5261b4c0561c2a3d6f8f866"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head.php","hash":"739f74b394c04111f23201bce25c8102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo.php","hash":"5bd4d38bae9c1d773d68f2cebacc9c85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest.php","hash":"a907934b21f144f8dd888316cb37038d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base.php","hash":"4c03082b59944b2383cc443011a8befe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest.php","hash":"0b60c5d25136637810a46511a9f3f97a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head.php","hash":"050b5ca7b4d08a5d5a6f2b42dfbe4936"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo.php","hash":"93babe9a06d27bb97cdc185ec375fcd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest.php","hash":"03926d5e0cb0d5aea7e5375b6936fe01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Commits.php","hash":"a0811ed9cfe61aa6efb4b27f44a08ff2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/HeadCommit.php","hash":"8727e6f3d5053a7b108731cbcf2792d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Pusher.php","hash":"b2908c88cbfde0a7eab8b557b62446b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage.php","hash":"64a13d35f60cb0d501eb0450a554138c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/Owner.php","hash":"ef595d3e6de737ce48ce528e36d144f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion.php","hash":"9a240171664b807dcab49865e0a56e86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata.php","hash":"3205190f7b12d44f8de780d435e9ed66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata.php","hash":"488247597b92b465187e01ccf7101de3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata.php","hash":"f8834ee0edeec0c45ced523a88a1e450"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/PackageFiles.php","hash":"3ac5f82aaa59020ae44b02ef5e320a29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Release.php","hash":"153ed93032981623ccf432a0c78cfa8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/Registry.php","hash":"c29c9fbc9b1b0e6c6583bd0a20f5c754"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage.php","hash":"23b26da7187c9a1cb9545c6101991581"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion.php","hash":"750b774777a37c0a115f0ceb4cd07c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/DockerMetadata.php","hash":"87157dbe4bafe487743b42a5202bb563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/PackageFiles.php","hash":"594e666d55b11cb35e384674fa176f40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Release.php","hash":"3ace45d4518e9b4a59a0800543b2bb5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release.php","hash":"3b917e57d319306ed7fb325c1d6fa657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Assets.php","hash":"b27531f2da4b9f97da336357d04cf52d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes.php","hash":"d64f6dac044a84c7a922ed7d1ebaf436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes\/MakeLatest.php","hash":"6b0a21eb42ff13867de1a0145a049545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryDispatchSample\/ClientPayload.php","hash":"446efaf3417d9b495ff261b8cf622919"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes.php","hash":"4dfb156820ac43c4999d9e3ed96a4b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/Topics.php","hash":"c3f6ce9e3ede49c68698669149141c34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed\/Changes.php","hash":"bf006ee2276a29ff79b152f2468eaee9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed\/Changes\/Repository.php","hash":"56a59c512cdf670f76e9b244a7ecb8ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes.php","hash":"ce06a0d336a934b8cb8d5165b1101299"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner.php","hash":"35019c039e10877d511bede102d27d8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner\/From.php","hash":"cc5e1cb18681fe56fe1f89cc38d3105d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner\/From\/Organization.php","hash":"e08c32461feef6ec9b45b9da81be83db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertCreate\/Alert.php","hash":"6e4a662bed4f2d8c3f354a3b7bf41d5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertDismiss\/Alert.php","hash":"756c81df5055fe0eda281260c5ed283c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory.php","hash":"61b6466670d5973132bbd2176faa23a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Cvss.php","hash":"a32386a0e02ea070f152c167f4d8a4da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Cwes.php","hash":"1d82c17f3ed6e30e87e1af71dfdbcc6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Identifiers.php","hash":"c893cde55551a59e172106206cb0a3ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/References.php","hash":"a3b6d15dc6b25f568f77c4eb48c76adc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Vulnerabilities.php","hash":"e351c7ef5009fe1d5afdd7a8924bc33c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Vulnerabilities\/FirstPatchedVersion.php","hash":"3229d0c9b446e80b34d25eeeb7a7283a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Vulnerabilities\/Package.php","hash":"ea4eb88d3654665fd43915df83d5929b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory.php","hash":"33e19e710411df37f7c34a8fe20a8613"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAndAnalysis\/Changes.php","hash":"30eb13520ff8bebee152bb28053281a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAndAnalysis\/Changes\/From.php","hash":"a174d393d09550df033e93a01cbd8fc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship.php","hash":"0a4e02fb23977551b32e3079aa6ea2cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Tier.php","hash":"9aa29509d5c16eca32575cb332f56bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Changes.php","hash":"5b50632221331de719dbd62b5c750d24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Changes\/PrivacyLevel.php","hash":"877cf6e5fc102913ea3d3714b37dfce3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Changes.php","hash":"fb88680aa10b3808c2ef0c8c8d32733c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Changes\/Tier.php","hash":"43d26855fdcb70ed8c92eefa960e22c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Branches.php","hash":"59c3b20087b3550cb5ad77d953800890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Branches\/Commit.php","hash":"1591b1b7315b47b0c80b2f73765b5130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit.php","hash":"fd978ac5effec9bc7235eee4ddb4105f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Author.php","hash":"bfeb040b11b94e012a7cbfd9a7715367"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit.php","hash":"ec60d6fbd86b66d0d77da2113a134ab2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Verification.php","hash":"afcf2c1117238e01c050b7628e65394d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Parents.php","hash":"55ba02659ce89502529661a4105b1eb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAdd\/Team.php","hash":"67203eb0ff81174e5871cc940ed12a0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes.php","hash":"b3371ac625979dc53a8fbd949dd42e0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Privacy.php","hash":"4bef3a9eea8c0c7c3826449dd0d7f43d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/NotificationSetting.php","hash":"dcd0129f6501c5bc9b1bfd79a1aa8a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Repository.php","hash":"3f3c3656aaea6e279698ba463f47b27f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Repository\/Permissions.php","hash":"eaec7bd612916e3e3c4094b444c1308e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Repository\/Permissions\/From.php","hash":"60602877622f1cef946d586814e31f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobCompleted\/WorkflowJob.php","hash":"86987f864ea3287529057105eacc4565"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobCompleted\/WorkflowJob\/Steps.php","hash":"921eaf877f03c9403d62433e25ef3e1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobInProgress\/WorkflowJob.php","hash":"a472e473e5979c4b2d53df73b58d2140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobInProgress\/WorkflowJob\/Steps.php","hash":"96ab460fe6706625df78c3bd9d1176a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobQueued\/WorkflowJob.php","hash":"632284e377a068314e88232aaf58f02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobQueued\/WorkflowJob\/Steps.php","hash":"6583345a5065355c898e8e8d293d0f96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobWaiting\/WorkflowJob.php","hash":"d71e5649e01caca2d08b2c88d2ae52b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobWaiting\/WorkflowJob\/Steps.php","hash":"1fbe57df7793225f97b8b3c54dec86c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun.php","hash":"c56691e4a23e2b4f82085c56bba03b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadRepository.php","hash":"6e076fd1a5fee3f493490f5183492454"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests.php","hash":"0aaf70c1a0616ae5c9c9d00276bc32d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun.php","hash":"4e987f0cd743e1e474d3c54e790fffb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun.php","hash":"e701eb4d468fa3d660fdc0e0fd220dad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/CreateFromManifest\/Response\/ApplicationJson\/Created.php","hash":"453c36086acacbbbfbe0e164047627ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/UpdateWebhookConfigForApp\/Request\/ApplicationJson.php","hash":"d76149faae1cc9bb930e8cb6cda7d35c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/CreateInstallationAccessToken\/Request\/ApplicationJson.php","hash":"9df19e2ee89b43fbbf5cba44b70ad3e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/DeleteAuthorization\/Request\/ApplicationJson.php","hash":"0539c797fd71896b782aae36bbe1af58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/CheckToken\/Request\/ApplicationJson.php","hash":"2285bca9019bc6e89a1aecbb5a77cb08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/ScopeToken\/Request\/ApplicationJson.php","hash":"a0d219eea3064858598df2529d7f6ef7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetGithubActionsPermissionsEnterprise\/Request\/ApplicationJson.php","hash":"795733ac214e3e7a30963cb36d29d16a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"ad6c97e44562f3054fe4ffd72753f140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetSelectedOrganizationsEnabledGithubActionsEnterprise\/Request\/ApplicationJson.php","hash":"080b2b042f38d1cdde1ee925959e24c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"c0c9c8ddc6a5264813f062112c1bae46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterprise\/Request\/ApplicationJson.php","hash":"83b604ebc4d320c3a77b22af1d322bdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterprise\/Request\/ApplicationJson.php","hash":"2355ba857e35e2e3b450af23e025cb9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetOrgAccessToSelfHostedRunnerGroupInEnterprise\/Request\/ApplicationJson.php","hash":"b5e2fa2c8df626513e87eeb76982c4ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"0bb20732f804ee9fbf810b867375204e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetSelfHostedRunnersInGroupForEnterprise\/Request\/ApplicationJson.php","hash":"d66ba0f6754fe3c4085bfd53fc8ddd1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"aa50f47723b8d17c1cce9ca9d5ca3821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"59c49921cf234df6af4216c60ebe893e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterprise\/Request\/ApplicationJson.php","hash":"6eaf45fe1cfae126c1d1916722be67a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterprise\/Request\/ApplicationJson.php","hash":"80764e79e0e407d211afce1671c16659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/CodeScanning\/ListAlertsForEnterprise\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"1fe50f1a0780d8c7f378c8ba40fba1d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/CodeScanning\/ListAlertsForEnterprise\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"55f2224b949c9c83152b215ad02a5fdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterprise\/Request\/ApplicationJson.php","hash":"c7872c4c1c2a89937fce70a7c95f9c11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Create\/Request\/ApplicationJson.php","hash":"559c2a2e48d696d3b9464215ced24f04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Create\/Request\/ApplicationJson\/Files.php","hash":"167188f1e934e404f72529e04b3d4393"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gists\/Get\/Response\/ApplicationJson\/Forbidden.php","hash":"df8b3296f53e8e5b580ee0038cc91945"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Gists\/Get\/Response\/ApplicationJson\/Forbidden.php","hash":"517f7ca0a8ce7f9f7874f6e8db84074f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gists\/Get\/Response\/ApplicationJson\/Forbidden\/Block.php","hash":"7c7f4cfce4c859417e56de4bd28ae81e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Update\/Request\/ApplicationJson.php","hash":"318794c3e8105ba4e2bf6822e5a897df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Update\/Request\/ApplicationJson\/Files.php","hash":"f7f327dad77d99e27f56bc1849abdd62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/CreateComment\/Request\/ApplicationJson.php","hash":"e4ed327ff3786bbf25412c04dafd0112"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gists\/CheckIsStarred\/Response\/ApplicationJson\/NotFound.php","hash":"3a2aedac0405f45e44478085e12cb4fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Gists\/CheckIsStarred\/Response\/ApplicationJson\/NotFound.php","hash":"7188e48b2e898fbdfcc51a0a3b9ac3bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gitignore\/GetAllTemplates\/Response\/ApplicationJson\/Ok.php","hash":"772902bc2e8bd51d9ceb9699d4452c89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListReposAccessibleToInstallation\/Response\/ApplicationJson\/Ok.php","hash":"32143a874791c0160b413dc3266b533e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Markdown\/Render\/Request\/ApplicationJson.php","hash":"1b63a3b1ee21e4a6910916d290a240d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/MarkNotificationsAsRead\/Request\/ApplicationJson.php","hash":"fd917eb9a9c9913ee30a4f39b5a19457"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/MarkNotificationsAsRead\/Response\/ApplicationJson\/Accepted.php","hash":"47d2f422078f1179c01893989b456742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/SetThreadSubscription\/Request\/ApplicationJson.php","hash":"b4ed587c06526bb7f8820fc0e04b2723"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListCustomRoles\/Response\/ApplicationJson\/Ok.php","hash":"c92efadb4d1993a916edd923ce002b50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/ReviewPatGrantRequestsInBulk\/Request\/ApplicationJson.php","hash":"4bda911a963b2f609870032f15b60266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/ReviewPatGrantRequest\/Request\/ApplicationJson.php","hash":"fb8e4a95b986b574a4e529a1db755584"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdatePatAccesses\/Request\/ApplicationJson.php","hash":"5dfd9e6610b54a5c2e9f75a08d385fab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdatePatAccess\/Request\/ApplicationJson.php","hash":"399dc5eb45e04b4163a87cfaa6871ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/Update\/Request\/ApplicationJson.php","hash":"d2a02e488128bd72764ff5779e308d60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/Update\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"3aa68932b9bc40560fe8c2caa536562e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Orgs\/Update\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"3c8b4cc9fcb43891a9ec55132ceb950f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/GetActionsCacheUsageByRepoForOrg\/Response\/ApplicationJson\/Ok.php","hash":"a1f18ff1ba338c08ba0e712387484a30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetGithubActionsPermissionsOrganization\/Request\/ApplicationJson.php","hash":"24383d7976bd278b51a37080cdcb7d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganization\/Response\/ApplicationJson\/Ok.php","hash":"c1b6cad7c62d62de2671966d869e8f53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelectedRepositoriesEnabledGithubActionsOrganization\/Request\/ApplicationJson.php","hash":"68f2f9d2a0f8493da9242e394e3228a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnerGroupsForOrg\/Response\/ApplicationJson\/Ok.php","hash":"662992be2c2af08c6618276be7013592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateSelfHostedRunnerGroupForOrg\/Request\/ApplicationJson.php","hash":"db44bf10c0d590c36428bfdba82bcaf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateSelfHostedRunnerGroupForOrg\/Request\/ApplicationJson.php","hash":"bf8753c4c692901da120aa2559d9b459"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrg\/Response\/ApplicationJson\/Ok.php","hash":"813fa7744895746f0e7f293a1f5dbf25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetRepoAccessToSelfHostedRunnerGroupInOrg\/Request\/ApplicationJson.php","hash":"747c7180f4b80385d3c276c985d60c39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersForOrg\/Response\/ApplicationJson\/Ok.php","hash":"55befd3be39dda06a709312373fc0be6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListOrgSecrets\/Response\/ApplicationJson\/Ok.php","hash":"0fbb3ff5b3344d35efba3d86cf34c2a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php","hash":"653d9d2722ccdf737687ad8cfdd0c7b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok.php","hash":"0e99cda4ff9a7d981a9cd3ef77b8a3a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelectedReposForOrgSecret\/Request\/ApplicationJson.php","hash":"d2d438e4ebc7016a55eba543f5df8701"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListOrgVariables\/Response\/ApplicationJson\/Ok.php","hash":"d0628fa3fa12c688194736c267410fd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrgVariable\/Request\/ApplicationJson.php","hash":"b7042d62b2faa4c3ff8e7574e8fb92b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateOrgVariable\/Request\/ApplicationJson.php","hash":"a3b24b570b83c9c90234ac52d2fc4895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelectedReposForOrgVariable\/Request\/ApplicationJson.php","hash":"8f66c3776978bebbc74ad382a70f12fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListInOrganization\/Response\/ApplicationJson\/Ok.php","hash":"7688183a354135e8e1608bb7944869e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListOrgSecrets\/Response\/ApplicationJson\/Ok.php","hash":"a0d2e20e64fa7e64118fa3e35572087a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php","hash":"53017521803e4a40bab7c1c4b7261731"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetSelectedReposForOrgSecret\/Request\/ApplicationJson.php","hash":"0f2e9a7c1638341ad2d699b94e071b1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListOrgSecrets\/Response\/ApplicationJson\/Ok.php","hash":"f2a4487d7aaa6bbfab08a37ce24890ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php","hash":"acec4c228d01cbbd73baec10e36bd294"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/SetSelectedReposForOrgSecret\/Request\/ApplicationJson.php","hash":"11b5755a09be07dffe1756433830ef0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/CreateWebhook\/Request\/ApplicationJson.php","hash":"67c0dc0aed6d1eb914a3cf476245eead"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/CreateWebhook\/Request\/ApplicationJson\/Config.php","hash":"a1fc130de575dd9d61a223396e797aec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateWebhook\/Request\/ApplicationJson.php","hash":"724e3eaca40098a2d507a5701ecfe763"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateWebhook\/Request\/ApplicationJson\/Config.php","hash":"7e92a57718b915a9155f0005dcb68704"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListAppInstallations\/Response\/ApplicationJson\/Ok.php","hash":"e7a4b6248a3fe879ae97f28e9efc37b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForOrg\/Response\/ApplicationJson\/Ok.php","hash":"1370cdcae80af2e7c09561decef6330b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/CreateInvitation\/Request\/ApplicationJson.php","hash":"f131d3120e8814c7045a9c3519319c97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/SetMembershipForUser\/Request\/ApplicationJson.php","hash":"e7ea37045d940c30195d0dcc517ebe27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/StartForOrg\/Request\/ApplicationJson.php","hash":"289ef5b09488a29ca7761ce83ec762c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/ConvertMemberToOutsideCollaborator\/Request\/ApplicationJson.php","hash":"5addfe71ea6c8d8aa9b4a6a99d1fd4f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/RemoveOutsideCollaborator\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"73b639ec7a3869d06cd0772912ad72de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Orgs\/RemoveOutsideCollaborator\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"a304e204f9086556accc0bf60d94ea8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateForOrg\/Request\/ApplicationJson.php","hash":"537b1a2b7d78fc0fc74fc5de46680a58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateInOrg\/Request\/ApplicationJson.php","hash":"0079170a731e7b76b96064e957989745"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrgRuleset\/Request\/ApplicationJson.php","hash":"18ac018c96045c0729500e27d111771b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateOrgRuleset\/Request\/ApplicationJson.php","hash":"3b6b8288bff9ac6ff46ba7a030a6bb93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/Create\/Request\/ApplicationJson.php","hash":"b90fe70b126bd6cdef909fd271498cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateInOrg\/Request\/ApplicationJson.php","hash":"f92b5b83e091a503e5adeb722cd0342f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionInOrg\/Request\/ApplicationJson.php","hash":"ef0f54ba366590e58cb3216fa4faf8aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionInOrg\/Request\/ApplicationJson.php","hash":"834110e9f95d5527f232ae3b5f2363db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionCommentInOrg\/Request\/ApplicationJson.php","hash":"2472e3c609c9d96b095965d87e2b1c23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionCommentInOrg\/Request\/ApplicationJson.php","hash":"3d8cdf67506eb351c9bbe13aa5c7e7de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionInOrg\/Request\/ApplicationJson.php","hash":"51699ed62282e53623b77fb3f697750f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/LinkExternalIdpGroupToTeamForOrg\/Request\/ApplicationJson.php","hash":"e1c4e7b3b0d250c1f104715ae11cbee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateMembershipForUserInOrg\/Request\/ApplicationJson.php","hash":"10dbf3f4e947e90118117730cdabf6c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateProjectPermissionsInOrg\/Request\/ApplicationJson.php","hash":"351da7f0da496a2a253c9419e5baedeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateRepoPermissionsInOrg\/Request\/ApplicationJson.php","hash":"cc4d457c1819abd05e9f9bbc3430a1ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg\/Request\/ApplicationJson.php","hash":"648679de4976d1bd0e42088392dd7de9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg\/Request\/ApplicationJson\/Groups.php","hash":"8e706ffb7cdaccdc84a189811ad26904"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/DeleteCard\/Response\/ApplicationJson\/Forbidden.php","hash":"0f20248b6fb3d2167948444ec543a062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Projects\/DeleteCard\/Response\/ApplicationJson\/Forbidden.php","hash":"4f05e2dfbcb8a9ede63ca819b83a7d64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/UpdateCard\/Request\/ApplicationJson.php","hash":"b11b7605cfa2be7f23903f7dbecb90fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/MoveCard\/Request\/ApplicationJson.php","hash":"fc53db5e2535339fe837d12f0ef856c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Forbidden.php","hash":"a7b4cb387fbe60bd33bb319908dff93c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Forbidden.php","hash":"c7ef6222138be4210ec459bae7c78d1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Forbidden\/Errors.php","hash":"c978edfc9046c0cd514d7b5b262e5832"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"37b1dbcac499d1050121f9dd07497dd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"937607c34f865c604c5619c7d22e6321"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/ServiceUnavailable\/Errors.php","hash":"793739afcfa4b42b59366209bb2acbbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/UpdateColumn\/Request\/ApplicationJson.php","hash":"47428854f53377f67e668bb668b768e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateCard\/Request\/ApplicationJson.php","hash":"52b83d1eb037e2a38731942e1ff87ef5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/MoveColumn\/Request\/ApplicationJson.php","hash":"d577821f1c07ff34bdbd9de3db6af1cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/Update\/Request\/ApplicationJson.php","hash":"c844c92b56be079fad5d03211e0d007d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/AddCollaborator\/Request\/ApplicationJson.php","hash":"aaeb019022e328965acbf6c7898d3a70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson.php","hash":"6f445c6b6c70d74ad21bcf36d88692f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis.php","hash":"bafd6ae6a716bfda3476dadfb4d3ef64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis\/AdvancedSecurity.php","hash":"2f70b3d1715b2d127b748dd719a07818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis\/SecretScanning.php","hash":"96e57c5f2ee9332d93dc0054b5ce64b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis\/SecretScanningPushProtection.php","hash":"4998e60d90c33550f0bca0162556c492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListArtifactsForRepo\/Response\/ApplicationJson\/Ok.php","hash":"ff4f2eeb72ca7c3e2a11cbb21f7a8622"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReRunJobForWorkflowRun\/Request\/ApplicationJson.php","hash":"0a39382275ef5ede62630ab24e14ed5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoOrganizationSecrets\/Response\/ApplicationJson\/Ok.php","hash":"0a8cb1c350874a85aaa5b6dd2dda0c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoOrganizationVariables\/Response\/ApplicationJson\/Ok.php","hash":"28478aea0a17408149306f9b56dfd40f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetGithubActionsPermissionsRepository\/Request\/ApplicationJson.php","hash":"1c6820725f71fefcd1e4e17d1e69e997"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListJobsForWorkflowRunAttempt\/Response\/ApplicationJson\/Ok.php","hash":"e492429ae5f670380685e023ec1615f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReviewCustomGatesForRun\/Request\/ApplicationJson.php","hash":"040613ef976edceaf99c5e64c29d4699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReviewPendingDeploymentsForRun\/Request\/ApplicationJson.php","hash":"825da23c2c198ddd442786fc6d4c1919"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php","hash":"66000344037b2d0c48a250cad5e7687d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateRepoVariable\/Request\/ApplicationJson.php","hash":"941cdd0458942457b67513b671a5b131"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateRepoVariable\/Request\/ApplicationJson.php","hash":"d5a8ade71db0641b10d11dee3aa53485"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoWorkflows\/Response\/ApplicationJson\/Ok.php","hash":"7be670d077c76c4c4097369592818130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateWorkflowDispatch\/Request\/ApplicationJson.php","hash":"80f3eeaa0021414115a9c67c1d95e75d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateWorkflowDispatch\/Request\/ApplicationJson\/Inputs.php","hash":"42393e3731b2e28ac0f50ecba85eed39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateAutolink\/Request\/ApplicationJson.php","hash":"192a37b97b41b2eee25753eb7f4a4650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson.php","hash":"642ec59a4d4b9ad581387b5691e43db8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredStatusChecks.php","hash":"5b9370b845955d5e21458864bfce97e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredStatusChecks\/Checks.php","hash":"a07263ed0b83e8f4269fa9d2426e1d15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredPullRequestReviews.php","hash":"9e1cbced54b8e80f4e6d3b8487227b86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredPullRequestReviews\/DismissalRestrictions.php","hash":"b414e5e197bae357a631319d966fb8e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredPullRequestReviews\/BypassPullRequestAllowances.php","hash":"2cc71e014683ea309bbe5f924141fed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/Restrictions.php","hash":"b5a397eb0c6b2a095250b0186dc0762b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdatePullRequestReviewProtection\/Request\/ApplicationJson.php","hash":"f69cda3904bf514b4c8fb622a0f951e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateStatusCheckProtection\/Request\/ApplicationJson.php","hash":"6f4d6b65af9ee4774ace5e5792bcf193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetStatusCheckContexts\/Request\/ApplicationJson.php","hash":"2d36e000435ebaee427b5f8c366f147d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetAppAccessRestrictions\/Request\/ApplicationJson.php","hash":"5f9b4af52345590c365b807d9600bf70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetTeamAccessRestrictions\/Request\/ApplicationJson.php","hash":"ea632102249ad9b1cfb421f51ef1e5a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddTeamAccessRestrictions\/Request\/ApplicationJson.php","hash":"3fb59945b50c8a8177b40dff83a8a15e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetUserAccessRestrictions\/Request\/ApplicationJson.php","hash":"f46a80fae5fe7f815f1f73729c7c29f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RenameBranch\/Request\/ApplicationJson.php","hash":"8890ec27be1c57efff76770a0d7d2149"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson.php","hash":"06e84df1efcfa7f5cd1dc58a008b739e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Output.php","hash":"2837ae74e80e0a998aad790bd24e1c15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Output\/Annotations.php","hash":"706c8c4b50563d4665766450c9aa93bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Output\/Images.php","hash":"8226dc50e090309cb967200be4821777"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Actions.php","hash":"4376e9eb6d47763943d795280ed3eec1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson.php","hash":"36017f0dd1fd4e38141c7a3d8712dc07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Output.php","hash":"5fae39e1c0982291a5d613b21b8db038"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/CreateSuite\/Request\/ApplicationJson.php","hash":"f41ac951e898e77217115867ee3b3205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/SetSuitesPreferences\/Request\/ApplicationJson.php","hash":"1c0dcf7c24d126470dd9b11d606b2858"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/SetSuitesPreferences\/Request\/ApplicationJson\/AutoTriggerChecks.php","hash":"a3ba2d9f0fbebd8277cd00c9b1d7e1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListForSuite\/Response\/ApplicationJson\/Ok.php","hash":"50a6c59ca18898dec5300be481d9ffb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanning\/UpdateAlert\/Request\/ApplicationJson.php","hash":"d3d60d750c4615ccb82c5bbffad01a5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanning\/UploadSarif\/Request\/ApplicationJson.php","hash":"7b1e73806074204ed886fd3a705cfd3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateWithRepoForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"3c5d8f7130261969c94414c8b747fc2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"7171791d98a3310d128d127bbc1178c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Devcontainers.php","hash":"af1639897b8a3a0ea47642f7d92a0ba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/RepoMachinesForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"e7eceabfd7d99f981336cf5648ca7787"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/PreFlightWithRepoForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"fd49df6a8b3042a0c6c6fa4074bb6dac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/PreFlightWithRepoForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Defaults.php","hash":"3179f24f6706c32442bd7c1b9cd7d26f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListRepoSecrets\/Response\/ApplicationJson\/Ok.php","hash":"b9c28f22eb77544a23b25791ffebbdf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php","hash":"d3c835052ece3fe5fad2fd24bce66b45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddCollaborator\/Request\/ApplicationJson.php","hash":"e6cd42e473429dd28ee14f9d50061f45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateCommitComment\/Request\/ApplicationJson.php","hash":"5070c1786649da2a7f1a2ccd69d1e831"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForCommitComment\/Request\/ApplicationJson.php","hash":"533a257ec1f2cf0dcd4a5afe7c3551bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateCommitComment\/Request\/ApplicationJson.php","hash":"e10b240f6907b574c06b0f817c3b4eb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListSuitesForRef\/Response\/ApplicationJson\/Ok.php","hash":"a97a58ee17285fe2ed107b76b78773cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetContent\/Response\/ApplicationJson\/Ok.php","hash":"ac58059a1f6d84946661de9a6579530c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateFileContents\/Request\/ApplicationJson.php","hash":"0db67885d07b48096a01683c0fe93a15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateFileContents\/Request\/ApplicationJson\/Committer.php","hash":"d069b01effebd47bcfbeb4bb5220f58e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateFileContents\/Request\/ApplicationJson\/Author.php","hash":"7923793e93b4f9c46bb11f063a800802"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/DeleteFile\/Request\/ApplicationJson.php","hash":"ff67d3db07db36b864e4b3f26ee621d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/DeleteFile\/Request\/ApplicationJson\/Committer.php","hash":"fdf2e44c48deeb9e111934dadb66b693"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/DeleteFile\/Request\/ApplicationJson\/Author.php","hash":"bcca6d5026ad29b566c1f7093793d9cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/UpdateAlert\/Request\/ApplicationJson.php","hash":"4e601aeff1d455d4326101aec5229330"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListRepoSecrets\/Response\/ApplicationJson\/Ok.php","hash":"c0cb9e3cedcacffbe6c826e18b76bfd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php","hash":"015934898a565d2026c7e46c39957cbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/DependencyGraph\/CreateRepositorySnapshot\/Response\/ApplicationJson\/Created.php","hash":"64a060872b8a71b122a0b680516effdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeployment\/Request\/ApplicationJson.php","hash":"a5f3be2a9df1b89ac95f6419f468bb59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeploymentStatus\/Request\/ApplicationJson.php","hash":"db69e10f85386fb31a2e05c8a6850993"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDispatchEvent\/Request\/ApplicationJson.php","hash":"6198de64d107f8de7546edad4fc02047"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDispatchEvent\/Request\/ApplicationJson\/ClientPayload.php","hash":"db2a0c66987c6ff9bce27b6ec7589bfc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetAllEnvironments\/Response\/ApplicationJson\/Ok.php","hash":"821c647292ef22d59507e00301f6e575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateEnvironment\/Request\/ApplicationJson.php","hash":"24c2d98f2dcac43966f68aea58ada6be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateEnvironment\/Request\/ApplicationJson\/Reviewers.php","hash":"1c907372fe82b35014191c492d75fc0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/ListDeploymentBranchPolicies\/Response\/ApplicationJson\/Ok.php","hash":"e691590d44bb0d52987c6b542af843f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetAllDeploymentProtectionRules\/Response\/ApplicationJson\/Ok.php","hash":"4bfe77416f501625ad670902b0b8e7c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeploymentProtectionRule\/Request\/ApplicationJson.php","hash":"03f4b0b2c81c2530e219dc22d978ec78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/ListCustomDeploymentRuleIntegrations\/Response\/ApplicationJson\/Ok.php","hash":"92b46fcf1c59d53ae562a24a57b01350"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateFork\/Request\/ApplicationJson.php","hash":"3f8662e2a1e605a0c04a1964aabb46b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateBlob\/Request\/ApplicationJson.php","hash":"ea72ed94fb2e60a590bc14f7f9a456da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateCommit\/Request\/ApplicationJson.php","hash":"16dd522ceb6c3a0531575cfaa2b13a52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateCommit\/Request\/ApplicationJson\/Author.php","hash":"23ce5ea2ce6366648a63adadf1e5bae9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateCommit\/Request\/ApplicationJson\/Committer.php","hash":"940338d7dbc15bb882280b7928318f18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateRef\/Request\/ApplicationJson.php","hash":"b00100aeb156b3098ec1d6399d08e377"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/UpdateRef\/Request\/ApplicationJson.php","hash":"aaa98d991a3c7131bd1fa043a5ba9c6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTag\/Request\/ApplicationJson.php","hash":"91a3f87b1753c4c5f20a3fcae4d8fd45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTag\/Request\/ApplicationJson\/Tagger.php","hash":"dd073c5fec4cbde036e93d8fbeac6bcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTree\/Request\/ApplicationJson.php","hash":"b4d877fdd983338fc720cfc1c99cf5eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTree\/Request\/ApplicationJson\/Tree.php","hash":"22b87b2176fce97551eab54e32156a68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateWebhook\/Request\/ApplicationJson.php","hash":"539643235c638ad0da468ce03c2dad7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateWebhook\/Request\/ApplicationJson\/Config.php","hash":"85fc30a84c4dfba268a930daa3c7f9eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateWebhook\/Request\/ApplicationJson.php","hash":"a322d1edc6b4ab36f9532cdb09fe3c1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateWebhook\/Request\/ApplicationJson\/Config.php","hash":"884af9ece560496b8dbd2111a91fab42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateWebhookConfigForRepo\/Request\/ApplicationJson.php","hash":"4a0aa2ea6bdbc5bd4d2f16d9c2059755"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/StartImport\/Request\/ApplicationJson.php","hash":"f7a80305dc607f5664d77f46116be537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/UpdateImport\/Request\/ApplicationJson.php","hash":"a6c206bfbfbb4427ff15f097cdf640f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/MapCommitAuthor\/Request\/ApplicationJson.php","hash":"107fd78a99b94467f49fc22f1c577d34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/SetLfsPreference\/Request\/ApplicationJson.php","hash":"e791e81e424f0c4163516c34a57484d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateInvitation\/Request\/ApplicationJson.php","hash":"b3e56b14bdb8a6460ee332277c5bc710"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson.php","hash":"0d036f997a203095d5f4751a484b0e36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson\/Labels\/One.php","hash":"064eb8586fe87cff511b522bbe482aa8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/UpdateComment\/Request\/ApplicationJson.php","hash":"eaabcde66b8a6a7ad7f5e77397ce6f46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForIssueComment\/Request\/ApplicationJson.php","hash":"17dee1fec4dc45cdb4ed9d07b33c8741"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson.php","hash":"51e690cc7de77f883106810988748e30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/AddAssignees\/Request\/ApplicationJson.php","hash":"35d39c2ad466eb452029ad2a10a7adce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/RemoveAssignees\/Request\/ApplicationJson.php","hash":"88bb3ea392ff3c212a22172b5cb210be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/SetLabels\/Request\/ApplicationJson.php","hash":"30412449c8997e5d3b9f84c87339c7b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/AddLabels\/Request\/ApplicationJson.php","hash":"d7e5644b669f0e16bc92b0304f976e97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Lock\/Request\/ApplicationJson.php","hash":"61652397b218d45dafffee10c4f0b569"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForIssue\/Request\/ApplicationJson.php","hash":"d1317205e27a66c03484619ed1b5f4d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeployKey\/Request\/ApplicationJson.php","hash":"f3cc91b10f343129ed2caed3afe7249e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/CreateLabel\/Request\/ApplicationJson.php","hash":"a9ff92cac52f95db111c6bc8e3c2a086"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/UpdateLabel\/Request\/ApplicationJson.php","hash":"86e3f625be4089f6d42a4ed4e1b0fe68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/MergeUpstream\/Request\/ApplicationJson.php","hash":"69f47f88d7a5dddb6d5cd2a6d3261ac7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Merge\/Request\/ApplicationJson.php","hash":"2218936e1eb347cce1029a25522be16c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/CreateMilestone\/Request\/ApplicationJson.php","hash":"ef03868c80d39031c2d7f77b8b7e291f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/UpdateMilestone\/Request\/ApplicationJson.php","hash":"83eb06070bea3555644e6842ff6b5f54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/MarkRepoNotificationsAsRead\/Request\/ApplicationJson.php","hash":"b15851016ed5974b4249d50c27908383"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/MarkRepoNotificationsAsRead\/Response\/ApplicationJson\/Accepted.php","hash":"253ace86f8edaa3b284dcd449349a61f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateInformationAboutPagesSite\/Request\/ApplicationJson.php","hash":"1ae430c2207ef84ce8c1f28cf4546419"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateInformationAboutPagesSite\/Request\/ApplicationJson\/Source\/One.php","hash":"b8f6eb55af597cb19fc03c1a8d4bf13f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreatePagesSite\/Request\/ApplicationJson.php","hash":"e8c83e7e5690b9058d1a826f738621d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreatePagesSite\/Request\/ApplicationJson\/Source.php","hash":"c7349dce9d538d31b966ccb36929a4e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreatePagesDeployment\/Request\/ApplicationJson.php","hash":"6df8570aa10d68b0c83b4e07b1234491"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/Create\/Request\/ApplicationJson.php","hash":"3b71a44f99b0ccbcd66a092eb0fce544"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/UpdateReviewComment\/Request\/ApplicationJson.php","hash":"60e8668e8edf04971b3c5a363761f0bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForPullRequestReviewComment\/Request\/ApplicationJson.php","hash":"6612ca30ac18e6873c6334e606a0ddb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/Update\/Request\/ApplicationJson.php","hash":"4f3387bc333e8d1b0685ab46db917f4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateWithPrForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"40e65f28ae523ec134656fdce7b8ccb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReviewComment\/Request\/ApplicationJson.php","hash":"61763e22fe19fa9735b54bf0c4bf9686"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReplyForReviewComment\/Request\/ApplicationJson.php","hash":"7401a8e11e0dcec7e81d64b8315addd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/Merge\/Request\/ApplicationJson.php","hash":"dffca54c694878ca9014443682ce5390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/RequestReviewers\/Request\/ApplicationJson.php","hash":"b67adfe9ab1eecdd0791dd3c6ea1c8bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/RemoveRequestedReviewers\/Request\/ApplicationJson.php","hash":"135b2d4996cb69077a792cc1cd10c686"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReview\/Request\/ApplicationJson.php","hash":"5625be97d8e6ed8dbf50960b7d97d280"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReview\/Request\/ApplicationJson\/Comments.php","hash":"d9b1ca752215e976651463077af56748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/UpdateReview\/Request\/ApplicationJson.php","hash":"0d9bc53a93653f72b5f60dda12aaf66e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/DismissReview\/Request\/ApplicationJson.php","hash":"2fe805074d561090884e74d4b7917446"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/SubmitReview\/Request\/ApplicationJson.php","hash":"15ffce9af7d5ab9d6be6075f282a2603"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/UpdateBranch\/Request\/ApplicationJson.php","hash":"0bb276f3566db0574039ee7e30f5c0fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateRelease\/Request\/ApplicationJson.php","hash":"de4859a24ec522f14e02b1c86b8e8d78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateReleaseAsset\/Request\/ApplicationJson.php","hash":"92434d6f69d48533a775f59a686b7bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/GenerateReleaseNotes\/Request\/ApplicationJson.php","hash":"202cfd9925415e88943f1cb7a296f097"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateRelease\/Request\/ApplicationJson.php","hash":"1aa8f1321a5a425f993e691c4fe2c1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UploadReleaseAsset\/Request\/ApplicationOctetStream.php","hash":"03de65654a23f3c623c521698ddf1656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForRelease\/Request\/ApplicationJson.php","hash":"5fc21153008a6d80b51d109813aa67b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateRepoRuleset\/Request\/ApplicationJson.php","hash":"47d8753d93cde19809373292ca6782a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateRepoRuleset\/Request\/ApplicationJson.php","hash":"5089dc2b1ffb60a1157eecda2ae9e97e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanning\/UpdateAlert\/Request\/ApplicationJson.php","hash":"1243d316204ea1790822c3a714b50eab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/ListStargazersForRepo\/Response\/ApplicationJson\/Ok.php","hash":"37370d5a91d50a84925a9ad50e892eab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCodeFrequencyStats\/Response\/ApplicationJson\/Ok.php","hash":"cc3ee66c2bf555d0b76b5ca88e628f31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateCommitStatus\/Request\/ApplicationJson.php","hash":"600761bd3116a726e06ca792c44a0e46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/SetRepoSubscription\/Request\/ApplicationJson.php","hash":"586d472a366ef532c720d4f7d1105e6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateTagProtection\/Request\/ApplicationJson.php","hash":"de5fd1d0b85f3f096d41d16dc699d697"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/ReplaceAllTopics\/Request\/ApplicationJson.php","hash":"c282bd6a17e502b53913ea74dbf9afdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Transfer\/Request\/ApplicationJson.php","hash":"3fc61877f19367730e8da1fcb76bc47a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateUsingTemplate\/Request\/ApplicationJson.php","hash":"c4072be6c137d2f4f422d482d9adc8c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateEnvironmentSecret\/Request\/ApplicationJson.php","hash":"5c908a707b39c8a1b8f27cc435b95d3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/ProvisionAndInviteUser\/Request\/ApplicationJson.php","hash":"02ec18bcd858765921d7a18a3985273d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/ProvisionAndInviteUser\/Request\/ApplicationJson\/Name.php","hash":"472791d3dce0c0cd01e16489da915905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/SetInformationForProvisionedUser\/Request\/ApplicationJson.php","hash":"08061617da29ca40e695841f7e463143"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/SetInformationForProvisionedUser\/Request\/ApplicationJson\/Emails.php","hash":"ba5c3df405c1d6d2f43f986bcfcee649"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson.php","hash":"54a7189d32ca6e34f69c263a3af0fb92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations.php","hash":"b74045a6332323c945192c7b67c1fbd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations\/Value\/Zero.php","hash":"90b4e290cbf773edd440e04316006614"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations\/Value\/One.php","hash":"4a4ce349d8d78f17ee272788be8b2071"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Code\/Response\/ApplicationJson\/Ok.php","hash":"00694e66d7a8e39b23b2e7a77d9ad8e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Commits\/Response\/ApplicationJson\/Ok.php","hash":"ab2efce86a2cd3cc3678a10f40ccd0e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/IssuesAndPullRequests\/Response\/ApplicationJson\/Ok.php","hash":"c1bb4b7d3ed47f9923d43dd6243c6e3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Labels\/Response\/ApplicationJson\/Ok.php","hash":"7f8645c98ac3dbec5bb3e5730ae7da2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Repos\/Response\/ApplicationJson\/Ok.php","hash":"6c79b503cdebdd94c7021abd78eede03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Topics\/Response\/ApplicationJson\/Ok.php","hash":"971c336211ccf393f2d7f52a1a3c4c6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Users\/Response\/ApplicationJson\/Ok.php","hash":"d7e06955ea088e8226052211ce56bc5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateLegacy\/Request\/ApplicationJson.php","hash":"324fb358dc0c066b27a7c216ebc1ee8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateProjectPermissionsLegacy\/Request\/ApplicationJson.php","hash":"6cd4f2c430bb36147a678e098f34505c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateRepoPermissionsLegacy\/Request\/ApplicationJson.php","hash":"7089ca242ee1a5ad846609de3810059f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy\/Request\/ApplicationJson.php","hash":"b77dd4d7ebfda8cc8fffebbbca494b93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy\/Request\/ApplicationJson\/Groups.php","hash":"9c85a4fcb286d3f31154f78af6e259aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Users\/GetAuthenticated\/Response\/ApplicationJson\/Ok.php","hash":"76142a317f93e98d22681ff0b019dfb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/UpdateAuthenticated\/Request\/ApplicationJson.php","hash":"a590393ca49abc011a83a2acbf1da292"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"81d5a346d8d2ba5e2635037a9192175c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListSecretsForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"d63709b22b51c87d75f1344a131c4fc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"2ccd3cf906bb36aa0f72f92f37d59e6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"97957f0338190b003bd669c117a403b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/UpdateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"31ec9a7325dc691da759d318da505f31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/PublishForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"bbf37665425a4ef6f9e771a3f33805d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"c89943f8013bbc6761e730fb75635915"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/AddEmailForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"b8181a2e0de9a7275f3f118e7b93d2dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/DeleteEmailForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"be6df0b07a4ce4ccf88d9276da46498d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/CreateGpgKeyForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"6b2f7c20a100e10e4ab8170036c52cc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListInstallationReposForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"3e1ade30735318fcb4bbbc2d8df304b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/CreatePublicSshKeyForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"eb2bf6d14e9f56745def9cb69ed4db78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateMembershipForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"b52a41dee04f5ef10d4087e7d452ae43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/StartForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"1687983ea40b891c4e41d67a6b1d2f5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"7acca234994e591ebf8124d9cdef5e11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"565957ffcf6d2cacd96f5cf7cff1291c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/AddSocialAccountForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"b9b391ccd358102ae182b543011a1496"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/DeleteSocialAccountForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"c675b591daa9e90a07c70b9923c3291f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/CreateSshSigningKeyForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"be1036613a416054d4ab00876d5f91dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/ListReposStarredByUser\/Response\/ApplicationJson\/Ok.php","hash":"b0b99b96798aefcfcc5454a3a83e754d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Meta\/GetAllVersions\/Response\/ApplicationJson\/Ok.php","hash":"96e185a1c2696c346c16d9fcde563fcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/ClientInterface.php","hash":"91fbf8c9e70d5d86829a726b6039df40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Client.php","hash":"070c9e34b6dc8364c143156d0139f776"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Meta.php","hash":"a53481b59e594b70650e8772c13440a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Apps.php","hash":"97b1089362ee37dea038f8a711bc0f30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/CodesOfConduct.php","hash":"2078abefb4e8a5e441097225fd9f0ef9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Emojis.php","hash":"7718761810f34c12a97716d77bfe0cca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Activity.php","hash":"515746929d98d6196e716b317b36569b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Gists.php","hash":"2e021f94ca2f5da1dc477306c1c42159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Issues.php","hash":"6c266f2f00db2ce2482e590c30d1a687"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Licenses.php","hash":"f58a29f1fc220c720d38a7e9e092f00d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Orgs.php","hash":"ec10cb21632d45cb4742a45f992bea50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/RateLimit.php","hash":"3306c7478e0426f3e9501d21a444881e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Repos.php","hash":"d97efe19c717a82dee1005556f4616d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Users.php","hash":"0fcdaf0f0c7bbf7d956ea9ab4010d684"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/EnterpriseAdmin.php","hash":"39802d50ddf9df2ab3365246a7f72955"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/AnnouncementBanners.php","hash":"17ae9fba6e42a5b9a27ccbe7563558a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/SecretScanning.php","hash":"0bc833d58050a471e192470c4374d7e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Gitignore.php","hash":"fdb9b23b5dfb6c2591475a42d8a6479e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Codespaces.php","hash":"4b019bd773bb7300f35a98a68ff5b364"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Teams.php","hash":"b9f5f60dd69a059857c1e6143106dfcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Interactions.php","hash":"6b4914178489fdc13a89a6b3ad0a5b1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Migrations.php","hash":"a138f3100048427042dc2e06f4768fa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Packages.php","hash":"faaaae24c72d0b7fac3fc12083a932c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Projects.php","hash":"446fb42e99f7ccf6c3438675b95e820e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/CodeScanning.php","hash":"595e85867648ed694003688837c4df0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Dependabot.php","hash":"1797ce72a5e362a4b6fd180f428face1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Actions.php","hash":"566b2d83e61521b1397bb20ddeaa39af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Pulls.php","hash":"b0fadbd19c8bb6c0b296e259a7a85dee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/SecurityAdvisories.php","hash":"add678c2d7af1bb6bdf7271f48e6b00a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Search.php","hash":"c053bf1a3a7027a713320cb185571fc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Billing.php","hash":"74cf1aae72f2c8152d493cacb5cbdd4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Checks.php","hash":"b75e06a0a0c11b27c374c11103696c7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/DependencyGraph.php","hash":"89c652ac75640824169c2cbca264ad22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Scim.php","hash":"db2c79949e00f11777104aa2ac5aa032"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Reactions.php","hash":"664d3d8d507592633e9b7fb3c08bebd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Oidc.php","hash":"2a891e5dc57043b69a78db9a645fa477"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Git.php","hash":"848da3dac40ec56f5b453cd6b6601fdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Apps.php","hash":"92fa3ddffa7f4f5a8bf52d3c048866e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Gists.php","hash":"697eb8603011db5c5c4b41d05a43f2f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Orgs.php","hash":"1b9194d7774bee73afc8ff15b318d743"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Migrations.php","hash":"f19841bb13db1f5b9d663b15fa40eb99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Projects.php","hash":"e71c3b9e5e93305ee034e4f4993a345d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Repos.php","hash":"5c42f88cab1fe649febf436d967c58df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Teams.php","hash":"02c89d4bb409e23e55066f50665e7823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/EnterpriseAdmin.php","hash":"53079d8a05a62fcf076462feb53f745f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Actions.php","hash":"6c01ab8fefca2a2392a3c01518dff865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Codespaces.php","hash":"a41f5e946120c7c048954ea0ac2efdd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/CodeScanning.php","hash":"b1ad9fa100ea0e321f79f511747d6f48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/DependencyGraph.php","hash":"24b41b90455a95a14d016239502260a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Git.php","hash":"fe79567c2a110bc7e9633ae7e7bb82da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/SecurityAdvisories.php","hash":"dc0d0691fd4e457384ed4eb5b1ec32cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Scim.php","hash":"1a01a893d03e51270a743e25b1fbfc4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Reactions.php","hash":"bc30c984002ed3eaf1d844990a2c1211"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Packages.php","hash":"82ee3a4fef9949ea1edab0fdcf0c1e49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/SecretScanning.php","hash":"480d64521e97cd554fce908b2dcdba06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Checks.php","hash":"8238f5603525613be6afe107dbe8d58c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Issues.php","hash":"250ae9c5c12ec6e3005e5107d0dac962"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Pulls.php","hash":"9098bc8dc5bc977bd321c5ad1ef2757f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Markdown.php","hash":"64f2853aa0a156640022e383e39fdf5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Users.php","hash":"b48c7f475382e0fa35dfd14097677c1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Apps.php","hash":"f0b72fc3966669c8914bee78035a7b11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/AnnouncementBanners.php","hash":"d337a77099f4999780128e10bb1929c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/SecretScanning.php","hash":"c5b1b6b1b7768d5da937da810e7849fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Activity.php","hash":"e29bc6212b13cd5687ec8fc286edd190"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Projects.php","hash":"c9e85fec7d39287c127ba83b809efdfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Repos.php","hash":"7c4931c2c963c99e978651fe3b0efea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Codespaces.php","hash":"a62b3136c9945bbc72fd517ae2d7bccc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Users.php","hash":"0783da9c02b23d4524ae5ec8692518ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/EnterpriseAdmin.php","hash":"bc06c0c72e379ef40e543a351dd56fae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Actions.php","hash":"9bb05c42127ad14d0ab1fcfe93aa490d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Orgs.php","hash":"8294ba7a3f27ef2e198b50091aaabd2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Teams.php","hash":"6af46345d969bc9875c0c85986e99876"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Checks.php","hash":"529382c8fabb4258afda5c028855d3ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/CodeScanning.php","hash":"a62d289fb90f692c92d5de14911da955"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Migrations.php","hash":"83ceef558a3ce7ca7975f6739359499c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Issues.php","hash":"eaac0b23b99c5e9d040f7b268a469030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Pulls.php","hash":"63a88854bb2339fe35a0d5f72e28fdd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/SecurityAdvisories.php","hash":"c3824a2413cebe9d730a877ad140a0a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Gists.php","hash":"185eee31dc9b4d8de4ee40261cd5761c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Dependabot.php","hash":"7343a2661e28b4f2e2c21f58023015a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Git.php","hash":"7f015e9571520ca674d251bb00f722eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Scim.php","hash":"8003a30676a3b9f12648b3ef571a338a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Apps.php","hash":"8252b460b2d758d71ae7211ce0b37283"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/AnnouncementBanners.php","hash":"c2f09bb69da47df2f8f61836563e1d23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Gists.php","hash":"969d9e9c9b2b9cdd8280f92886f3acc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Interactions.php","hash":"fc50308974c1959b4b1253b9f64eac14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Projects.php","hash":"83084be14084c13ab66ee012c1240009"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Repos.php","hash":"868834a2c940e3df9df6afc609687d2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Users.php","hash":"1f628a29e1460779b07e16980ed6cee7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Codespaces.php","hash":"af84fdb0bb3acdaf805be8f67c822592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Activity.php","hash":"8f03edc6ef907972d5b3093239aaf04f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Orgs.php","hash":"6512d8f2295e155271c85ed05979c159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Teams.php","hash":"74b497bba2e25092c7251fd18d12f1d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Migrations.php","hash":"a21058965a933586139482fdca408843"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Packages.php","hash":"d795aa6983796a17e4b07b9157d5d607"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/EnterpriseAdmin.php","hash":"0e2b4b92a3168668e0f78e41ada6a1da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Actions.php","hash":"feb97bfa90791f858510270e9b9dfe75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/CodeScanning.php","hash":"c2985d8c6901428839abdf365b71faef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Dependabot.php","hash":"7ee7191a1fbf37a4e8ed4669ee565ff9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Git.php","hash":"3b198fcb95c7aaa42f242ef7d10d1689"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Issues.php","hash":"1ecd97d14cd51485fc7b7f03bb38303e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Pulls.php","hash":"2da07890115e78fc7f35945b9ead0358"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Scim.php","hash":"64c9b22ad0a1b0a569b1a35a2d13c011"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Reactions.php","hash":"33481cd83f7c2935fe904cc30dd1e856"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Apps.php","hash":"7085e48b03400c3ec260c91be76f87d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/EnterpriseAdmin.php","hash":"5d26efa8615498f8219c4a2df4aa16f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Activity.php","hash":"c7ade66a060d308a865f12c0d03727ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Actions.php","hash":"0df5f4401f053dbb5842ff855b5d9d50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Orgs.php","hash":"fb66b48e28d188270e69835cacb80803"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Codespaces.php","hash":"2d6e35f499049cdea1635cf23cfb621c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Repos.php","hash":"24e45d4ab701f2e09bcfdb23cb9c3880"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Projects.php","hash":"0601fc6a3e30b1b4983e9a30739c5139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Migrations.php","hash":"260b27d42f9c05d2e8725c9960c8917f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Interactions.php","hash":"701e37452c531ec33aacfefa23f8c69d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Teams.php","hash":"199654bdff4c190e69c68106b41458fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Oidc.php","hash":"70e77ae9407b6d63c048bd9e79301b89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Dependabot.php","hash":"423a386cd97e33f42f9b479c70a640d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Issues.php","hash":"51dc06083ea5665307f4038c18ed01ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Pulls.php","hash":"a5e081b607f55a23a4211152904dee92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Scim.php","hash":"6e9dd73f51efb93069626b53bc64918d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Gists.php","hash":"b4e3da7e59493845421302ed210ce122"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Users.php","hash":"5b223fd4a78d1e69c958e5ee0af4dfb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/One.php","hash":"4acf6c0083d0ef75d0507e97cce620bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Two.php","hash":"95b61467975ef68acd0a4b1bba5dabdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Four.php","hash":"cd199769e385381cdf0ed17a51f6554b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Five.php","hash":"d1f4a8c3b4feed4e85df5c73a9554981"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Three.php","hash":"df2b1dcdaff39ab5ae3765f049d1da8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Six.php","hash":"2b021c6d6f8c46e2bc6b0f1c3771bcb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Seven.php","hash":"d00275d7f0b69ffcb69068a6db3a8c56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Eight.php","hash":"bd09683e4ad734155da912dddfc0fc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Nine.php","hash":"44108bd44c94e3c2b505212aa28787f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Ten.php","hash":"290f5ac10177835426e898b22f62e198"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Four.php","hash":"dde236ae68c846621b29d5b1dbbe7ef8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Six.php","hash":"982869b873cf4af427e90cf839957ec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Five.php","hash":"d71be0995232fdb4e3e8f7db6cf84544"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Seven.php","hash":"a7acd28390e8ef13e65c27a0e684d8eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Two.php","hash":"f6c53cedd9423e982c74594e09ad6873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Three.php","hash":"0c8f2f71fdd90d64da1addf6dca04e40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Eight.php","hash":"0a99faf70cda4af951d874599b7fbe45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Nine.php","hash":"89f3f30475601ba08419d3e22cb981a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Ten.php","hash":"1d31edb22c4ab31b4b40c0b828539ae6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Four.php","hash":"69a24f05cd00c42c5185afd914c6c55f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Six.php","hash":"d1a012b4b7558dde7d8d9431bbb758c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Three.php","hash":"ce923715f4d07e118fb9a00499a468ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Five.php","hash":"8a94b37c76325db0366040c881dc8f3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Seven.php","hash":"0b18c99c33317928b4e123ea521eba63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Nine.php","hash":"3cd5e8089df48dcd43daf04011297731"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Eight.php","hash":"365823d88a5a482818bd1a3e1976270c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Two.php","hash":"87213c9271997edc9a0c8c347723c9cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Four.php","hash":"d84824a6b091fec6d019bd270a9724f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Five.php","hash":"bc65395cc9e67a1a41a1f49441ad6d01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Seven.php","hash":"0c9ae4606a1b80475f8c39255de80e05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Six.php","hash":"44c4fc4b86447a407ec6a6111e3e2a69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Eight.php","hash":"b8d41d2ba6f923516e0a1abea7ef8a53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Three.php","hash":"76753d0a9bb65110bedf33bd7b701756"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Nine.php","hash":"291fa92ea0717a944f2d282d2e977fdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Eleven.php","hash":"b3e762ff780491e00e00f2c2ebf81f44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Five.php","hash":"b516bae205bf2efd8e1d37044f05e6c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Seven.php","hash":"4fe8f352653b8da8cfa77ee65bc10b39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Six.php","hash":"62d7fa8d00e0304d75ea6f669417b9dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Eight.php","hash":"f4ca2cfc6f5a13cbeb32ecaea67b30de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Four.php","hash":"38abd95ec0109c4de3f6e94cafe3ddf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Two.php","hash":"c0b038f63896f59ab72e3973d3339689"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Nine.php","hash":"d31fb1ac9bd5c684e06bdb0cb8e0eb8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Three.php","hash":"419adb51fe64e7780ba15317d552e8c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Stream\/Six.php","hash":"4bf9e0069221797f30069d3e96d1d1c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Stream\/Eight.php","hash":"83d70f3a6ac3f3d4076f6172317315e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Stream\/Ten.php","hash":"3988845d20c001c424576de38235f921"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/OperationsInterface.php","hash":"8442e52d3b67c1089ffb03a4fdf7a657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta.php","hash":"e0d5c9c4ada27cf134c924e8480bffd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps.php","hash":"ee91e0a41cbf4e811bb0908fb82b9ec6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodesOfConduct.php","hash":"79f59b3fe4ed5181fef9b12d4ea3db39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Emojis.php","hash":"73fb5a597ca9ab725e81f0f73cf4d971"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin.php","hash":"6c218cb2e3aa910d5ffadfd5f93e0741"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions.php","hash":"13788f07e610269a43cd460b29862095"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners.php","hash":"9234c73ac040a48899fe07a5b8b0dfb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning.php","hash":"2a51b32097a5b5a0fb8007f0ce9bcfe7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning.php","hash":"da5676d34ce20c0a294221b630c22776"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot.php","hash":"91d76a24011954b3fdffcbd2ee0f4ec9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing.php","hash":"29f2bf885ee87feec824676a3d73e3d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity.php","hash":"3c0e95efbc52b7a1b2f448a971ded0a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists.php","hash":"52b962cc347a04264fe33a90bd487a17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gitignore.php","hash":"91078ea4a8976dc60ea855b4c6bd268d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues.php","hash":"145d2b3002ef6838d6577ec5a0ad7c61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses.php","hash":"73f5a20a1cf09df800a385944842c3a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Markdown.php","hash":"f4d6effa3cb3f10f582377aaf8b1d861"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs.php","hash":"09cc82768de9c34f116a4360fb99a814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Oidc.php","hash":"7498fe6e361094758f82ab4aeb70c1a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces.php","hash":"4e48e3fd834acfe74adbe0e9a9c07653"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages.php","hash":"df7d77f4b1280d4a1f78c2fab003a707"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams.php","hash":"881e12a2b0cc483d40869b718e874f4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions.php","hash":"d423ab8b1143de1ba8d26ee68c7ee135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations.php","hash":"df95a84e32bf27600f70c87495498388"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects.php","hash":"06c9f7dd6648318c54158c7ccb779c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos.php","hash":"b5ad5bdaa7c2d14dc613645a8269749c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions.php","hash":"018ba820bbcec5a6905f578b821a82c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/RateLimit.php","hash":"c749de15924215ceff3a3c2be4bd8bf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks.php","hash":"db078c93c52585feff6d8f19ed5da07d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph.php","hash":"3b56e9bb71e06b5f16fde36255831cdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git.php","hash":"9410bdf31bca406cd3c2c71a0798c79d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls.php","hash":"0d4e821f39f6ff0316043ba16deea2b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories.php","hash":"087d519985dd4e5cbefd086a302ed5dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim.php","hash":"3bd60b75e15fc774cba47cdc0b666c58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search.php","hash":"2ef644acd241ff8938156520a90b81d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users.php","hash":"39bd34c17bccd24b334926874772b5d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operations.php","hash":"22c3f8ff70fbbf721d7bb522e21cff6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/WebHooks.php","hash":"336bfa37721974ed164525674208e503"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Root.php","hash":"2ed1cd01c285b7813d8ca8b98b951882"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App.php","hash":"e184acd57120e553798016220f2ed174"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/AppManifests\/Code\/Conversions.php","hash":"244d1bd50cc33634d93088cf8cfe92da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Config.php","hash":"369aaf51f1d3229b6020265fbfacf6c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Deliveries.php","hash":"56296ecfbaee28f772862688c116daab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Deliveries\/DeliveryId.php","hash":"5795445f40d3fc9f24a2feb8a7ed4c96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Deliveries\/DeliveryId\/Attempts.php","hash":"7d0aeacd6762504d593c918128f0c971"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/InstallationRequests.php","hash":"9f7d1b8bd87f400e8a4db40ef4985714"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Installations\/InstallationId.php","hash":"bd4061b376560aa9f4c87b25985fef91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Installations\/InstallationId\/AccessTokens.php","hash":"8649dfa0bacd2da47ddb4d3a6e9411fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Installations\/InstallationId\/Suspended.php","hash":"3d84fad26941882e9f2a812dd172c18e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Applications\/ClientId\/Grant.php","hash":"d5145aeda50cdfe9fd475f23c0ff1406"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Applications\/ClientId\/Token.php","hash":"e4b59207cb50265d602692064fb3c6f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Applications\/ClientId\/Token\/Scoped.php","hash":"a30215e54e47c9ba94f7a39254736e2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Apps\/AppSlug.php","hash":"be53d77feb19b408350d72843a5c7b60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/CodesOfConduct\/Key.php","hash":"65641ca20ccf5c86333b1b9e45a30afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Emojis.php","hash":"2a5d11def0f10505499d4c742db4f8fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Cache\/Usage.php","hash":"85cf2228484bc2eb142a670feac5e818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions.php","hash":"4c92b8c1a14da8c15d6fd83120f8d814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions\/Organizations.php","hash":"c3a9f6fd039db3d06deb5b67a387b50b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions\/SelectedActions.php","hash":"d790dfff5d799e939f182b21318dbc00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions\/Workflow.php","hash":"8051f6ceb7ba1e77a24902eacf6237de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups.php","hash":"6d50a975f95e9323d3b82ef5f4823ebd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups\/RunnerGroupId.php","hash":"dc06a2f60ba96885632f535e926dada6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups\/RunnerGroupId\/Organizations.php","hash":"448d46ec5a59574a5ad89851601eec07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups\/RunnerGroupId\/Runners.php","hash":"ee222c0eaef1cebe04c3548881918b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners.php","hash":"8717a36464c54b1776420a51f2b3fd14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RegistrationToken.php","hash":"c20d71cebe41d4559a440484ba8af5c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RemoveToken.php","hash":"5a5dd8db2b4f5932e945a95e94fb6ca5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RunnerId.php","hash":"6b298e474cef509b32de74452cdf7c19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RunnerId\/Labels.php","hash":"77c541f06a0015b718d72cd54f920e0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RunnerId\/Labels\/Name.php","hash":"237180a3dcd64ad148e02646e0eabe70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Announcement.php","hash":"60c8d6a5a5a53982b2c6a2aa1751f284"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/CodeScanning\/Alerts.php","hash":"14d95693afab9905fd950598a015484f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/CodeSecurityAndAnalysis.php","hash":"1b27d46d5ee8d75f4e2b5584cdede0e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Dependabot\/Alerts.php","hash":"7d3601f156a9be380e58e8f55f3e2bcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/SecretScanning\/Alerts.php","hash":"0235789835d89615483c3e2d8d5c278a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/Actions.php","hash":"f668123e4d1bc56d4df685f693a98eaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/AdvancedSecurity.php","hash":"14980c7ce7b29829b4915dd275a796f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/Packages.php","hash":"a9126fc2e2633f989b02c94761d9f174"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/SharedStorage.php","hash":"20e6310deca2e62464bf3265df635ffc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/SecurityProduct\/Enablement.php","hash":"d98a6887996702623311b9a943c7a8fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Events.php","hash":"6f5fbea7e306dbc7d38f23c6aac3f1c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Feeds.php","hash":"479a7b61aeea5ba33f6c548e11bddb5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists.php","hash":"890ac50351764e27e1fbdea3cb192da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/Public_.php","hash":"30e36461e0a6e84b75e3bf0a895e6205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/Starred.php","hash":"d85e2cb5c5625a78b397b83b8df63362"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId.php","hash":"245c4945fd831f18eeb74da36f0d5160"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Comments.php","hash":"ccdf5838cba32b38bfda99347687797d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Comments\/CommentId.php","hash":"19adb5ec96392b0e374f8cba57e84fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Commits.php","hash":"fa7b2a4bc10101a120a2d6cda01d89ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Forks.php","hash":"8d7b6d0165f02e0bb43a99bf2a92a26b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Star.php","hash":"e1f2c9e8d756a5610c24f8ac7669be2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Sha.php","hash":"9ed9fb668db6f209a405331fa9176ffe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gitignore\/Templates\/Name.php","hash":"cab4911a4ecd504149d04361326f10c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Installation\/Repositories.php","hash":"5825230c4a6e866cc6a15ab47f149e5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Issues.php","hash":"8b3babe97d8eec386fdb9edba0525fb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Licenses\/License.php","hash":"3120e6978f21bb522405b4b580dc4e59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Accounts\/AccountId.php","hash":"527a58ebd170c7ec0aafad141244c7e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Plans.php","hash":"7e3f2e6083eb6633605d94160dd4948e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Plans\/PlanId\/Accounts.php","hash":"f984356636c8dfbba302c17c25d6c1da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Stubbed\/Accounts\/AccountId.php","hash":"026d5bf8d3a04ebb0c2779ba33ab3862"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Stubbed\/Plans.php","hash":"f28e4ce4ddbe2d50c76062a93a7ad80d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Stubbed\/Plans\/PlanId\/Accounts.php","hash":"5114748d208b3d726823e4d5b8e996ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Meta.php","hash":"9daff6058c8df5be1887c7379ddedba5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Networks\/Owner\/Repo\/Events.php","hash":"5cda4f0e59aae706ea52cee21b37b32c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Notifications.php","hash":"3b6e6fe678f4599c88bf24402dab63df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Notifications\/Threads\/ThreadId.php","hash":"cae16936dbf5c71e07632d4af8760443"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Notifications\/Threads\/ThreadId\/Subscription.php","hash":"7c0905073a70a0aea71db60d3bb71342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Organizations\/OrganizationId\/CustomRoles.php","hash":"9b24a9ba5a48140a2062a5bdde810514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org.php","hash":"445e1a33a53d338683d70ea05264b00c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Cache\/Usage.php","hash":"36d31fab4d6e2e96830bdfcbcfeb7209"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Cache\/UsageByRepository.php","hash":"d1d940fda7b8a3d8026f69ce6cb268b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Oidc\/Customization\/Sub.php","hash":"51be84b18e1b4882070e7f76ef625a0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions.php","hash":"f882472616f40049848c07e761e3a28f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions\/Repositories.php","hash":"cb99870f6a8460c57aab061c077fc995"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions\/SelectedActions.php","hash":"66aa25f1d9062074cc29ce62f68f1ca4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions\/Workflow.php","hash":"a94a44793034941ab6a43880e5e412a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups.php","hash":"702519ce0463a1e32338ff94b38d215a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups\/RunnerGroupId.php","hash":"372da7229fca83e76b0e22fb1818ea13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups\/RunnerGroupId\/Repositories.php","hash":"89543dfc82374dab8ac1bf62c3371f54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups\/RunnerGroupId\/Runners.php","hash":"237d1d56414b411d79ac572582d85827"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners.php","hash":"45d502d4d6d2dad41ad3942195514a8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RegistrationToken.php","hash":"4cd4e65a16a5bdae51afff179fcc4f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RemoveToken.php","hash":"13602a5e2e24a9dc45513839e0437e71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RunnerId.php","hash":"005e727afa553fb1c3e9de9f0223b42a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RunnerId\/Labels.php","hash":"3c292087d2269c85b311fa6fc56b945a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RunnerId\/Labels\/Name.php","hash":"c575198be73631ee56a210778d4e6cb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets.php","hash":"106f8e8c48c47540d65106cbab9034f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets\/PublicKey.php","hash":"3af2da45acf9a38f327d6a9ca1a1b7d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets\/SecretName.php","hash":"f0844db70ea0bdc564fc0bc6d5f1838e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets\/SecretName\/Repositories.php","hash":"2ad4218dcc8444aaf0f2b4efc0e69e3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Variables.php","hash":"c1f02126b44e6cee01eb16d9eb8a6ca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Variables\/Name.php","hash":"32cc8dc7d6ac003a32dd19595e1a40e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Variables\/Name\/Repositories.php","hash":"f394cb6c9c2b941be298f0e941e41e3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Announcement.php","hash":"cdddfecb6adabd38ebb786143ebe1273"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Blocks\/Username.php","hash":"87f66b9c0c9868de9f79da44c96cfaba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CodeScanning\/Alerts.php","hash":"9c980afd8f5c38666c77292d7b2a498e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces.php","hash":"a8b0baa54625030c7d4b5dc3d0df28fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets.php","hash":"8d3717330a2b95d319d11d591fe8e1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/PublicKey.php","hash":"1fc153265e27cbe3ee2957972260f0ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/SecretName.php","hash":"dc9ebb1477070cf969221ae2d62c69eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/SecretName\/Repositories.php","hash":"efba6b95bc9386d2d8df8c668acec232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/SecretName\/Repositories\/RepositoryId.php","hash":"7994fbbbaa439bfa5c9afedfbe5ab628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CredentialAuthorizations\/CredentialId.php","hash":"30a52aabb723036bbdc2a665b0a5f940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRepositoryRoles.php","hash":"7e4c214192ea1cae2ab7d4ab4fff8c8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRepositoryRoles\/RoleId.php","hash":"66990e730977afc41d6d63c8a2da15d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRoles.php","hash":"b15332067d7e8fcdcbc1f58be2eae569"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRoles\/RoleId.php","hash":"7f17634235d3ca612dbc3b8073423227"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Alerts.php","hash":"e3a852bf282e42a0055486ab44e824fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets.php","hash":"db3f7d9aa4214f14dc93304f415070e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets\/PublicKey.php","hash":"568e79f9ebc7d55dec689e328476ae35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets\/SecretName.php","hash":"faaa4fd677c977d2c9d561bf60c268e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets\/SecretName\/Repositories.php","hash":"09edbb2839426d2b436d6f2c60a5e72f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Docker\/Conflicts.php","hash":"bea0e2383adf90cf386fe7c890144f5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/ExternalGroup\/GroupId.php","hash":"b0779ffc2394a7104e51c26a6d6f73e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/ExternalGroups.php","hash":"539b8d109bf98852722a2686c6633c3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/FailedInvitations.php","hash":"6397b1de7e4d9e5bd19d33097fad3400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks.php","hash":"aca69a3d7848cdb5c94ff967422c9342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId.php","hash":"362df6491bcc7684f831812ef6a9a788"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Config.php","hash":"ce2d234722c28730b4eb5905fa76e387"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Deliveries.php","hash":"e1b5ad2382fc19f837e2b4bc2eca55a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Deliveries\/DeliveryId.php","hash":"20035ee1b900f41a98637db0737a527a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Deliveries\/DeliveryId\/Attempts.php","hash":"89b94aead975f406936b75d26b7909ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Pings.php","hash":"2b3eb108c0d21d24626282b86d54f699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Installation.php","hash":"b652edaac91642e82a2c1eb461440ed6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Installations.php","hash":"d9fc7281cfcbdecb4af5b4f371f7262a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/InteractionLimits.php","hash":"c86e5818627ab9834f98f7403a0e455e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Invitations.php","hash":"d73348e283325e9cfb6ebeeb45ad3b7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Invitations\/InvitationId.php","hash":"479c32209a384f8befdb95e296de079d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Invitations\/InvitationId\/Teams.php","hash":"e7817a4073a9d6d3898c7abd319a82c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Issues.php","hash":"7770fa0349d6e07f0c956ee01c2284b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members.php","hash":"802e7f546205825cf6cd937a08b87a79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username.php","hash":"312108f42f2a4bc8283fbbf37805315a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Codespaces.php","hash":"cc42ac4a723bf9ac13525235c57f60ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Codespaces\/CodespaceName.php","hash":"fa61d112f0df41aaea1edd8b14ffead0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Codespaces\/CodespaceName\/Stop.php","hash":"f2604451603cbed1cdacfb9d73ca5124"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Memberships\/Username.php","hash":"2bbc8572f396c5d23dcc41d5f1dd7f5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations.php","hash":"1a78e6883b4fd174fa788ddcc2e5bb94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId.php","hash":"1b42ef34d91b3822bc697a95f2260e1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId\/Archive.php","hash":"571df6d05463faefe576bebf101b6cad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId\/Repos\/RepoName\/Lock.php","hash":"af341197ab907487084a2eca9566088f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId\/Repositories.php","hash":"84ac87bfc820c093d155c3c6b1958a0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/OutsideCollaborators\/Username.php","hash":"ee6093a589aaef26b05ebc9a155a2c7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages.php","hash":"f305cff7780fbf97bea338a415b25d8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName.php","hash":"585f95bd34175f0845a44a423ff8d9f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Restore.php","hash":"fa47c0459025ba0a8aa1cfd3d44d8e5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Versions.php","hash":"262b6be5fbdbef58072413172c21b2b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId.php","hash":"ac7840acab9f8b621a322d674853bf28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId\/Restore.php","hash":"8c0b0cf08a80cd808773a4b6992fc9bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Projects.php","hash":"571d95f008dd816df7e5303e766e491b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PublicMembers\/Username.php","hash":"fa88333a4d4baf81e7c4ab962fff4bf5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Repos.php","hash":"044bfae65dd23ac9ce6b24446ed14556"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Rulesets.php","hash":"e527c890f4b5dfae92121ee6491ab1a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Rulesets\/RulesetId.php","hash":"b466f0e1daafb416ebf5b4cc9b16e8ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/SecretScanning\/Alerts.php","hash":"566d0c3de13b9e5cb56e5ac1bafa85f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/Actions.php","hash":"a47519f9c279d271d2ead8c2afcae669"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/AdvancedSecurity.php","hash":"0113fe096d24353f4ad92a3c401622c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/Packages.php","hash":"442ed62040890c0ac17f57ba0ae364e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/SharedStorage.php","hash":"b1b234d699e1c0dfb282ca3b17a640fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/TeamSync\/Groups.php","hash":"2209a6ebb68971e76a1cbaa151a824e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams.php","hash":"7316bf069dd88aead5247ec3e6d7ab14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug.php","hash":"e297a6bc9fd683e27e06d70557159792"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions.php","hash":"0a0d6684164ea94f82f722c0bb52fc2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber.php","hash":"8f3afe0596068f1534e6f06fdd45e5e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Comments.php","hash":"c0f19b2411c5a8aa78a920404d9e0d99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Comments\/CommentNumber.php","hash":"cb0939b9a5eff7c00f22c507cef22767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Comments\/CommentNumber\/Reactions.php","hash":"7ba2b326f98154c43136b98b1d95bc9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Reactions.php","hash":"96bf6f3315a58ea8574a55c195f9ac90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/ExternalGroups.php","hash":"2d15598a58678183d9e100ca1903ea1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Memberships\/Username.php","hash":"43df3b50867d75152596d84446cd6399"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Projects\/ProjectId.php","hash":"9a334749cdd6e0481309dfbaf2b405c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Repos\/Owner\/Repo.php","hash":"cf864ed5c70023554e9f90c654e3e528"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/TeamSync\/GroupMappings.php","hash":"bda68482333f49f454fd5b94c5173e3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/Cards\/CardId.php","hash":"51a69c1ba2ca42047be13512394dd310"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/Cards\/CardId\/Moves.php","hash":"411e5d83427a6cdcc950636422ec21a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/ColumnId.php","hash":"99410e83d712dfd42bee314ca00b80da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/ColumnId\/Cards.php","hash":"4ceb0d6779a882bef1ecabae43fc9311"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/ColumnId\/Moves.php","hash":"ea3c1087bf22b9f760aa55bba4be3ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId.php","hash":"05c410c70436158861dae8acd709e007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Collaborators.php","hash":"2e7b1b9332705fa65cb8937ea38f763b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Collaborators\/Username.php","hash":"5a61a0eaec76066226649a5e225ab9ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Collaborators\/Username\/Permission.php","hash":"06d06c8215852b2af5afb5b3eea25299"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Columns.php","hash":"a7c1c396374e867dd0530a8737166fb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/RateLimit.php","hash":"bf47601701cd8cff0346829e8bff20e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo.php","hash":"93df1aafca0ea8f69f9093b2cd51e1f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Artifacts.php","hash":"3016b3d1c56989538a603d2ba8e433f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Artifacts\/ArtifactId.php","hash":"50646a7218c15eb5d7faa406bff8c78f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Artifacts\/ArtifactId\/ArchiveFormat.php","hash":"919e9c5ef70009c25acc655d9077e001"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Cache\/Usage.php","hash":"0b6c2ae1b2419bc9f300e512c8bc6479"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Caches.php","hash":"2597a14637ad6be650eeb65ae0c0d1ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Jobs\/JobId.php","hash":"6fa0b5145a81ac8d257cdb33904c31d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Jobs\/JobId\/Rerun.php","hash":"c6c29130aa0b96c78775dce7299eca59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Oidc\/Customization\/Sub.php","hash":"2b17f6ec2e3985aeb6d7c36d3f8acc88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/OrganizationSecrets.php","hash":"564330c7d09fba58380c205685a3f172"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/OrganizationVariables.php","hash":"c358d9821f46b84b415547c2cf5dc8f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions.php","hash":"d07a8760283615330f8403419c9b9976"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions\/Access.php","hash":"6e88ee8e0ed4845d07ff02a320393824"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions\/SelectedActions.php","hash":"64187977de1ee4b4a1cd5c232b408ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions\/Workflow.php","hash":"ec1e6e54eadc1ee211f7fc6bf89318f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners.php","hash":"8428ef0949b95c3937c19b5c1544b29d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RegistrationToken.php","hash":"1011ab43fcb8dca8d62a92b09c13ddae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RemoveToken.php","hash":"4199e9a5b3b2c15a31a534c4805a6dab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RunnerId.php","hash":"d198e155f294c0a73acf785ed75ccb3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RunnerId\/Labels.php","hash":"d5e016ca14cd066cfba6297d12ef039c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RunnerId\/Labels\/Name.php","hash":"91f3d06bf36886cdf3ab6406f9fe21c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs.php","hash":"8f557f6f4b083c364bc8015ab7770255"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId.php","hash":"d28955957adcbeb6889edccf1b51411c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Approve.php","hash":"7ed2ba000e620a76fbdb0a7c47bd66dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Artifacts.php","hash":"00e7f82493da22f55b3790f6c24c82ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Attempts\/AttemptNumber.php","hash":"5983a649ea971da4f3438ee643d87408"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Attempts\/AttemptNumber\/Jobs.php","hash":"318459dba4e2e650501f38e58b4e38b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Cancel.php","hash":"4bdebd69e320a2361b2a4f4d8e417ddd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Jobs.php","hash":"eb40dbeca43fe9302f16e1682d218944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Logs.php","hash":"da02ac82cbfa180365dff9a6bc256d42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Rerun.php","hash":"40295d1a35f835364e1a2ee7acf88ac1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/RerunFailedJobs.php","hash":"27caac2fbfa9474fcc5d4e4aabdd70e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Timing.php","hash":"25a605e7a232ff644d250c773760cd22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Secrets.php","hash":"70742ba3f543127373a87bf75f084684"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Secrets\/PublicKey.php","hash":"da563d6323837d415198d83946ee58e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Secrets\/SecretName.php","hash":"d23bc8b744b87633ae6d42c5f85ccf8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Variables.php","hash":"df712b939970724833e49ce2d74a96e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Variables\/Name.php","hash":"66322945ac417837fea440d64dd5e77f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows.php","hash":"d02847e7e7231c9d601abfe2aa9579f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows\/WorkflowId.php","hash":"0994e44b68b8a179f6c1cce9ef884995"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows\/WorkflowId\/Runs.php","hash":"13ceeb05f4933e33e6944cc39e946a87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows\/WorkflowId\/Timing.php","hash":"9ece6c844d5f133fe45f736061c6929e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Assignees.php","hash":"d2e86c6b6a294cb500bb120563acdb61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Assignees\/Assignee.php","hash":"0c0ffd869a14f43a6536806f5773d003"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Autolinks.php","hash":"4fd95a52cfc8941dfda01e93bb20c608"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Autolinks\/AutolinkId.php","hash":"01a85e0d41822d33d1d712db31df41bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches.php","hash":"995d0dba4b809c5ddcd391ab10bae8c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch.php","hash":"2a7559aac02b0e5b4e16854924032787"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection.php","hash":"487249c6ff45d75d81fdc0349a4359b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/EnforceAdmins.php","hash":"1eb1a41a1d927ce985ebb4a09905ba33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredPullRequestReviews.php","hash":"56845036ff488bd4593813fb3cd2fb3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredSignatures.php","hash":"958210ae4bbd5ce68f5687e7a9b3da2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredStatusChecks.php","hash":"b278317413861150f078c23011d5a786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredStatusChecks\/Contexts.php","hash":"ce89fbb1c89b3ddcb4d1eb770007d3b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions.php","hash":"16f740e51197c6fe0a35f59864fd9284"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions\/Apps.php","hash":"0457f8304f4ac3b54df82e8e10f9a374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions\/Teams.php","hash":"9cb76a19b856a92ab390e7713b5eaeb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions\/Users.php","hash":"f509ee1efe204ef457794cc4a1c7c6e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Rename.php","hash":"22b29d8ba3836a064d79bb876f5aadf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckRuns.php","hash":"38d757651081d538ddd82f4304def069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckRuns\/CheckRunId.php","hash":"9a2e337b494a82431a2bb2d7868345c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckRuns\/CheckRunId\/Rerequest.php","hash":"8945815f41640f4635daa4b8992015c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites.php","hash":"ed78d5e794fa303f040aecd88d897f92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/Preferences.php","hash":"429aa0eae27f80cc24f30fa7cd7a07be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/CheckSuiteId.php","hash":"4b9b2325ba944d5fa218ef81422045fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/CheckSuiteId\/CheckRuns.php","hash":"d5da4387fca545eb59fef4e5cfac2b6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/CheckSuiteId\/Rerequest.php","hash":"ef6d775ff07aae3498b4356dd76d47e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Alerts.php","hash":"5c06b5f814c7b48406e86a77e8b2d458"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Alerts\/AlertNumber.php","hash":"fbbd7a8d8312b101acd727a80d3aad91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Alerts\/AlertNumber\/Instances.php","hash":"fe918cd65d7c6e5777944efd02dbdf01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Analyses.php","hash":"b53ad3baf094f54598b6632b922c0372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Analyses\/AnalysisId.php","hash":"3371ed8114cffb344f7710086090fe6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Codeql\/Databases.php","hash":"cc781f7f128524f89e3fbd23f876e7d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Codeql\/Databases\/Language.php","hash":"e494d215e5d0aea85fa999d2fefe530f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/DefaultSetup.php","hash":"e83dc65d56cea1604d25d4fc7decab9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Sarifs.php","hash":"3aef1126983074bd951d99e164c3d195"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Sarifs\/SarifId.php","hash":"2a41d078a377aec6e4737d4cc7aa00de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codeowners\/Errors.php","hash":"934feaf44a1aa865418eada65a998505"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces.php","hash":"0f3ee939e7c8e72d3edf3f870d5fbf64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Devcontainers.php","hash":"fb1f18de7ae9e54c6871077ed011a2ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Machines.php","hash":"8ba7e71d42fe974c85646cab2c2887c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/New_.php","hash":"0a24f07b553ba2fda1993b32f4cd4659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Secrets.php","hash":"1f8eae06e825311004fe5313ffdad3f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Secrets\/PublicKey.php","hash":"740b0d9a3cc41571b01bcb76b1593aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Secrets\/SecretName.php","hash":"056f438bffeeaef3caae76e8437209da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Collaborators.php","hash":"05b4c3a56bd1349992b767fa52c71796"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Collaborators\/Username.php","hash":"1731c1e80986773c1f4f4a145658fe19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Collaborators\/Username\/Permission.php","hash":"5286990cf83a0aa1e444d0c3aefc4306"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Comments\/CommentId.php","hash":"2c7ec7216fad4888b66993deaaffd58e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Comments\/CommentId\/Reactions.php","hash":"91d7bb9cb992a6b5d063612e1d7c6865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits.php","hash":"544e7c38252e3fcf5cc8fa21ad13e2d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/CommitSha\/BranchesWhereHead.php","hash":"6ff165a90219dcc159919bd9a99da348"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/CommitSha\/Comments.php","hash":"0bc68be114d84e9c4dc9637baf012213"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref.php","hash":"0a1816193b029f28b05138bd8c95c893"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/CheckRuns.php","hash":"f4f46d75bec3ccd756a566759c25695c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/CheckSuites.php","hash":"6bf5b44a232497f383f2159ca7338488"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/Status.php","hash":"9892fc93b12081a22c4fbcd563a87da5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/Statuses.php","hash":"3190aea299b4702c703443b66f73a6a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Community\/Profile.php","hash":"60f77742496505c557a7119caecfda4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Compare\/Basehead.php","hash":"749628ad3adb7bb45afdf37964c60ccd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Contents\/Path.php","hash":"75053ad2600677cf29c0b20e4cabd794"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Contributors.php","hash":"1c55d080990eb0053f2dd184c682b6e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Alerts.php","hash":"d1da4119c55d9bffccfb6a2406ed5a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Alerts\/AlertNumber.php","hash":"3d8273617da1241d18de1800e9aeb8b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Secrets.php","hash":"3c108a5e719c2cc1cb5e45385e76b232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Secrets\/PublicKey.php","hash":"2a107b96f77137dc8c513e5a1c245647"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Secrets\/SecretName.php","hash":"4ec95c287b9040e63b937c4c951dc80a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/DependencyGraph\/Compare\/Basehead.php","hash":"caf7a76147ed07beb419eaf85e281c71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/DependencyGraph\/Sbom.php","hash":"ebd41127499217e9d32d337b51e207fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/DependencyGraph\/Snapshots.php","hash":"6a4e3924825249e0a58567420dd01374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments.php","hash":"faa1527354bd8c09aaccb06732cd3664"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments\/DeploymentId.php","hash":"88b9daf2100c0f4e1462bfd823211333"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments\/DeploymentId\/Statuses.php","hash":"914ab01743bcda4d64155dd3eb35580e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments\/DeploymentId\/Statuses\/StatusId.php","hash":"31bd16deedf0eb4e77cd40a8a2cb6894"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dispatches.php","hash":"73aed909d6be2e9305137923e08adc2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments.php","hash":"8faa533fc4a1af9463ccce735a3be4dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName.php","hash":"9fba41f88e31448bb697d6aac779f746"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentBranchPolicies.php","hash":"36938f7f76975a09eb70c568e05c6f14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentBranchPolicies\/BranchPolicyId.php","hash":"87101f2ec763fe9531b1c131c3454527"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentProtectionRules.php","hash":"f8fb39399b9c69212fa151f6bd9318b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentProtectionRules\/Apps.php","hash":"78dc01b537189c3744dec1d51e4804a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentProtectionRules\/ProtectionRuleId.php","hash":"78f9d122e3e277e56d7504a1c8d7f575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Forks.php","hash":"b120d3316600b90cbdab40c45f9e4057"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Blobs.php","hash":"f26ff3e89b2a16f41c6ba2785b1942a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Blobs\/FileSha.php","hash":"a4a62e1e107a23adf52a638472a407e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Commits.php","hash":"bb9cf74a67ad35b5673a2e140ca3ccca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Commits\/CommitSha.php","hash":"41c3c70ba4765a3767b57f39cf974199"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Ref\/Ref.php","hash":"08e61c50b6296326e6d63aa81b15dbb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Refs.php","hash":"601daae62fb65c4d042eadbb29ca8f14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Refs\/Ref.php","hash":"2dae7caa56dbacc240c6ca0df2b9fcb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Tags.php","hash":"f1687e9e90bc442951646e26dfa11994"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Tags\/TagSha.php","hash":"9624034b70044098b3632e22da9bf329"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Trees.php","hash":"c8b9ea50e89073cfe70385ea0fc79b5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Trees\/TreeSha.php","hash":"86bc94b66490c0613deee7f2ac09101a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks.php","hash":"068cbb9084dc61485a180d9318339007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId.php","hash":"a8106d22a48fd61411d88513af1e22a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Config.php","hash":"196f9ea678354827d979edb7f129be27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Deliveries.php","hash":"8066db170644ef97630b99dc17b26da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Deliveries\/DeliveryId.php","hash":"db9d4118ba040c7152a0f9228d2e370b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Deliveries\/DeliveryId\/Attempts.php","hash":"e36d89303896f2132f1e8beb8e125708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Pings.php","hash":"bc6a6dcad405a3cb1bc15febb28c5e74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Tests.php","hash":"595f88a40d888ed7770738323645b62f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import.php","hash":"a6464b24651c47e519e4d9d73c2743cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/Authors.php","hash":"b00c474a50b410935523aad5abdf0c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/Authors\/AuthorId.php","hash":"20a06a3bcd5ad8b62dea9c038faa56d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/LargeFiles.php","hash":"5dc15afcf5121377faff285485f96db4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/Lfs.php","hash":"d484e47d1af382d74aa9de7d17fd78a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Installation.php","hash":"b2f1607756450788e8cd2c09e5808ba6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/InteractionLimits.php","hash":"e425532cd2b787aba45d4d87df9c8cd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Invitations\/InvitationId.php","hash":"c0f1f16cdfe24b669b22062441647fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues.php","hash":"9f815109496a06a98c7f2a7c88b0f0d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Comments.php","hash":"fa463484c598e30a45dcbe785309c209"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Comments\/CommentId.php","hash":"cc970391a29a26767410cb5020108d9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Comments\/CommentId\/Reactions.php","hash":"6f9ad48c0e8953ebd4ab2fcd739cb66b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Events.php","hash":"2d3e46c886720b8ae07362893fe7e42b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Events\/EventId.php","hash":"0ca112a780ec254120f1b68a91177afc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber.php","hash":"29626ee9f6cc0c64d683a7d48b2c8a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Assignees.php","hash":"23115bc28b86fd846563a3f713dc8f5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Assignees\/Assignee.php","hash":"8bb3346e0b15309168306559aa2d7aa0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Comments.php","hash":"86f6f34abf17140bbabf7906113e3757"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Events.php","hash":"9166be5156bca0ee4cc78b63f72dac8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Labels.php","hash":"3f6bbd896cdc98d36e7c2c59899baf88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Labels\/Name.php","hash":"e9af1d611bf83be049ab2420dd0c3cf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Lock.php","hash":"7bb2b5faf35f6d67ffec21d9b0b95760"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Reactions.php","hash":"9d95aa2ad1fee6e74cb24e974f045149"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Timeline.php","hash":"a56bea07875af983a5e400fea4f3292a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Keys.php","hash":"264377b8ae6bef1b820599d2b0010d38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Keys\/KeyId.php","hash":"32b31a19b1215029f0e073fdad7732af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Labels.php","hash":"8718256dd95713add1c84f36a8c61acf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Labels\/Name.php","hash":"f3884acf861cdbcc2dfa6a88da1afbcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Languages.php","hash":"f92d05a0955035791268a1ba1d260733"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Lfs.php","hash":"75882c65958c0311582afbea38053d74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/License.php","hash":"355c4820b032164c5ff0fd3ee562f0ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/MergeUpstream.php","hash":"db839253adab8a9dde71c69d47c1f863"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Merges.php","hash":"659f679190b7109b97136f52176f7e06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Milestones.php","hash":"2f0de6771b1a2657de153d450e8bb7c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Milestones\/MilestoneNumber.php","hash":"99068bdbaf52cd6bf31a6c39af787527"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Notifications.php","hash":"a2aac5dac969f5ef136a857ff1e84663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages.php","hash":"a9f01ed3bf83797f1caf84756432dc6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Builds.php","hash":"986dd939af04c2bb4ad67f7755cf6170"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Builds\/Latest.php","hash":"f432752a4845b7b5030b009b38dc8a28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Builds\/BuildId.php","hash":"e2e06852b7d3deb1d752f79db6a57964"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Deployment.php","hash":"f54f152bb44c039372a6291d688873cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Health.php","hash":"0757c17773e904e4f3a6a2053446d047"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Projects.php","hash":"0f90d8df7a5b3625972f53b9967dcb58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls.php","hash":"6048485fbadc6292cc64c7ecafde2ca0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/Comments\/CommentId.php","hash":"39f6ff55adf5e0abff372ce1e2f91706"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/Comments\/CommentId\/Reactions.php","hash":"9fb6659594d883af7468ec45afa38723"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber.php","hash":"ee0b3650f20bb6cdf0d1876fdd4e0fdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Codespaces.php","hash":"658c0cf74995e97f0ca7156e2acf30b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Comments.php","hash":"fff295a5ee819310b0a9d2c3d22c7899"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Comments\/CommentId\/Replies.php","hash":"59f5bd6c7ad49b4388f818e693c49ae1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Files.php","hash":"e5c9da6300dfa0ba0f67ff95a6acf5ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Merge.php","hash":"df8d0c49e06ba5d58d82ceab69471611"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/RequestedReviewers.php","hash":"79bafbb421c411281c171f65696ddcff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews.php","hash":"ca73ff449efce4cd2c6bbb3402d2bb95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId.php","hash":"06c6e335ad1ca4fd461d6904a3675e42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId\/Comments.php","hash":"de1f99342812f46275f3e1e30c93e713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId\/Dismissals.php","hash":"c395c9bbd613c788e7b696f983cb534b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId\/Events.php","hash":"734e6e999d66ee89e5ae178a531fae1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/UpdateBranch.php","hash":"a4169b1d9aca2e1935bb147b21404530"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Readme.php","hash":"893f81fa7adf8484e201139e091802c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Readme\/Dir.php","hash":"00dbebe473708888759efe2392274a4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases.php","hash":"5a6e60033fc957ae2ff6a1a6e8dadf9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/Assets\/AssetId.php","hash":"536d214b8afe2e72ff7af0badc17e9de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/GenerateNotes.php","hash":"7361bf658855e20f8e51bed959251e1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/Latest.php","hash":"69d4039a65fed7efc8f68e5244870358"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/Tags\/Tag.php","hash":"6ab08621622b7d846d24d815e70ed462"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/ReleaseId.php","hash":"97c996e8d9e11461eb9c939047693232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/ReleaseId\/Assets.php","hash":"9d5e8497c06dcbf08bf9ff8b51e33736"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/ReleaseId\/Reactions.php","hash":"0d86a86096fe197f387547f4e84cf9a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Rulesets.php","hash":"b071735a3832dcc0067f5c57d88359e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Rulesets\/RulesetId.php","hash":"9e8f01e0e29e2196e3856b2612fcb3a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecretScanning\/Alerts.php","hash":"f444975b144f44bd40018a768864e7d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecretScanning\/Alerts\/AlertNumber.php","hash":"40ab765f538699ddc75603d8d43f3d25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecretScanning\/Alerts\/AlertNumber\/Locations.php","hash":"2e6e2ff0e8d65fc346639f86b893f3f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories.php","hash":"a673801e38657c5e440d365ce86fad62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories\/Reports.php","hash":"ff6cc48218c731b63e39e9673dcdc02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories\/GhsaId.php","hash":"2f3997b7847eb4885883ec713c2cabe9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stargazers.php","hash":"81cd2abdcbad1494a104109ae59407a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/CodeFrequency.php","hash":"4f33c605c4365723693b87c5a0caa631"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/CommitActivity.php","hash":"0d8a02fc821f1e22f9d6fdbbd84cd52e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/Contributors.php","hash":"48df683a8bf19c11ffaeeec60729b46c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/Participation.php","hash":"3c4e22c7b4925dbafd9d48ea045d9c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Statuses\/Sha.php","hash":"89c0600b958cca2fd6cac4808b70fe89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Subscription.php","hash":"85b281252d40c581131138b01799ccc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Tags\/Protection.php","hash":"8689f9665ad552046b01029cbc9b1b38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Tags\/Protection\/TagProtectionId.php","hash":"c6928d7698a56d747ed823ed5ce2c403"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Topics.php","hash":"068445bbd2194795bf31dd40c8313c16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Clones.php","hash":"b773bdc089910a58bb55005a1415b868"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Popular\/Paths.php","hash":"563614dab8e473b68343d5b9b2ac0f15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Popular\/Referrers.php","hash":"77691ccb44ad8336257433e92b0188ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Views.php","hash":"16a0322f0d3347ff355ce58045d9c7f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Transfer.php","hash":"583c2821a54e84483030c573a25793fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/TemplateOwner\/TemplateRepo\/Generate.php","hash":"a35b44d38294f1756b4ff6b4e9a62f8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories.php","hash":"c6bb451bf1375cd0fc725f8187c90f0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Secrets.php","hash":"27b0f7f7691d48858627da1ee16764e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Secrets\/PublicKey.php","hash":"2f46048be6d79361212f1543146b0b18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Secrets\/SecretName.php","hash":"9c009d530a53fbc7f4d0a352885f77c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Variables.php","hash":"1bf6e2ff1eb18e52b107c6151ddec534"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Variables\/Name.php","hash":"82c1c3c334c7da78c3df4b45e96b3c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Scim\/V2\/Organizations\/Org\/Users.php","hash":"1535ccec354ffe0fce6d3a5580386e3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Scim\/V2\/Organizations\/Org\/Users\/ScimUserId.php","hash":"78436ca8a2b1a5cf6e19ec8f68418106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Code.php","hash":"9f8e73d11147fef95ad13da71c9052cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Commits.php","hash":"6030bfdc25706ea5757656b75d5a8928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Issues.php","hash":"ea016d98a3791cbb7c8400a2425c7d88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Labels.php","hash":"a8069da53014e709adfdf9da941e22dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Repositories.php","hash":"e961c1929d2409bcce43d7c96fd29f64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Topics.php","hash":"31aedce258897a24ebcb9138acc95ab8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Users.php","hash":"e98b08cb591eb48b1bfb06cb37efceb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId.php","hash":"0a7cb89032952b7e3141ad263afe99ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions.php","hash":"4fea10290198bf0ac0a95eb75c12bb47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber.php","hash":"75e10912245d472d880e5195ec407b8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Comments.php","hash":"c223d0856ce9bad8b8d9237812fce6c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Comments\/CommentNumber.php","hash":"0caadc98b1486cd235e82e2f54e587ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Comments\/CommentNumber\/Reactions.php","hash":"b193dd1ee7f013529127d3b786000a8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Reactions.php","hash":"1b281e99a0884acfdcdc9789bb18f82c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Members.php","hash":"3c9d917303d1690e3c995d5828810be2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Members\/Username.php","hash":"be419598ca56b888a8a4bfd39e15f266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Memberships\/Username.php","hash":"f0216d8c73b4d062ebf071e1ba3c53bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Projects.php","hash":"352832b3414d4dd18b06741470a7d4c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Projects\/ProjectId.php","hash":"9f52ae2c1edf6a1595b8702e27dc74db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Repos.php","hash":"beca9716aed2a45cea8dc453fed934d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Repos\/Owner\/Repo.php","hash":"4a27029d947026632cd52e576bd794b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/TeamSync\/GroupMappings.php","hash":"d930506e1034a601c5a8bf712900366f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Teams.php","hash":"71071c0f09cf0fcd296b0e6dae63e852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User.php","hash":"02cd105937a9f1876fb2da1258f5b44a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Blocks.php","hash":"88c27a07e3fe0765f6dc54baa29d6ab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Blocks\/Username.php","hash":"64272daba5d9d1c86c4fcd0938cafb35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces.php","hash":"e64121030666aada87913c65cafbba8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets.php","hash":"4bcaa2605423dc8976414f98e128fd9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/PublicKey.php","hash":"22f2a397610f1a344e9588af4948ca65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/SecretName.php","hash":"8fdd47bd17940dc20ed4d7712bdde7eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/SecretName\/Repositories.php","hash":"6036061a32651b35a833926431cde3cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/SecretName\/Repositories\/RepositoryId.php","hash":"0606e24457e47e5ce8af893e534693bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName.php","hash":"8b33902a51e2ecd56c90be4f23d30dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Exports.php","hash":"51475252a4712167df82726b24922e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Exports\/ExportId.php","hash":"fa280afafa5458dc5dae3dcc956be1af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Machines.php","hash":"fe75b56197e57daea98ed6066684853a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Publish.php","hash":"4dec2c03bda9801b7d0edcc44ba235e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Start.php","hash":"2db110cbb103d1a24394c875ef841f3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Stop.php","hash":"939a24b20a29110b8618f5192abb1afe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Email\/Visibility.php","hash":"f294c185789f72f5b78d845ae741fa7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Emails.php","hash":"ef1c253ac549d92f6cdbd9088dc15500"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Followers.php","hash":"db094eeb2b837217e24ab272143ba77d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Following.php","hash":"35a066fcec4814b5c8c899e390088171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Following\/Username.php","hash":"13d902ac43766c37d5428ce7661bc32e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/GpgKeys.php","hash":"7f292c6c0676606205193cad6eda9cb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/GpgKeys\/GpgKeyId.php","hash":"1a415ca23da38be6ce2bf50613efb695"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Installations.php","hash":"064851b6264f26b5f85e37d32a93b2b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Installations\/InstallationId\/Repositories.php","hash":"db6fbff23fe4c4086c66542385da010e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Installations\/InstallationId\/Repositories\/RepositoryId.php","hash":"0671e45109a89ef8dddea60f3f06bc2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/InteractionLimits.php","hash":"ef968ce09d6c416649cc42c87cdad555"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Issues.php","hash":"8663412d2b738689d948db82ff2741af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Keys.php","hash":"3dc4bcee985676ac180e92d5392a1451"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Keys\/KeyId.php","hash":"d1e67c9c2fcc714c92ec5e4d94011481"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/MarketplacePurchases.php","hash":"ae5d3bac1647e8e24c63a2c5e7b77f44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/MarketplacePurchases\/Stubbed.php","hash":"575aabe962ef60d209817a65969f5be3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Memberships\/Orgs.php","hash":"b17925fc51d180fcb1837dc237e55d7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Memberships\/Orgs\/Org.php","hash":"d814a7a5e19db58fece2ede1115bd940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations.php","hash":"67e52fd31a75f89ea9da707708f315c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId.php","hash":"caf629825a31438a33475d2813fd034e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId\/Archive.php","hash":"ba2694703d374375c70294f35a80f582"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId\/Repos\/RepoName\/Lock.php","hash":"3e1750cd3506b96a9c32c125122478de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId\/Repositories.php","hash":"4e480ccb6667298e8da0bb1520a7f9e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Orgs.php","hash":"be278fc7e9c135c933a2b0ba02239c9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName.php","hash":"93adde582d84be0251369d443f99a9d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Restore.php","hash":"4ca5bfb979c3ca85ea415aef525889b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Versions.php","hash":"e4eb84a7b334a7f0b30ac0c6d0baa30e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId.php","hash":"8cd9830b14f445dddef3dfe271f78c57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId\/Restore.php","hash":"4fbf938ce031301f6fc43d2f0a1196e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Projects.php","hash":"dabe6fefefa987125c908a52374e8e82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/PublicEmails.php","hash":"63a47b45e677f89cc77420b8aebadc0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Repos.php","hash":"8c6cfc21d01533c004e72027f9944ab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/RepositoryInvitations.php","hash":"b391ad332860f02f25073c04c73772ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/RepositoryInvitations\/InvitationId.php","hash":"f11196f68795e88a082556a29a4314c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/SocialAccounts.php","hash":"9a6e9f3b525cc99a15ae05914d243280"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/SshSigningKeys.php","hash":"f2047693eef3eacf9c15d497237c7630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/SshSigningKeys\/SshSigningKeyId.php","hash":"9ca8a1bd750f6f66e89ffad859394c62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Starred.php","hash":"4696b681a4018fb87a70cebd6f31ce21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Starred\/Owner\/Repo.php","hash":"f6a29bfb868f212dd3d645c1e14cef18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Subscriptions.php","hash":"f7f5ffa8b5a1ac33bb904b0a04a65eef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Teams.php","hash":"00a0b73020b7c18d5fa4ac0232b861e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username.php","hash":"9de64432843728b7758e37a297860a2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Docker\/Conflicts.php","hash":"7ce81018b0663b00d188a5a165926aa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Gists.php","hash":"fdec0cf2d7cda48ccd799235869b0399"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Hovercard.php","hash":"7a14adfcf686b73920057b75bbc0b326"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Installation.php","hash":"2e804be920f9795e64b7d67e54c46e14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages.php","hash":"4d701f2259f2374e58463ff370122f0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName.php","hash":"fe1af7d7b5d6e4a242f7df28f3c72301"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Restore.php","hash":"7f2b42e0ea8e7a00823c50afa127ba3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Versions.php","hash":"dccd101e9c63a56d7d01979ece6d95ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId.php","hash":"08827f431f55fb3c77ec3dceaf053841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId\/Restore.php","hash":"37cc9aa53a6f311f2faa36f11728fbdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Projects.php","hash":"9eab6ae8e654a97c32af1fd0814d559a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Settings\/Billing\/Actions.php","hash":"8ed79118eb4c7ebde8afcc6930d7bf14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Settings\/Billing\/Packages.php","hash":"b0c3545fe8bc22b1bfaa19008868db16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Settings\/Billing\/SharedStorage.php","hash":"0516c237107313c7509ef17be79ec0e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Versions.php","hash":"ce8338725795eec138b862bcfcc212ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrators.php","hash":"cb2a69a64bb5946711938ef96641ecc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/IntegrationInstallationRequest\/Account.php","hash":"86b0748a9ef59e52c89856c24985b44b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Installation\/Account.php","hash":"a6c32a6d924f89e127cfdd3094c036cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/RepositoryRuleset\/Conditions.php","hash":"b28da78ecf22a235a7f06c03d6634dc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietEB301A03\/Tiet504AADCF\/Tiet2FEB0C19\/TietF58BE94A.php","hash":"273435ce35a5874319adb20c2c9481db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetCustomOidcSubClaimForRepo\/Request\/ApplicationJson.php","hash":"0fae0b1c1c49bc41caf50f80dd54d0de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Deployment\/Payload.php","hash":"78f65b447de692c486b5a3640015ea50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/SecretScanningLocation\/Details.php","hash":"2865dc8971d719a7bed4a2596da042c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookProjectsV2ItemEdited\/Changes.php","hash":"8589389f90340cad7d1030e40519e377"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet70F737A8\/Tiet8657D2D3\/Tiet4F5D0048\/Tiet4DA29806.php","hash":"2c0a1d1b2900894da4e04d2125cd100a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamRepository\/Permissions.php","hash":"1c7abb72bee17fce2879a28aab7231b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE98507D8\/TietF41EA699\/TietAAC5DBB4\/TietFCFECF7D.php","hash":"1dbeee133667d50af0147e42bfc1f674"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Users.php","hash":"62c442cc510f6bffc589e5d3679d062e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4D4265E3\/Tiet514E6BA6\/TietC4D32F0E\/Tiet80494F2C.php","hash":"6356d07214ea3397ae1b9747098bd56c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MinimalRepository\/Permissions.php","hash":"df339c08678ef5c9b89fb25849650b2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2F9C313D\/TietE3F7BFD4\/Tiet586BCC09\/Tiet6B11A634.php","hash":"33e2ebeac5497786999c0264016eb41d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Deployment\/Payload\/Zero.php","hash":"2b35b7133d2c3489e1a9d934cf999e26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Metadata.php","hash":"1872e361b3d865d3592025360077f510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Metadata.php","hash":"1a282d23212181010a5763ac05ef05a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Metadata.php","hash":"a76e215561fa510c9c1fdfa92be2f063"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Metadata.php","hash":"ddfccb45ed7ffae98d0dac910bf3448a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/CodeScanning\/GetAnalysis\/Response\/ApplicationJsonSarif\/Ok.php","hash":"c7ab20ce27b397e34afdb10b44ff8fcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/CodeScanning\/GetAnalysis\/Response\/ApplicationJsonSarif\/Ok\/Application\/JsonSarif.php","hash":"deb92bd78e0809214f1ac82c803f3f2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeployment\/Request\/ApplicationJson\/Payload\/Zero.php","hash":"c4b00399751d6f60e433a288e4ac7018"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet01FC056E\/TietED58C88F\/TietE1C507FC\/TietD84DD4B7.php","hash":"4eda5a4ce788da3f7b5ca452f5388314"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/ConfigWas.php","hash":"586f5053f8fe9f65286f4308c37fb850"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/Events.php","hash":"923ccdac5e4d030539e65fe8face4bf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/EventsWere.php","hash":"6b25f60095f4a7960bcc15f6b2dd38e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Operations\/Value\/One.php","hash":"acc30bc6eaa1dd83284be89358b80c22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/Payload\/Zero.php","hash":"8e5ae57f330a9fb8706d4cd9ba86f8f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/Payload\/One.php","hash":"f5bab263ce96c7fee8ce44e07db88579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Body\/One.php","hash":"e1404a620a65037275b07b37129075db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Dependencies.php","hash":"91d80d090c7a855c5f59b211a512788a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/DevDependencies.php","hash":"62445e1541078d47dccae3c3107b4511"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/PeerDependencies.php","hash":"c50b2c11423338b01a177e03b898fa9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/OptionalDependencies.php","hash":"77ee3b2ec5db671df2e0fe85a227ee9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Scripts.php","hash":"956cbaef4de3c0593153baf0ba09b5f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Maintainers.php","hash":"cfe84404353156478647fe3612f9dd1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Contributors.php","hash":"70dd9390f1a2f05cccd8913e950f4e1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Engines.php","hash":"006b6e4f31aa7b4fe01108320ea9e1b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Bin.php","hash":"945cbd494f0efa8343bbb095e37f9dfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Man.php","hash":"339896856c21cf3c3b69e3adbecb5ba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Body\/One.php","hash":"b181315777a8232ef7da87e6c49006fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Author\/One.php","hash":"f27ee7279f66aab953732e6b59686871"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Bugs\/One.php","hash":"b5960bcf5530ae34b12f2fa63ed48ef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Dependencies.php","hash":"5595dc813a55635dfcef046992c5ac6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/DevDependencies.php","hash":"9593d69ca1ece3a74c8e7258ce1b87bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/PeerDependencies.php","hash":"004d8155e77e771b740d4dd07c235bbd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/OptionalDependencies.php","hash":"2c438ed3fd253c9428a579cadfe25106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Dist\/One.php","hash":"3286ee7ec54e422bbb36933eed2f6bd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Repository\/One.php","hash":"7e70b3aae9f52ca89dc14f65ba5e8966"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Scripts.php","hash":"cfa915d230b4e599d991622c80519026"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Engines.php","hash":"81e6a0e8125595a137855f9cad585169"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Bin.php","hash":"8a8c93815381f7927a3be0dfe24c6223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Man.php","hash":"766a38dfb6e6f46fb47333e5f9eb48ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Directories\/One.php","hash":"d176e878c5e76c2ce0bd3627b998c38c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Id\/One.php","hash":"fd612c5f4256979381e959ee493a6f40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted.php","hash":"76d962d6e4573ac592d664b8b63503e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"bbd1a56685d5b778d455e6e89398925f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ReviewPatGrantRequestsInBulk\/Response\/ApplicationJson\/Accepted.php","hash":"efe621d2eafb593fd7a81503ee2f3654"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ReviewPatGrantRequestsInBulk\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"34434b8a95f0137bad5b2045562d2261"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/UpdatePatAccesses\/Response\/ApplicationJson\/Accepted.php","hash":"ceb700d5acf816a05d5874e0108f0caa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/UpdatePatAccesses\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"61be56ecebf2a6214fd28b7efee0aaba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/Delete\/Response\/ApplicationJson\/Accepted.php","hash":"dd3e4bd0c4ebc65c771d606d16b97a2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/Delete\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"2c8c5f80fb9fa235262d1b7a3cbb2206"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted.php","hash":"f902e260d4537d4b6980f4c73b7871e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"010d8b3f8a203f8bd1704108722a7cf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteFromOrganization\/Response\/ApplicationJson\/Accepted.php","hash":"1d74373f49c027b6eb14b6c7139880a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteFromOrganization\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"91e94dc88af6c7bf4df4d0ba35497c8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted.php","hash":"852a5770aef973bd3cd392de7d0a9031"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"cacda5c8998f1c5e09b081f030997c83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/EnableLfsForRepo\/Response\/ApplicationJson\/Accepted.php","hash":"3de9373cc621cac8536a93efa1f56f6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/EnableLfsForRepo\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"b5f040c0afcc88d18cb570ab9b7778d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCodeFrequencyStats\/Response\/ApplicationJson\/Accepted.php","hash":"54086a37072b2e877528ee3b5d9ff72f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCodeFrequencyStats\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"a373ddabe161236b26348cffe00c89fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCommitActivityStats\/Response\/ApplicationJson\/Accepted.php","hash":"bf3c211ef89fe05f9d75bf554e4a2895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCommitActivityStats\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"c883bcaf7465fe918171e74814d4a9f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetContributorsStats\/Response\/ApplicationJson\/Accepted.php","hash":"920840278c956c73d17c805662311e32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetContributorsStats\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"7d9bf90e6cc6feb4c13b24e725574b64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteForAuthenticatedUser\/Response\/ApplicationJson\/Accepted.php","hash":"ffc5f312ee676f2e95d6eb4ee66d018b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteForAuthenticatedUser\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"258c9593e6b0c960f3aebb8d4ab405d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0317CEE1\/TietB8FB65D0\/Tiet6FC68DD1\/TietFE0B93B4.php","hash":"037b4982e84c6eec855969121082700b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/MostRecentInstance\/Message.php","hash":"52a4f2992fd33adc4ace47594246a0cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/MostRecentInstance\/Message.php","hash":"73530561978f97e34cf8b7d5b387883c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/MostRecentInstance\/Message.php","hash":"cad68c8ff485e7ac8bb4c826333f1f8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/MostRecentInstance\/Message.php","hash":"4d9dd45401f02bb0e3c2ca67d715f133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/MostRecentInstance\/Message.php","hash":"e12412570a5f457448c09130a410abb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/MostRecentInstance\/Message.php","hash":"c69a59b93307ae47caa3710fa3c4b2fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2BF61F22\/TietD40E495C\/TietD2DCD6B6\/Tiet9D8D9B32.php","hash":"692463f1264d399f4dc612639f9e3933"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlert\/Dependency.php","hash":"4b6cd08198bc4f62e5066e052705341e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0B6D5155\/Tiet9712C7F9\/Tiet6BF72693\/Tiet5B5B145C.php","hash":"ea0f94eaf030ad60132e410acdbb0da4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueSearchResultItem\/PullRequest.php","hash":"9b3c1835f995f8be57127364a42cb01c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD335746C\/Tiet406EDE4F\/TietC95BE99F\/TietC8083F83.php","hash":"ce58efe42003923c9a8a5621ef5d5e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/ForkOf\/Files.php","hash":"51d7bf4075849d0b2bc2ac66225dc793"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3D775F5C\/TietC5097624\/TietA99A13A4\/TietE24C2E4A.php","hash":"a248077858481db90a2d87a5dd5917f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateUser\/Plan.php","hash":"eea2df6e1b0540989039d3eafe3c02e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet94175255\/Tiet59973F8D\/TietE4020312\/TietC4BDB422.php","hash":"0c79f81da295dcce4a8dd00d497ca826"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistCommit\/ChangeStatus.php","hash":"b3242fa722cee495d20cb6e4a7d346e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBB00E1D0\/Tiet5E9A25B2\/Tiet94F90620\/TietEC1A306B.php","hash":"1d6c33b35cbfa2b01d442c2ca0e0d447"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/SecretScanning.php","hash":"7e6d777eeff3d13ae80a617f641626ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/SecretScanningPushProtection.php","hash":"5bdd2eb6a5f5b2ee70fbc6305a78210f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7EDBAE9C\/TietAB82B9E6\/Tiet0B3AAF7C\/TietF305338E.php","hash":"0bbd8c60fba11c0cfdf7330be95a3664"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions.php","hash":"5a1b64cd02d773ed71d59633d1837c63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet79A542C6\/Tiet0FEA0A93\/Tiet9B2FF624\/Tiet1FC22CD9.php","hash":"0fc318bafea12557b456b241309b1e52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions\/Repository.php","hash":"35bb56a0ec0aac8701155176c0011a95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions\/Other.php","hash":"dadb5707f75c0840ffb50b7010e5687f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions\/Organization.php","hash":"53fc29c39af7870b8ef537cf2c4a6aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions\/Repository.php","hash":"367d08862d5a6d5cd82fcfa3a0b84bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions\/Other.php","hash":"77b4d00037ec505e046f43d631fc62e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded\/Organization.php","hash":"1203082706bf5271d72166d3e3e22221"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded\/Repository.php","hash":"09cc79f518e323b94d2a3a5aa0bae6d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded\/Other.php","hash":"ffdb6edeb9c8387d6f240211c0e22afb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded\/Organization.php","hash":"c7847c559118be84d041f0d9945e8cc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded\/Repository.php","hash":"7ed587ca5216e3065a6f5e98e2872216"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded\/Other.php","hash":"0b17797ed9f6dc0e4895fb546684a4ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult\/Organization.php","hash":"9f3dc5f2d35627ab22bd49a6255e2594"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult\/Repository.php","hash":"97861bc1e2a567340e75eeab14579b2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult\/Other.php","hash":"10ca4c1634a127c22f7ffc641c8d8277"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata\/Metadata.php","hash":"47be2a44a0136387e5de73350a46e689"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata\/Dependencies.php","hash":"1e7a984bf46d3ea4e2cf6158e38a465d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Emojis\/Get\/Response\/ApplicationJson\/Ok.php","hash":"51f35d549ad219e76cc5e180adf3ec11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Emojis\/Get\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ca508200558faf8cadf11b8344e8db69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE8742810\/Tiet7B8AE220\/TietECD4D320\/TietD87356F6.php","hash":"07a7b8a30769da2955ee5e6cc96f92ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamOrganization\/Plan.php","hash":"5ddf4d492c77439166b6554038989bb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet142001D1\/Tiet7E3EA0E8\/Tiet2E5552EE\/TietDBD699D1.php","hash":"dd70f3220a2b34c4fa87a2691bcecd37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceWithFullRepository\/GitStatus.php","hash":"4edf766b081f1ecd95be9278604ee617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD34F4F2E\/Tiet4FFF1066\/TietAA7CD8F5\/Tiet2CC7E7E7.php","hash":"8c16726e66326784df3484c2c2adcc97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceWithFullRepository\/RuntimeConstraints.php","hash":"f23cdf2c7ced4bbf9de00c655dd51104"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet64F93E7B\/TietEB03B140\/Tiet2B202B0B\/Tiet2C35EA3B.php","hash":"29519da4dc4437a32ef909f405087e57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitAuthorEmailPattern\/Parameters.php","hash":"6a60e293661d3ebde4eee83799cdd97c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitterEmailPattern\/Parameters.php","hash":"0dacc59093b15cda112f7c2b718d7097"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleBranchNamePattern\/Parameters.php","hash":"5fd8bce8b1e4e44a3f0eb07d1d1b6e6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleTagNamePattern\/Parameters.php","hash":"7017e0f1336aa261c44566598b2bd178"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet976A6376\/Tiet1CB19A6B\/TietE56A9693\/Tiet9C643BC5.php","hash":"ffc109be5ed72c9cbc4d019a8d81c10a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable\/Macos.php","hash":"16244a8d2a507b8358d3ea8c587d80b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable\/Windows.php","hash":"78c75809a20a1a692d0b9ca6e35a1a44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet205818DE\/Tiet09BC5C97\/TietDE84B773\/TietBE223C26.php","hash":"ce41fff31acd59199fe597badb242735"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo\/Permissions.php","hash":"8649379d4e9071b3e58ba0bf5a81272b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/Repo\/Permissions.php","hash":"5e268ff07942016be66c460c38f863ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepoSearchResultItem\/Permissions.php","hash":"642532ef4fea2a319c6804672036f63e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet650E46F6\/Tiet982C8A8A\/Tiet4228F05E\/Tiet17A996F3.php","hash":"e917fbb1c5b15708a9f09f3438cd7f60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Base.php","hash":"d1f1c79c8cd780ae85ff4f2ac7587744"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet72F32616\/Tiet6A9787BA\/Tiet9DDC9E7E\/Tiet8E246D35.php","hash":"eb8077f9530b4aa01713d1ec94f342a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Base\/Repo.php","hash":"aa5d9db24514c40ef061084db26186ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/PendingDeployment\/Reviewers\/Reviewer.php","hash":"b48cf60afb6195ff11688b1778c89434"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4464FF28\/Tiet6C0A72F8\/Tiet0B27A7A8\/Tiet10B71D36.php","hash":"d98c7e15bffa97f304790d5ef5087066"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/One\/Reviewers.php","hash":"670d126caff6cbcbb1acf6cc5275e7b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6CEF235C\/Tiet04D453D8\/TietD14AACEB\/Tiet20BF342C.php","hash":"c348fd2d9eba9456ab8d0b5be869fe65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Macos.php","hash":"c315b5d8e902d675cfe57db7e71dfe21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Windows.php","hash":"f400e0d27454678f8600109c55f6b6b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0D99B45B\/TietDB2C23CE\/TietE6DDAAEE\/TietFEE070E4.php","hash":"ced5dc216f68a19ef5a1f7402e7fe968"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Macos\/JobRuns.php","hash":"26d479edbfc73c7f42da22818d8a2afc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Windows\/JobRuns.php","hash":"01059f2469137fbf6ef0d992669bd6d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet47C5EFDD\/Tiet650C68E6\/Tiet0F894B5D\/Tiet312F53C8.php","hash":"699194d0d67aaa62865daea3e740845d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/AllowForcePushes.php","hash":"0a2cfc20e5c6943055c8fd70826035ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/AllowDeletions.php","hash":"0f1f178c08473a98caf937cb8c08de83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/BlockCreations.php","hash":"ffb25348d28a8e121aabeeb77bef8d29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/RequiredConversationResolution.php","hash":"4f6d590d6f6c19efc2b457f32720e30c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF50ED868\/Tiet44C35399\/TietEF6AE628\/Tiet51A21942.php","hash":"3af90643d0b665e219f46d0ad4f142b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredSignatures.php","hash":"9ac0b585551e3850ce1199a05be0fdc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet35C6300C\/Tiet6FC8417E\/TietD1DC9061\/Tiet517F1506.php","hash":"41139d5895891d8f2057b220a08762a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Tag\/Commit.php","hash":"bc21c1b3be7d11b43aa8d22ac694f26f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Commit\/Tree.php","hash":"4e0afe810be21c482b38d71cbf6844f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Tree.php","hash":"adb94c29f76e4555757db2b429c17d39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietAEA81627\/TietD9F257C8\/Tiet586483E5\/Tiet737DE0E4.php","hash":"d83ace34fe590ad64f8964befa0d8839"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/AllowForcePushes.php","hash":"8ad33662057d643fb352b2ffa37f55a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/AllowDeletions.php","hash":"9db3d561555041b368cb72602279314e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/BlockCreations.php","hash":"c0eb6a4b62299352f086f83ca33619b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9FF3B263\/Tiet857AF71A\/Tiet652E401B\/Tiet6D831DEE.php","hash":"a85cb3cad758daf2c1a0b14c9b06cef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Base.php","hash":"463d3658e29a43da55c4700bed246c85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7041333D\/Tiet2B9B5CD7\/Tiet6273FDFD\/Tiet58068E3B.php","hash":"afbaeeadaf00292c75ee8dc85bbba161"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Links.php","hash":"e33a73878ab87900f67e251dd0fdbcf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB382E06B\/Tiet8099E759\/TietEF95167A\/Tiet295E84AF.php","hash":"45709404c7291a8e486e50af1f050873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree\/Links.php","hash":"cdcc528bb067710b9a468760e325948f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentDirectory\/Links.php","hash":"08f6c436dcf2fdfd38ce4597622ad0c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentFile\/Links.php","hash":"31a881b0728aad65713c4585946e4bab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSymlink\/Links.php","hash":"a4b491eaa1b6f4944b9baa8636671767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSubmodule\/Links.php","hash":"2124ea156989aa27a51d1b7f6ab59b28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LicenseContent\/Links.php","hash":"5d0b51641a00463f6bf8cc1a6f892264"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet291BD1CB\/TietF6B97AC1\/Tiet36E0CD05\/Tiet2426F5B8.php","hash":"72d68da011de0991e7bbef0d1b66c157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Committer.php","hash":"974cae33f23edc52261034dcdf170652"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8249B116\/TietF3B5B097\/Tiet6B3D07C4\/Tiet1D00D525.php","hash":"f669f249e7e8f2de335532b5779c11ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Parents.php","hash":"088aaf2e8bf728d60a0d30d074746875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8125B6C0\/TietA3A7C028\/TietA198F122\/Tiet78BAFF69.php","hash":"f8bdd034e1b010ff5ca886dd468a5d71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Committer.php","hash":"0b4ae160725c975a1b610d435f8e681b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Author.php","hash":"2c05271889ad9884e77d4ee3b6738278"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Committer.php","hash":"768cdb4866ae7a2d69a72550b3bbc663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC4E7FC39\/Tiet11CB7379\/TietF21F84C0\/Tiet104418A5.php","hash":"1674f2110af86ec33f35729eb1bf996a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Tree.php","hash":"7bd5be21017b24ae0db86de2961d25b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB84D28B1\/Tiet7786E045\/Tiet3136B62E\/Tiet5DF48315.php","hash":"2a538ff746630f9b3f40b733d5343fc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Parents.php","hash":"abd1a7de00fa94d5d41dcbe45917bccf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet015670A0\/Tiet1383EE50\/Tiet883D61E6\/Tiet94035AC2.php","hash":"4847aac00beca8ba0b1e6fa3ee8fe59d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Verification.php","hash":"861cbade6ebc6ec77125528cdf94eddf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet89D46EC0\/TietEE21A228\/Tiet63FBE554\/Tiet65D1C42C.php","hash":"e116b8e8f619ef7552691641ce0eb568"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UnlabeledIssueEvent\/Label.php","hash":"388a473943c0ea0bd94d9bbfaf6973fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet359AA3A3\/Tiet8E01C5FA\/TietFDCA314F\/Tiet344F71DC.php","hash":"15ee2a4373572dc8caf5e249574636fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DemilestonedIssueEvent\/Milestone.php","hash":"25dcd32a0fa21d6b134054525a5deca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet209D04E1\/Tiet27A5F898\/Tiet85DF3848\/Tiet973B280A.php","hash":"f7f2b7e515136a2091c6d2ed9e7ee263"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MovedColumnInProjectIssueEvent\/ProjectCard.php","hash":"84f7b8b9b32127d85efa87ac27c603ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RemovedFromProjectIssueEvent\/ProjectCard.php","hash":"a57b1790f003670406570435e6a1adac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ConvertedNoteToIssueIssueEvent\/ProjectCard.php","hash":"cd68042361662c137c4e9faa88cd68a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet07DCB36B\/Tiet91F472DA\/TietA9474AC9\/Tiet7F1CE862.php","hash":"c801a8408f0bba5ae657b3d6ffa04442"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview\/Links.php","hash":"f5fea1639d8514e4a175b823382886da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF77B7BEE\/TietD3678F70\/Tiet1DF1EADE\/TietBE02277D.php","hash":"157c7bda7f881b45f39a48ec7794b875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent\/Links\/PullRequest.php","hash":"a5848813bd5cb49d6d612ea39a2d5fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview\/Links\/Html.php","hash":"3b5b45797e24637290630a766dd52b92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview\/Links\/PullRequest.php","hash":"8f9436db3333508e85c676f57d387d2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet64B7D8F9\/TietB1B1693D\/Tiet6F7EB3E9\/Tiet2C64727B.php","hash":"bbb1026a23e061dc7812d19703eae230"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild\/Build\/Error.php","hash":"275acafad5d9103c4c6205d2107f19bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietABBE4B49\/Tiet95080E7A\/Tiet912BEDC6\/TietEC5CA654.php","hash":"125bf691c21df2e9d498cb12fa012682"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/User.php","hash":"81c58ee64074c96cd9bc9da709cc6266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/Repo\/Owner.php","hash":"35021afadbfd15e8baee032dcc828f12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/User.php","hash":"2303021e9945026223d6dd9249c7fa91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateVulnerabilityReportCreate\/Vulnerabilities.php","hash":"135972d76f8f87c47ea226f4ea5f8e0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate\/Vulnerabilities.php","hash":"0e8271647e9352f01567b207628542f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateVulnerabilityReportCreate\/Vulnerabilities\/Package.php","hash":"c63a4b2658c2360f20c7c67e05bf4d96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate\/Vulnerabilities\/Package.php","hash":"28e02df6263fcd66655c88d73bd42c5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet370EB938\/Tiet2544BE96\/Tiet0D047C4F\/TietF5CB2139.php","hash":"22ea6d91f6e3dd7126b62a4ed3bbac25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate\/Credits.php","hash":"46607b9dab0bc990beb9e481c4f6949a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet412D10ED\/Tiet7F92108A\/Tiet0C76FAEA\/Tiet10EFF51D.php","hash":"ad732393ae150b126825dc098147b1a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/ProvisionAndInviteUser\/Request\/ApplicationJson\/Emails.php","hash":"3ab39ec1f278af5fffd09b0a06a09efb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/ScimUser\/Operations\/Value.php","hash":"d7282d83b6d5dd658928cd133da7454a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD9DFA38E\/TietD9136D28\/TietD1296A44\/TietA1883F7A.php","hash":"30b63f6a62efbc5b514e6295005b17a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Aliases.php","hash":"042527421db3d536764d42218b6f543f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4E17EE5E\/Tiet95EA0B99\/Tiet92121B64\/Tiet3AFF3F5C.php","hash":"1eeb42d3104f617b3b8ea9ba30319071"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Aliases\/TopicRelation.php","hash":"1be8539b32ab89cde584be74a3942f7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0FCE66A6\/Tiet71ECC1B1\/TietC3D362CA\/TietD6E970B8.php","hash":"a75cd3d7018c5846d66747b04c23e2ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey\/Subkeys\/Emails.php","hash":"0d55ff24c1238a5777f223be51da5e51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet93E44327\/TietD0AB6C73\/Tiet62032077\/Tiet6B97FD42.php","hash":"14828b79f5b46f37f616c734c9cfe02f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/User.php","hash":"451383dd5495e2bf110c527dc4a8af21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/App\/Owner.php","hash":"5c6ab454ed7cdd26a91f76503eae0117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/App\/Owner.php","hash":"905a427f3e927cabd28a76586367fb77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/App\/Owner.php","hash":"076c102fbd3787ea21ca87cd729a3e84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/DismissedBy.php","hash":"903402816a9f01371f69d3fe98b11b09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/DismissedBy.php","hash":"bf5a671b1972aa1c224966615a48540f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/DismissedBy.php","hash":"a4eaaba17b8047b7b87669fd9c9d27ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated\/Comment\/User.php","hash":"82a4e7f2e0471c26e8fa22f5fc28b2d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/Creator.php","hash":"d7d2a5fb9ba812c7d5daf22f59452d2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/PerformedViaGithubApp\/Owner.php","hash":"0742bda47d3b3064e35892a619046ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/Actor.php","hash":"c4695bb1ad877dc7feca439825a6a9d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/TriggeringActor.php","hash":"2eb8af9d6032b29a09cb7e070cb2820f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/Creator.php","hash":"a146d6881d3e6bab233aac9f6a35aae9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/PerformedViaGithubApp\/Owner.php","hash":"446bccad5719546e68bfc0e5bbebf941"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/Creator.php","hash":"8e14ba124bfd9d265488c63ca3af326a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/PerformedViaGithubApp\/Owner.php","hash":"5fa51207e57ccb35d0321771bd218a96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/Actor.php","hash":"1ed69bfa03941c3ce2468e5de317fb79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/TriggeringActor.php","hash":"2f89765a8d1416c6dd4ae4ef53787dd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered\/Answer\/User.php","hash":"5578dd5dea8854979bd42b4c98349018"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated\/Comment\/User.php","hash":"dfd91a763f928d1070ed1f4f9a83fcd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted\/Comment\/User.php","hash":"621809601d1ae5633268d1012a5cf3b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Comment\/User.php","hash":"ca9370b3f0bebe57111c58bfef887294"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/AnswerChosenBy.php","hash":"36f9dff6c8d62ef8041c015c8096457e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/User.php","hash":"64706dbf4b9a58a5c4bcfc301ef51838"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered\/OldAnswer\/User.php","hash":"a7a55bad3b4444a1703b3c3a5fdc94dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee\/Owner.php","hash":"8e5184ec7e24579cd4e6f88adc4ad6c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationCreated\/Requester.php","hash":"21ccad8ae91ddbcef129f1244efde6b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded\/Requester.php","hash":"2fb3e4a9e82ee6ac9e53a25e35e4d142"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved\/Requester.php","hash":"3b4c98be53ea8d2283abf37af717dbe8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Comment\/User.php","hash":"80a3c32704a107a33e987a48e5f59c62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"501d0f78fa450ddd104b56be76e0819d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"a6ced38784874e67dfa4d7f71059660b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"bc57073938ebb73b837a64b6723563f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Assignee.php","hash":"11f119f9247a5b5cb95c1de94aa6018d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"921ad35d148b4e34ac6f209358a6facc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"4e71ef1dd19ca42cba5d02d6dc518818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Assignee.php","hash":"3a6c39908d58bfe0d917548a37cd5815"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Assignees.php","hash":"21554601628e7c41f4e40c9530b4513c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Milestone\/Creator.php","hash":"02506191f749f71ca1696669d32836a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"cfb4da6c9e0af73adeb10715b5b19956"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/User.php","hash":"dd0ef08f4cf74b378c468ec37b7610d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"02c4c24fc874022c44ee19a66c2b29a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"1312fb53a3ef2d196cf2f1469c88511c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"515212dc81c0fa0213f4bf1da719d087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Assignee.php","hash":"82182cfb672f1c904c3050f62e3738ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Assignees.php","hash":"801b66f2314d1eaf3512d0de2f2f7b88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Milestone\/Creator.php","hash":"ba7579f0ae4200ca51059496824ac0d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"998ba424467bae724569a5cc68fa6a82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/User.php","hash":"71f947d3c47765fc0ed1f9608c1a9a77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Assignee.php","hash":"2838163de7823ad5e21ec10a7f5731bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Assignees.php","hash":"10bc3d5b6a011d07a2c50e7ea170e6f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"edabb9ab456f4790d3af30e22516caca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/User.php","hash":"2c36225d54a88bcdd03c665c0715b63b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Assignee.php","hash":"9fd947a6eb66eb49f9ce580b4b7783e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Assignees.php","hash":"f2c7c30b1a65b0f154bc2faca4db3b76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Milestone\/Creator.php","hash":"602d1f65102beb7cb0843f87fc2c2d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PerformedViaGithubApp\/Owner.php","hash":"8726b60e264644016807cd7e096b69e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/User.php","hash":"374006744093cc71b9450ced75161e45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository\/Owner.php","hash":"35f6b724d8135cbc8d1eaa81ccc451f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Assignee.php","hash":"a3d50090c80ffb70bba372c896724caa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Assignees.php","hash":"fb5b9c7a2786fea005f977f2c4afaeff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"3854c0f63c91ea2299fc4af680be3e72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/User.php","hash":"3afa2bc9939b00a50bfc1a8f00b25d3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Assignee.php","hash":"52f30b9006b38346140dd4cad5c152f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Assignees.php","hash":"8e184f13d5699290c82503228dfe325f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Milestone\/Creator.php","hash":"4a7acaa7ee5122b611fd1a6e33079bd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"058aa7110f74753f16033ad617206ad7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/User.php","hash":"12242f1676e3b47a8a823c718df07462"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Assignee.php","hash":"f986f373bd9987932732d90facd0c64b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"cc6ce3fb69670f0f2cf5373fe1511d9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Assignee.php","hash":"d8cec0a11210a3b13951f2f0c1d6d2dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Assignees.php","hash":"db63dd4f7bde1ef8df888152400000cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Milestone\/Creator.php","hash":"a84ec4d370c8bbc3d64aeb8d0d768d6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PerformedViaGithubApp\/Owner.php","hash":"d0b83063e7474f51469a2634a6c031e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/User.php","hash":"c6fec5cb61ca3e6f741602431501523e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository\/Owner.php","hash":"1b853350e8e39770d4411bde43de4d78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Assignee.php","hash":"1192c86da436f61a937934207338e6bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Assignees.php","hash":"e8759bd6a95928e80b6ed58efbefbdaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Milestone\/Creator.php","hash":"ba99d3521bf769c7ceea5b69579920fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"3180e1f6758926d634f033cec3233e5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/User.php","hash":"b7759c8aaace69a7fe5ce51560741f48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"ee8d109f9fa1676dcbff2afd9a20c7dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"84494df14c9feb7de0be18b1de040610"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Assignee.php","hash":"62de69817deb712fca17eada1b727580"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Assignees.php","hash":"e43f347ac9600bdb3260fd12ab773a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Milestone\/Creator.php","hash":"b5ebd2eb3def7d3685d729fa73ba9492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"21e4ffab5ab092f9cbac51efe875b205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/User.php","hash":"b3ccacac4c6fb538e6fb7121a9935e97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Assignee.php","hash":"355be31da14b128b87260e4ca8b3b2c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Assignees.php","hash":"f9f73343ef3d9996368a1e6632b6f9fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Milestone\/Creator.php","hash":"e610f4ae841dd5b06b932e6e17faf4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"2573f528acc01bc06494ad44963c9cb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/User.php","hash":"18a1e6655ea7a7a20772f604d517f06d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded\/Member.php","hash":"c21a23089da12cdbb2d9ab507137c878"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Member.php","hash":"05c35b860713659adca8338597e98cd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberRemoved\/Member.php","hash":"67896c634ca56cbb6c17280c0693abd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Member.php","hash":"ee8125eb6f19d46a66535e9daffcb723"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Sender.php","hash":"be189ea14c7c7fb0c001831b68b81916"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Member.php","hash":"5ecb1374c3fe42bc643f06502f4cd11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Sender.php","hash":"14e21bbd6c111cccba5edfc61a1db545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneCreated\/Milestone\/Creator.php","hash":"5bdccfd84d35660e1e5110da2775b7e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneOpened\/Milestone\/Creator.php","hash":"2bc03e64139a6ca65be56adef29a320f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockBlocked\/BlockedUser.php","hash":"8bdb29049c8079711b2cfb2dff794ff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockUnblocked\/BlockedUser.php","hash":"3c9192638a4e83c817b3fb6e95757d7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationDeleted\/Membership\/User.php","hash":"44450e4804ad9eaceaa334c531834437"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberAdded\/Membership\/User.php","hash":"12164c8f3f7beb7686e141f43de8d8e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited\/Invitation\/Inviter.php","hash":"ebd3fcd97edb4acfef149095eed8672a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited\/User.php","hash":"29b95aab6f3d32f3b16fad8c44e79990"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberRemoved\/Membership\/User.php","hash":"f89f9c16830d37ce64ac00cf6cdfa94e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Membership\/User.php","hash":"f59e1bd51ae1fce84c7288f9d972cf7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/Owner.php","hash":"7e2fe6062698cd8f39521742101726d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Author.php","hash":"b64275d961e93e82b927917f1729352f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Release\/Author.php","hash":"5b6edf9eec4b0bb61e3fa91a08f93b38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/Owner.php","hash":"9beb431378f9f62302cb9274dd2e35a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Author.php","hash":"3f85a955c03e2e8b9ed82b50c1296059"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Release\/Author.php","hash":"ce99e2ec7d9e32169df463035b4049cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild\/Build\/Pusher.php","hash":"d5512a4fb83754bad69e36a174fb0e3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/ProjectCard\/Creator.php","hash":"573e977c5f540d9ea075e0f8bb4eb5ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardCreated\/ProjectCard\/Creator.php","hash":"fbbc1e6e0e5646bd7d835611336d99a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/ProjectCard\/Creator.php","hash":"31d28f5e00b5fa7b8c184bdde0100cca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectClosed\/Project\/Creator.php","hash":"02f07651e02747c78beacb02d44292a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCreated\/Project\/Creator.php","hash":"5f7c35ade2aa3053d4a2a2e9fe153ef5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectDeleted\/Project\/Creator.php","hash":"b8b5637df2ee034af96fd0c757564f19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Project\/Creator.php","hash":"0c02652368e721e0232a4eb69fdcb359"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectReopened\/Project\/Creator.php","hash":"1e4282a042a1b4073cd0992433969b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/Assignee.php","hash":"24261fc50d8b1cfc3581d6ae8322c29e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"fa497159536c4051b1af52643bb07c9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo\/Owner.php","hash":"b57c23a16191af63b00855ac07ed39a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/User.php","hash":"c4391c77ac39c5f1b7ddab491a1da641"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo\/Owner.php","hash":"8c58940001788f0c288a0142c3173873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/User.php","hash":"62ac3a6ff33a7f5951045449594e49d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/MergedBy.php","hash":"5a0d7c30bd83c0a3253f0a2407c5716d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Assignee.php","hash":"5aca81ca2809ca51225a5e272d6aff99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Assignees.php","hash":"8c914bf5ca53d7999851931cb3e6a9fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"df93a5aeb7ded573a6c7065a1dacd9af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo\/Owner.php","hash":"f182002d16e8f50634da7f25b22472b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/User.php","hash":"9920974ff2fe7d7a866eb65bac5eb958"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo\/Owner.php","hash":"c020a0e32ad6e41e5fd77aadf4b40bd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/User.php","hash":"74266634f37d4c45c76796f48557b8b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/MergedBy.php","hash":"1a70f0e38bb8e97f5e0a02c7e45a057b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Milestone\/Creator.php","hash":"08c2af5bfb059408d9c42c684c7e71e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Assignee.php","hash":"23b440f08476fcc8b2e0227ec0134cb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Assignees.php","hash":"e187cdd347fac42f6882b40a1ee66b60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"9016390e24a0fd0bebbbd8af4159ea99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo\/Owner.php","hash":"670f0437f38a66491a9f068724de829b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/User.php","hash":"ea8dff308df914ebd9557b190e4edc93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo\/Owner.php","hash":"cd66589ca6232e97375f2e9eb8093130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/User.php","hash":"ab871aead2975f9d28a4cd4b8e2ce71d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/MergedBy.php","hash":"8e293eb8d38fc417b5f1b5908fd16c05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"45c8c63bfc24b018b5081c5aacbea898"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo\/Owner.php","hash":"0b834b2e992abfcb35a5c3fdb583fd6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/User.php","hash":"6ada080431ffa7ee16287a72028b3a3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo\/Owner.php","hash":"e8e703a23b600c29be2c5b8985aff341"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/User.php","hash":"f64f509d52b6f28fc137cca7c841d082"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"da239d7d74fa9fbb1dc6d6a248e4a94f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Assignee.php","hash":"ced41ce3f23fb33cb50a7103f4a26559"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Assignees.php","hash":"c0481d9ab3a2cabe84b2aa6123e12b54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"6132794fd75d72f19cad0e8fcc796575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo\/Owner.php","hash":"d76624cc9c86a7d350d8f10ae279d57a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/User.php","hash":"9e1cd7a4606a2ff4557050b1bc048c89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo\/Owner.php","hash":"4090c5c6fe218c9e929bdaf7cf0e1390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/User.php","hash":"3789b57217948fc04b408e94e78ef406"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/MergedBy.php","hash":"62fad9b8c32e5e6d4f7338cb9321e67a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedReviewers\/Zero.php","hash":"f263136460f30aef689cb35a12992b34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Assignee.php","hash":"ce22440a8d75acd7be3333db6497f769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Assignees.php","hash":"2d07a7889998aa2d22791311161c0046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"e8c8b6afaad9b94ceacf3cf8dbe43559"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo\/Owner.php","hash":"1a8163c70add1bb64ff16b297cf5237b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/User.php","hash":"eb60bd1860a805306d85745547604437"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo\/Owner.php","hash":"a661829eec53445c1805f0b00105f414"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/User.php","hash":"44be4b39c1ae6fc79b909ebb77396b52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/MergedBy.php","hash":"e9c6781a3b74b92299cfcdfef504ade1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedReviewers\/Zero.php","hash":"88834efc8924e684b9ecd97019617ea9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"ea679a95215977dd5dd48a2e4dcb0110"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo\/Owner.php","hash":"5857614b64f29512abceec38af0b39a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/User.php","hash":"ecd2078bcd2c7f465bbd25bfb86212fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo\/Owner.php","hash":"df4c3ae66bfa3344d0756511bb730795"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/User.php","hash":"435210893a460e73a8f65ee8d608de25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Assignee.php","hash":"4e92c52d93d14df33b217c15b6a3bfd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"1c0e16c541389b6cb72e166d6dab894c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo\/Owner.php","hash":"2ff8104c486fbc7f52719ad8f3554a6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/User.php","hash":"7c85e0148339ebbe949434c9a5f68181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo\/Owner.php","hash":"b955e3795fb1993f9367f64274610a00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/User.php","hash":"8656f714b444a9ed09a9a2844813301d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Milestone\/Creator.php","hash":"719077a0fa7026ebba028d7b89a23ae1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"79be168a85ad844867965031c7824de3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo\/Owner.php","hash":"2c7b83758f4026452a744b7e9ee309ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/User.php","hash":"0a23abcabe70a5ea77088447b48794bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo\/Owner.php","hash":"c09c33089fa692295655683a9c051082"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/User.php","hash":"f453d87a736fc6800c881e165b4697ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"130b3cfa3cc2595d1d3eaa2f07706e87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/User.php","hash":"114a74ff0f160525f2804074a20e7ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"578d280e010a6d28ea320da46fdf6114"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo\/Owner.php","hash":"c23bbc16113237f8404391a86b389a60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/User.php","hash":"fde44044652f1adf6e62d07d82127070"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo\/Owner.php","hash":"7e4b36afa66f78ea74dc1f62f1307bfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/User.php","hash":"2a2f9c30831c4ddb54b36c6485fe5f61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/User.php","hash":"2f81fe371d42b34eae0ad596cdcca879"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Assignee.php","hash":"7242737c33009372251cc0c9ca735f8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Assignees.php","hash":"651002cf50fc54cca53c307dd9d45c88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"a62dd263993e497baf76d313e135cf0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo\/Owner.php","hash":"0bc67087fcc865fcd9672c7cfc548778"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/User.php","hash":"0416ad0ea33f8173e6ed4a8835a6d43e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo\/Owner.php","hash":"f9cb728b44d52377a55d2104d9579c8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/User.php","hash":"d494da9206c149fd27abda58eca2a8a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Milestone\/Creator.php","hash":"63fcb8ec857a19a0a14886e97ce8f553"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedReviewers\/Zero.php","hash":"4763c9c6c4d3831f540378ea79629139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/User.php","hash":"703b71dca47f366083bd2af6f742378a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Assignee.php","hash":"9d005d4c0ee826ad08cb9eedc2672e0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Assignees.php","hash":"cc3bb3825ea7c8e1215fb19f3996d635"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"ca61b8ca7ccfd5c22096297b328307be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo\/Owner.php","hash":"78aa31ab076346f924890bbd62900f58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/User.php","hash":"d9c1dcb5835bd21495f304aef9595d37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo\/Owner.php","hash":"49f52ded570653ad39dfb44a67f37879"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/User.php","hash":"5316be23dd53226d3075421868402f2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedReviewers\/Zero.php","hash":"68e999ba1d0d2b191b0d00174cbf90df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"7647a0259c0faaf94d26be7a831242d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo\/Owner.php","hash":"a504d74562fd320cb0c8e0ca1341a0f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/User.php","hash":"eb0fd590db04a6166942db72d26b95ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo\/Owner.php","hash":"746aa280000f34851053b776e4816003"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/User.php","hash":"478343c1cb316ffb71fbff5753e50062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Milestone\/Creator.php","hash":"2641297be6cb51f46ea4d9e60807dbb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"7779baaee7c5a160ce20b9f85e2db673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo\/Owner.php","hash":"396a37c4b4829e05224217f47df720ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/User.php","hash":"1feb315e441bfe2ea4015bb091e5e409"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo\/Owner.php","hash":"fa280b06b755dddb8ec03736d3d9272d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/User.php","hash":"a619cf0c3bb1f494227d8ebfca587e93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/User.php","hash":"3f85c86620349ca475f190e96179ed6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"21188979a438989016033e29137689f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo\/Owner.php","hash":"4ddcc22791a20ab0246c5c469914d52f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/User.php","hash":"b9870fcc8eee2f82b3dd71cdd8e69c30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo\/Owner.php","hash":"1d7d0088fc65681e2274599d4527324a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/User.php","hash":"676eb6cdb3833da0afde34aa87facd23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/User.php","hash":"ba2c4b331dc3039cdc6b20a9caaab0c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Assignee.php","hash":"7001b018043026f0cfe8e24f53c4abe8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Assignees.php","hash":"15ab0ab0c79b9e5c46c5c45178563301"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"4f293e77489a367a2c4f2367aac6bd50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo\/Owner.php","hash":"e149797e41841dc8adf6ff0b2b56ced4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/User.php","hash":"a120d3fb41acb98e40205b0e4a9f7337"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo\/Owner.php","hash":"7afbdd5584fb21909fff7ada2becc3f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/User.php","hash":"ae94e90fd35242b9b292f26b2c03d85a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Milestone\/Creator.php","hash":"3a389720d4527e1c5ada64a09ef736b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Assignee.php","hash":"02aeb57611a503e0bd44bea30249e749"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Assignees.php","hash":"67848a912742b68a350e8921b3774439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"60ccf9d72d7c90e25464d76f9fbd7a14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo\/Owner.php","hash":"869e33f57a09f8e255b146dca85766c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/User.php","hash":"dd41d9df89cf0fda9cf97f97e874ec11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo\/Owner.php","hash":"888a40447641acfb6c20ef1734f2ffc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/User.php","hash":"5e076d584284cb81b77135ef814e352e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Milestone\/Creator.php","hash":"fe486fee2167980e0b807d4bc1663231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedReviewers\/Zero.php","hash":"acc39e3928949d32ebe9521cab8ffc81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/User.php","hash":"7c2bd23c5dcb71d5d274d9b719a1016e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/User.php","hash":"bf316eee28c2a56fb74e645a3a20c8c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"8f0ae8baea26cbfe706e8f5a7e97f9c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo\/Owner.php","hash":"711a3fa5c81b51a9c488275ad00f14d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/User.php","hash":"26eb82d73d512db017ea4fcf99d86472"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo\/Owner.php","hash":"4f3bb29b90ded68480186dd3a23bc35b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/User.php","hash":"abcf61c30a77d68fb7dd4e24a6f81414"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/MergedBy.php","hash":"baaee83f1665c352ef263bc0d17a18aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"c0835e058f639f0caed01682a3ca557c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo\/Owner.php","hash":"b66614172400f5e8791d08765e4c9ca5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/User.php","hash":"6a8319961693a7093cf3879a9488ecd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo\/Owner.php","hash":"e532f4cb50e8bef527c2bffda7ca3680"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/User.php","hash":"ceda7802514da9807063deb28e318c3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"054950b61ba80d917b3bfaa90c05baf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo\/Owner.php","hash":"0dbdea21f9b865a79499440bd7a0a171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/User.php","hash":"7e85e71ec2da09819d56931b17b8749e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo\/Owner.php","hash":"0b6928102f0e7e520f37f8f97c3a53e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/User.php","hash":"158a5ae5d1e3ec1625ddc0a2ba72560e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/MergedBy.php","hash":"86490104ddda566ba21ba99cf7e1a0db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Assignee.php","hash":"05bdd667ba63b63d52fcf78976345439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Assignees.php","hash":"75fbdeea97267e7776380cfe399e050a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"e2a94d3e5a080d790f99b6649020a133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo\/Owner.php","hash":"9d25b3ad8626a632c45174e72535df95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/User.php","hash":"4ca855f3292c61a16b0e4d264af9ad0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo\/Owner.php","hash":"6902e1e187995ebff8fbee306831f3f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/User.php","hash":"eadb1f546ac9f1da0a1c59f325468500"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/MergedBy.php","hash":"4a17953f2ca36deed3583c1875b157f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Milestone\/Creator.php","hash":"fabdbac3540e560bdba6b3e339dad1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedReviewers\/Zero.php","hash":"cd71e9e767c13413ccbda5160a2af2fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/User.php","hash":"1c81f278abce82c1388f0a7d6bd953bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository\/Owner.php","hash":"4719873dfe2ad638309c852814c20ff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Assets\/Uploader.php","hash":"54075f7fbd8a14a587c69bfcf09f717d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Author.php","hash":"906c56d50640ec3242d7dec45509cae3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Assets\/Uploader.php","hash":"3d69e9ea571a9c7c95c78564660ac81c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Author.php","hash":"a3a27e0cd7e30a5c03604dbb6491fb6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Assets\/Uploader.php","hash":"3a0d7443843ea6e1a5411bb5a8c5bde1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Author.php","hash":"ca8e3469da04c7b5187023a91a8283c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Assets\/Uploader.php","hash":"0171271cc35a60cbca71393e97c4e784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Author.php","hash":"51d3b4ae448691f3c8d8561bc40fa5fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Assets\/Uploader.php","hash":"794f91062933155cdfe5174325fa64a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Author.php","hash":"63c782ec83386662675da862791abd53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Assets\/Uploader.php","hash":"c9c2ebd8b91057d765ffbe9be7c75ac8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Author.php","hash":"1323ed8a55fd53eab0dbd52bc8ad28e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Assets\/Uploader.php","hash":"b937fd9b9fe96d642be8aafb7b8a5be2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Author.php","hash":"109bb84a403df9cbd885aeb12f014931"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner\/From\/User.php","hash":"4bc0475a555b72e7544d8f2aa2353d7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertCreate\/Alert\/Dismisser.php","hash":"e7e1a661b9614824aa856474033d9340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertDismiss\/Alert\/Dismisser.php","hash":"376fc5ad1e07f92880d8f3070ac45106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertReopen\/Alert\/Dismisser.php","hash":"ecff25da103af64d765d77310b8ee54d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertResolve\/Alert\/Dismisser.php","hash":"0f12344f45f5616e348acf86cfd897f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Sponsor.php","hash":"6b8abd52e921957204bd636aa5435272"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Sponsorable.php","hash":"fe09ed62b7507e1a8021ac3b5950f448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Sponsor.php","hash":"10165543c1779b74e776036d5ad252ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Sponsorable.php","hash":"b88ef00ee3104550837c18a561421c7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Sponsor.php","hash":"56bd0610fb9faeb5cd53edddd888e06e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Sponsorable.php","hash":"0f7b100340416b8f316436a3f9f75e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Sponsor.php","hash":"b03a41d4535307014431cb64a82cbcf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Sponsorable.php","hash":"df8f8f8b618ec4e0fd00a416eeeccd2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Sponsor.php","hash":"f79e707e37df365caa2882eec0b1520e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Sponsorable.php","hash":"ad9f941b99e844fb4f70ed5cd2c05a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Sponsor.php","hash":"eac2c688a2083b7a237b987853aa70f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Sponsorable.php","hash":"69c1d38207defb77efd54276b6df85b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository\/Owner.php","hash":"ce8b3e3853224b109182ddf856bbdb0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository\/Owner.php","hash":"f11988409e695101f8d876b5fc875184"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository\/Owner.php","hash":"7772967ef6edfc38e172558431cbd27b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository\/Owner.php","hash":"b9260cf72ed32db936f0e5be5c3ead21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository\/Owner.php","hash":"a94c89dc06171cf5058928e75c3183fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/Actor.php","hash":"70ecde93120fa6e549fcaf4de0919ec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadRepository\/Owner.php","hash":"1e281292a510a4d3213d9625a5ae202c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/Repository\/Owner.php","hash":"5d81e8ff0a029f0e6f07182e53123417"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/TriggeringActor.php","hash":"8724a6e805eaac57ddbb9a0f7a744b04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/Actor.php","hash":"014bb395d7e6e9c177099b5cd2ba0b37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadRepository\/Owner.php","hash":"7428927965f0b0f913c3bee4b2018c9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/Repository\/Owner.php","hash":"2ec152828dd07033aa8646310b971ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/TriggeringActor.php","hash":"4c14daac1a902b2b6690d74abcc5d2a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/Actor.php","hash":"a581f233198a12b602c958b59a0ad291"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadRepository\/Owner.php","hash":"e70715c18b2e1a8cfec3ab2825271b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/Repository\/Owner.php","hash":"3233a40a5229c05c7bd1b421afcde94d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/TriggeringActor.php","hash":"a918eee8dfa287b84948ea49b9ed4a34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet789E2F6A\/Tiet7FD1DA54\/TietDAD16BC4\/Tiet25B29EDD.php","hash":"cad9b5b2fed5ef5ae00001212ad21ff8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged\/Changes\/Category\/From.php","hash":"ac5a56432b8b6a105a7e23337d78f844"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/Category.php","hash":"ed9dea7ae18e81dfad66c86741fe449a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet559AE5A2\/Tiet1A070067\/Tiet14156653\/TietD2E15261.php","hash":"49e779ae6b99992bb0c015b308f3881f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated\/Comment\/Reactions.php","hash":"62973f5835eb1477a8ab88f0ea1ae3b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered\/Answer\/Reactions.php","hash":"fa77f0483dd5a7c395053c083aa61340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated\/Comment\/Reactions.php","hash":"eaa20a2d363006767486d4b46ed7e1b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted\/Comment\/Reactions.php","hash":"86b50782f1d296898e4fb0417b523beb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Comment\/Reactions.php","hash":"1f481ddf335b865bcbb4922ee5ab4aac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/Reactions.php","hash":"29f095bea0b699b139f4a8706c452140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered\/OldAnswer\/Reactions.php","hash":"59b70e5f0f72e5a4755afd960794368d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Comment\/Reactions.php","hash":"59ed2a2dc1439239e9d2c04513a47e44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Reactions.php","hash":"c48043d6a42bfd0b9de5b5876dcd5439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Comment\/Reactions.php","hash":"d3875c2ec9ae070c16a973476c703b78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Reactions.php","hash":"9ac30515023d2cb33d3266f2fae1e8ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Comment\/Reactions.php","hash":"604a1e607f4093d793a1856ee82bd63b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Reactions.php","hash":"8cafa6c7381c39bd3443e1b7e9dfcf46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Reactions.php","hash":"96c66af4b3f7ffcfe49a9839cf5b703d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Reactions.php","hash":"75985897bf299241d66552cb578364c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Reactions.php","hash":"cc5d97abd871002b4869911f96fe9878"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Reactions.php","hash":"25edeb01086c5c0937eb7adb890f2fca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Reactions.php","hash":"26491c07d63c985f34dffdf7e99d96e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Reactions.php","hash":"0ebfe6a9e843d9b0d714c30f6409bbb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Reactions.php","hash":"af074dfed116eb295cd23e957a0c721d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Reactions.php","hash":"0346f0bc3cd345b4df48bb7be7cc22e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Reactions.php","hash":"fda76cfb22360f3062fbfb1768aab13b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Reactions.php","hash":"fb93725fc11b0b8f09061f7334f252c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Reactions.php","hash":"341fecbe19a95418b879f9610ea91b01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Reactions.php","hash":"cadc63fbe3bf96bf04f0890ebe7d2d19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Reactions.php","hash":"60c922938c34664d28b8d190454a3497"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Reactions.php","hash":"83c64d23ce004b18d5ebbb3e98bed5f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Reactions.php","hash":"0028452f6fe6f8b485b4c1b70521e7b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Reactions.php","hash":"99077430f2123d6f9c243d621fd2379b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Reactions.php","hash":"56339d111d8130d8865ab3309b1a079e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Reactions.php","hash":"01f5c13b2f681b31beb17d93a8c00fbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Reactions.php","hash":"975f329e1c09b4b6f28e811d6f536e73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Reactions.php","hash":"858e818e9275e4da3c31b518e49baeaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Reactions.php","hash":"c83bff792e1f1216f96a6961a3ffd5f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Reactions.php","hash":"cb15b56415ac4eb56e1713c37913c86a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Reactions.php","hash":"79b59209affb219857421a6727cd3928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Reactions.php","hash":"0f46402a978f3e0a399c6f8ebabf912b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Reactions.php","hash":"5880202f6230a1a87b1d7fa6de610747"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Reactions.php","hash":"1962c7448cda47c6a0ece2723911d98a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Reactions.php","hash":"afff959600c039a41cf7010f719e4b18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Reactions.php","hash":"a6f9af4d1b767481f43058742e6b209b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Reactions.php","hash":"294f0222a4d38280e93cc9222295b8d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Reactions.php","hash":"e5574b618c9dea6322c9ba729f43393f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2E0BA6D5\/Tiet0526ABE6\/Tiet815D358B\/TietDD2CEF24.php","hash":"be61acba456a909f00739b61473bd45c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationCreated\/Repositories.php","hash":"a7a266ceefb66399f6df3a28091c2b25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationDeleted\/Repositories.php","hash":"cde004ff6ff5c70b4dff82856a6d2d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationNewPermissionsAccepted\/Repositories.php","hash":"29508bac7033920af10025814de0c0bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded\/RepositoriesAdded.php","hash":"2f3a07778f52c51fe2a8701d001cc38f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved\/RepositoriesAdded.php","hash":"ade89c89f6246e6e90b8072fd2d15aa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved\/RepositoriesRemoved.php","hash":"f08f3f8d9f2bb16b31dc22658b2c64f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationSuspend\/Repositories.php","hash":"c2e75905c61b645e60ccd969428cf2d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationUnsuspend\/Repositories.php","hash":"b89e3756489668d9abdd884308e28095"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleDeleted\/Rule.php","hash":"7eea18aa9e438a4a24150a46bd202bfc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Rule.php","hash":"caf47e975fd54983b209a5b2ae62ee9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF72F794E\/Tiet2732DFB6\/Tiet73CCB569\/Tiet295F5040.php","hash":"5ae198bb970a2dbc52e65fce2bdbe921"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AuthorizedActorsOnly.php","hash":"85dc31d694dccb7f8f3352735174e762"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AuthorizedDismissalActorsOnly.php","hash":"03c0b89d8e3aae3497588bc243c8d0d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6229AFD3\/Tiet64100D1F\/Tiet8D5C869C\/Tiet17A05C57.php","hash":"5da674ff19c305d540707fd734d27d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/RequiredStatusChecks.php","hash":"f952399b41bffa5a846c9ec686579867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6EB176F6\/TietA0BEAF77\/Tiet2D79F2AE\/Tiet70A0066C.php","hash":"0bbf554e5cac1e4720f79d3921659c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/RequiredStatusChecksEnforcementLevel.php","hash":"79447f0aa7ba8f9e0e419f939fbf5ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDB3B0EA7\/Tiet7D168182\/Tiet903938E3\/Tiet5938F560.php","hash":"063a9cfab85cb0a422a760bfa317df33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/DismissedBy.php","hash":"c7dcb96bceefa17524d9c3d24f63c1ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata\/Labels.php","hash":"eab2f96ed2278336a7e21aab65c8f5dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata\/Manifest.php","hash":"c542b2534ab94d1b242326cc1ef9020d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Author.php","hash":"e4807f3ae4dff7c9464c9e514e81fb00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Bugs.php","hash":"6b2eebbf5ef0dc911f1278d982be6cf3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Dist.php","hash":"5b30a214b52ed3e89cb2511e03291036"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Repository.php","hash":"b9bbc0b9468fff5c5e481a11a0c9eb71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Directories.php","hash":"d7826de0b78284a9d4bc73dd1f4f0cac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata\/Labels.php","hash":"fd784710ec61dfd0595e7fae43801fad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata\/Manifest.php","hash":"926d9ece97b858d861086fb5b47899af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/Registry.php","hash":"e08e81694aded0e9d287b92fa5083430"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet25C17AEC\/Tiet41436361\/Tiet00E963BA\/Tiet6FAE6C79.php","hash":"07eb4265e1bbe9a29846cd103687aa19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/App\/Permissions.php","hash":"e0cd33ae59248436bc0a3be4c9db39e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/App\/Permissions.php","hash":"e24ec6a70366a90ee8318647c9e8cb2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"1d8b32fb74a6dc486c3200dfc3006c49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"53a72f6b68121e6f0416c686d3942a15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE8FBCC67\/TietC1B5057F\/Tiet473FA20A\/Tiet7939956B.php","hash":"1da1158b1920ccac08a864daa4d24a01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/HeadCommit.php","hash":"aa2d801683e2ca30d24fd7b0845650b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/HeadCommit.php","hash":"8820a5d334490d0486f67163910bd617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadCommit.php","hash":"080b62d3791915f2786bb49a5eada062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadCommit.php","hash":"9c81c3da6b002c1e042bc7eaf10b8a13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadCommit.php","hash":"b5c3e28b0531a23461667c0a2cd12e15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet826D3904\/Tiet8B9E90A6\/Tiet09260A6C\/Tiet25135A2F.php","hash":"28bbf0f27485b34f8a8477d3694cec5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/HeadCommit\/Committer.php","hash":"d55b8e27516bf7274647a00514847048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/HeadCommit\/Author.php","hash":"c7d7e7996fd445779bfa77df95b408e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/HeadCommit\/Committer.php","hash":"80edb9602a9e34d830f0c7d8e388f167"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/HeadCommit\/Author.php","hash":"cb428855cc7fc84d8b6c6e13baa85d64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/HeadCommit\/Committer.php","hash":"8157a5f96404fcd3d3563d8790819256"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Commits\/Author.php","hash":"13550bcabe4ec1b29289737a3e7ad65f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Commits\/Committer.php","hash":"3b6a46fc7622df17b4f6b8bc68be93b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/HeadCommit\/Author.php","hash":"62c2c43b25ea37952eb3d72626888a21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/HeadCommit\/Committer.php","hash":"3707148675adf2950c79de856ad9105b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Author.php","hash":"74c6c4c5245c5145ea1a905e1a7034b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Committer.php","hash":"255715a5e935f2a686e7dd05720b518a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadCommit\/Author.php","hash":"d473e78c5759dd41f505cd81dbeea519"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadCommit\/Committer.php","hash":"4de3f10d5ef306fe8a10f2a2f3704eef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadCommit\/Author.php","hash":"f204d9318609441eb5f08f78def59d41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadCommit\/Committer.php","hash":"d597508f3b783a0cfd6be572c3b7ad39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadCommit\/Author.php","hash":"5d9225a65404168bd79f61b38f209703"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadCommit\/Committer.php","hash":"7ea933eee1ab588bcd888bdf88442b2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFF56CC5B\/TietA763EEA7\/Tiet71AA4AC6\/TietF5624593.php","hash":"bb6b3289519d3ece7f445d35c43508b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests.php","hash":"34015aa6c47d836ab4bbcc49a9cf8721"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests.php","hash":"0c7e2902dd303ce59ad02af715cae231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests.php","hash":"677fa9f05ad8179bae82f5c5b03ae232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests.php","hash":"94ef8e9efe3ff96572f5767da7a38d1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1E9DA6AE\/Tiet37F593E0\/Tiet3EF4891C\/Tiet79A252FC.php","hash":"b52f20ff71705531dac6990aec7e99e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Head.php","hash":"6410fbdc15effa5b16d54c5a2790bfd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Base.php","hash":"b1ad0b28a5edbc90cbe3ebc889d162de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Head.php","hash":"7302c6f05e2d660efb0c19429ee9559d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Base.php","hash":"fa9ac6167e7311cca76798917f27c5a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Head.php","hash":"9ad17f61bac4135542ef9106971d3324"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Base.php","hash":"d861f284d9ae4873bbf4457103343870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Head.php","hash":"8da0696f39016e3a245062c83d57bc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Base.php","hash":"1c57481441f3b97100a2f7800492d8d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Head.php","hash":"30f502a2b9a26757219c87e5fef016db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Base.php","hash":"c495fbcdfc71b2bc53177f1ebd4ded31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Head.php","hash":"23ef474823cc76dd063b86c8af7c32a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Base.php","hash":"3ec3b4c30f1b941d2b1ee255bb76de50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Head.php","hash":"1fe81f0f3bf5e3be5c88b1308142aa64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Base.php","hash":"bb41d062e233c09545ffd3778cd8a3c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Head.php","hash":"4b29d4298fc7b054297b35683280ca96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet5C961863\/Tiet8BA1DB48\/TietBD941DB1\/Tiet93572200.php","hash":"7acbdc9883db7e0bc8469df6734b07e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Head\/Repo.php","hash":"19a9708f4ef6d9fbb281d347861b7fae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Base\/Repo.php","hash":"b3a330d9f00689f8ca24c154b24e6271"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Head\/Repo.php","hash":"4ed5bf30ad4c4e0faca3ab94b2a742e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Base\/Repo.php","hash":"abfd1c7e1eb28cdd1539e4f008e5521c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Head\/Repo.php","hash":"a55b47e8ba98e8586feba9d05549396f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"253b4e94f21fad62b53f931bd7eac68a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"d0580097722b9984ada1273de47f8514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"2a90e9b4f549e256b5cd84de725b4a8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"a6dd7c05c65b9b133101aeeb1dc960c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"af66e43bcc40db910e8f8cc444e7780b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"8d80a90e021f0c1bd89177cd58f4bb68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"d001bf156cead06d329c2ef048bf7976"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"4b52e1cd841ef048a313fc9c5672145d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"6da06717fbee2377461d4bc96a923cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"3eac389976568bc47c67fbd0814bf4ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet243E32E7\/Tiet425E3FF1\/TietF384E47B\/Tiet16830F80.php","hash":"b3a916038db5d853a3b47bb0c93a6eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/MostRecentInstance.php","hash":"d64f164cbeedd6ad4ea37abeb4736701"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/MostRecentInstance.php","hash":"b300e1a837698029fc88cc0a608ab4f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/MostRecentInstance.php","hash":"6cfe4d7bf07c7610eb365126e25f9864"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/MostRecentInstance.php","hash":"d422fc51f49c8eb0f1bf79edcb7de886"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/MostRecentInstance.php","hash":"80a270a4e11cb9611957f03a62690d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet32813F20\/TietDD588E2A\/Tiet1D094202\/TietCA3AFB31.php","hash":"f281225a384040ff23bf1434c963614d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/MostRecentInstance\/Location.php","hash":"4feb3de22646365d9975fb98e8255f96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/MostRecentInstance\/Location.php","hash":"76f46527bfe16947e7ce7c19f8100fa0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/MostRecentInstance\/Location.php","hash":"91b605caac9833350a00bafcd0a8a0f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/MostRecentInstance\/Location.php","hash":"8af4fd14650552662a5eeaed795c5b9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/MostRecentInstance\/Location.php","hash":"8c5752a336406b80110cc493ba8fb620"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF1752FF7\/Tiet180113F4\/TietB5C2D6E5\/TietDBF88893.php","hash":"89cbc729e21c448a30e01560e71d6687"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/Rule.php","hash":"9e98dc730f2dc08689551acd85635e06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet382BF337\/TietB6C2B5A9\/TietD89D0676\/Tiet80A33F9B.php","hash":"4c7de5b4d6b337d39c68cf59709e0202"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/Tool.php","hash":"4cd1338878ce940e137277daa80cb5d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet68F621CA\/Tiet1BC17E38\/TietE93CD08C\/TietADDD8B6D.php","hash":"71d5e179bb986c1220069a32a0b37cbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/Rule.php","hash":"8f1d1151c09971bf0b3108bd6bfd6786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/Rule.php","hash":"5118bb03e2ac74e58c3d3f9fb262f02d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/Rule.php","hash":"db2527ede4f60eadaf81d4885f8b662b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet53741246\/Tiet83068993\/Tiet3F5D3F92\/Tiet54B2E690.php","hash":"d386f3561673b4b187f5806c3edb1919"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/Tool.php","hash":"d714b00904d3393a82db1953a9b4f4d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/Tool.php","hash":"cc3f0552651b8f1f3658d8d7deb04175"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyDeleted\/Key.php","hash":"008e62238d210a4f3af042fafadafacc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookDeploymentCreated\/Deployment\/Payload.php","hash":"d6da100de76132fe9a09ec43a9ca3a8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4843A1D1\/Tiet865DF190\/TietBF72160B\/TietFD131312.php","hash":"8e5f22bb2768d11dad793afcbe78e39b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/PerformedViaGithubApp\/Permissions.php","hash":"ff69d381415e1ef21a7a8799dc479da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/PerformedViaGithubApp\/Permissions.php","hash":"7e722e9d970b85b5d97a46aa77222a2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"7568886012aa9d1968d324982efc6834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"3e63b8817aacc5c31fe7afe11bb26cff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"481bcdb0299446ca7592830d6bbd139c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PerformedViaGithubApp\/Permissions.php","hash":"4bf3d6dce182a301a8839800b0c69c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"a98cfa2ab5c5d137c17b6e39967f37c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PerformedViaGithubApp\/Permissions.php","hash":"74d609c7bed85def06c0b2669263a827"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"c164827e33a5d116df405c5e8b56fee9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"f20bfc0db9257e4bd314924b8b7c67aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"7163ab8198c5f37e11c70611ffeb2a19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet71EE8BC3\/TietFD9D2172\/Tiet416BF83B\/TietD2AF103B.php","hash":"51235f0faa9602cef64338dff059ded9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Workflow.php","hash":"3ca41efab60ff213cc8a7a833c45dec8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/Workflow.php","hash":"5d9c001a23df5b49f64f4ef3b2e92f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/Workflow.php","hash":"fa941f2b8b284acf6395b336fa0ed797"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/Workflow.php","hash":"cc27c1d7a6fd55d4ed4aa2b7b5aebc45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB93BCA5E\/TietE4DA40E4\/Tiet6DC94A0B\/Tiet72FA76AA.php","hash":"98afeda9d0a4a29b6769f1c0387d9ed5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/Repository.php","hash":"5aab156e5ca66c2894baf77819c7ca5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/HeadRepository.php","hash":"fa9e359259ba3b37869f02389ab6aad2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/Repository.php","hash":"fc346786ab4050ae4f8a1b71fae2909e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF9F083E1\/Tiet067C6DCB\/Tiet2FB6AC3D\/TietDB318BE9.php","hash":"ffa8659cfcb50732f9b35df46f0a90ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/Repository\/Owner.php","hash":"b9cb396cfc3e246d481631cf9f7dffb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/HeadRepository\/Owner.php","hash":"c9885d92d8f771bdf9939a57d6437e49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/Repository\/Owner.php","hash":"b142c33f11adba5e91ce8f1654cb1f51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Release\/Author.php","hash":"146739182cdf2c866e096fc41b524bdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Maintainer.php","hash":"2ffe1fbd2046fbf555b991557f10f662"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Maintainer.php","hash":"250fec1ac3d84bd0a848679d6d8b55ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Maintainer.php","hash":"03eb6a8424bfbb61feb47d1720a88748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Maintainer.php","hash":"c1a84bf2aff432f195038b1fc82a4153"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Maintainer.php","hash":"f4caac496293d85309417d522685a926"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Maintainer.php","hash":"7296d5bdbb13d03c089056f6dc6f30fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet816635D3\/TietC55238BA\/TietBF74F2E8\/Tiet24A1EBA4.php","hash":"97a468761426cf7b22f96b1de216d856"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/ReferencedWorkflows.php","hash":"10633ea50045fb0e3fdab63680bdfda6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/ReferencedWorkflows.php","hash":"677abea5132c9d645c75951541edbcba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/ReferencedWorkflows.php","hash":"811584c9451d65d9aea2130407fee38d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/ReferencedWorkflows.php","hash":"8e49f2f3b76ec50ee898f1539a275380"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/Payload.php","hash":"4ffb3748406b118c3abc3f8a4c514e35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFF05E95E\/TietC6CECF66\/Tiet82A80669\/TietA89302ED.php","hash":"93752ecc6427d8fa6c2fd79681845468"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered\/OldAnswer.php","hash":"106facf0686e16079652f8ba7a5625f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet785599E1\/Tiet0A126896\/TietAA4A3589\/Tiet0EC30987.php","hash":"3c66241d287c7758c05cde9a2aa31a20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted\/Comment.php","hash":"a150f4ff15dbf2d063e29df258b79e6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Comment.php","hash":"c509ccb3c6308e0b0c742b5495825e9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet682653DE\/TietCAC7B5F7\/TietAB0C425F\/TietA08C8495.php","hash":"fe70b30b70bdffd5ab392f304e38517d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited\/Changes\/Body.php","hash":"22bb2c6df3cfe2e48399c2564cbea3e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited\/Changes\/Title.php","hash":"6afcaea1cf5d623cd4a8fcb38b1bb549"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Changes\/Login.php","hash":"27cf89ace08cce8c36e87a9aeae285dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Changes\/Slug.php","hash":"9d8cf40a5b570b5e8e4ae7e12f5d046c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/Changes\/Note.php","hash":"97136809e21432602db1c5c37fd2415d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited\/Changes\/Name.php","hash":"794cd160d0c1e0ffc100482ae1f202b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Base\/Ref.php","hash":"de9782fc749a280ae8b56bb43d672c78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Base\/Sha.php","hash":"f5409b5b6bf1c0b95f1682592a3d9ba4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/DefaultBranch.php","hash":"5ca1f98f4049279e0f64ead7783ef26b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed\/Changes\/Repository\/Name.php","hash":"cd7d85552dc1976f7068bc3230828a1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCBFBC5DA\/Tiet410A0D57\/TietB65A397E\/Tiet98165A46.php","hash":"cbfb6f6f6481104c95eff139e87a025c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnlabeled\/Label.php","hash":"8947b4ab53d1c74ef83af633d70290fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Labels.php","hash":"13acfbc4d250f274c4377c67e794e739"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Labels.php","hash":"b384b4c17393b85369b1dea3931aa6ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Labels.php","hash":"b4888f00544c0b484120a8576680b988"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Labels.php","hash":"94eb1079bd0086d1fc0a9c590daedd70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Labels.php","hash":"aa392a79dfd07e97d6b2a09a051706d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Labels.php","hash":"4c65d5f87d221a5bf129d3eb2dd4303d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Labels.php","hash":"6f2a1c542987d17377b65315649ce313"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Labels.php","hash":"d75484684c33842071edb40f5d9adacc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Label.php","hash":"53c67e8160f8cdf2d3cc2e0280d5666a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Labels.php","hash":"3183f2f0a3f4e2bfe416bceb9e1af673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Label.php","hash":"64406a1b14299cb2e316bc944d969f2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Labels.php","hash":"e96195d991158340f4033d85db380708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Labels.php","hash":"f4c8953b75058600922433c0e51b38ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Labels.php","hash":"90ca80569b8d2e878736338d329b9f6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Labels.php","hash":"1d1698e4a969b82919340a1595ac9c5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Labels.php","hash":"ac3781f260ef45bebf0fd1e1e24ea0ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Labels.php","hash":"0554790dcedbe30f4a670a68bf4f0d9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Labels.php","hash":"eae55baf39b2bab3e6c540c334479467"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Labels.php","hash":"df2670f0a8cac84e42b7dabfab467d58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Labels.php","hash":"f1acec132c34836f48a007c34b1b0046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Labels.php","hash":"92fef9c2d81da93e633ace14628e87e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Label.php","hash":"4dc6857dff7185722e014e69f985f030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Labels.php","hash":"a2ee4b19ea7098111ca4be375c8a0b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Labels.php","hash":"6d2efeccd07de1261978be16414601ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelCreated\/Label.php","hash":"217fd91bf4b411098445aeffd2a3a809"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelDeleted\/Label.php","hash":"604d1e2b6e03cf05bf048afc8dc7df81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Label.php","hash":"1291a02810cd1856fb2c856c34fcfb84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Labels.php","hash":"95e3d20fb034b6a6b5f172dceba63626"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Labels.php","hash":"74eddc10e284b921b109038f9128dd14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Labels.php","hash":"eefb96850f8a4abecce546b42a28153d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Labels.php","hash":"de9cfb3c4f01ec0bedccd2262db4432c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Labels.php","hash":"715dae2e9afd60cce7e7a39b882a964e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Labels.php","hash":"2f93342261b0a9150a9566202aae574b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/Label.php","hash":"71d9404d0e1ba9782ff17342abaa2e00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Labels.php","hash":"6a4890a674687c47deeaec36c58eeb2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Labels.php","hash":"bd6b420d2b8eed4d92f3f2d5653988e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Labels.php","hash":"a9e4dee44ffe95ef61ef37e18adf904d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Labels.php","hash":"18d145eeb3a00165e6809f9325b71ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Labels.php","hash":"c558093630001791a110b6eb94050977"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Labels.php","hash":"685029a23cb8919cb809d6ae40b67b51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Labels.php","hash":"4628fc7e5e770ded506dc2a9bf748c15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Labels.php","hash":"fbc4169bb12862837b510ed808d3e0ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Labels.php","hash":"58eacab0433338faeef2c10cc39f28b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Labels.php","hash":"6cdee75df4ced5f608dde665269eda39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Labels.php","hash":"1307716f550efc2d93d821db375b15c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Labels.php","hash":"46766bf4d26696579d52739bbc204a9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Labels.php","hash":"b6303b993d6b99adc6a4e675e3d7bc5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/Label.php","hash":"f38b8b995ed920c0dce8e9b1d0b1750e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Labels.php","hash":"256c7f47aa91ee02b2e200b8b359d065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Labels.php","hash":"6a9291df39f0c8d053d7b0371cf1af59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA7378D88\/Tiet9F1485AB\/Tiet225278C2\/Tiet93F7D467.php","hash":"9e377a827448f249087ccacdf63c2586"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository\/License.php","hash":"78b4eb677905287bd755ae93819f413e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository\/License.php","hash":"cca580e2a8a80563dc08f894cb901588"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo\/License.php","hash":"96f6d2d2f0fd53e4ff3055973abdbe58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo\/License.php","hash":"7f0d927b598e32692b90d76968ff0c18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo\/License.php","hash":"b844ebcc661cfa5921d235d97e091ba4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo\/License.php","hash":"2b328f64b6ca1ba3a4f292aa83c45d86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo\/License.php","hash":"6e0ea5ba7c0bb97d01d81ff91236e273"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo\/License.php","hash":"a286676701588c095d0d0a31e62b007d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo\/License.php","hash":"5db4951e2d649e5235b5a50d9a024bef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo\/License.php","hash":"2bf9d13609d25f5aae07a3cd87aed38c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo\/License.php","hash":"6c28ac442ac3f2050aa3e1ec5aef7a75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo\/License.php","hash":"e58c1747303cb45be049efe3b2762b68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo\/License.php","hash":"58bd3f9f5add4779deaf780cfe067ac2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo\/License.php","hash":"bc5e405c830bd5a2929f9641bd827e69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo\/License.php","hash":"8cd0d316c8867065dfbe6de7f4bf1c0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo\/License.php","hash":"c9231bc8360bebb971219a28a215c11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo\/License.php","hash":"7b44be573acd80519a42d1c08f2b0d1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo\/License.php","hash":"e05292c52e24a90752fee2326b3ff623"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo\/License.php","hash":"efa2cbff91ddf573d929c95b90708599"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo\/License.php","hash":"4ff21e32c3d5c059f66bf91512be5468"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo\/License.php","hash":"acc0816ed43a01aa283ce6e71ce481ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo\/License.php","hash":"e74f726660f083f09fbaf49310fdf6ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo\/License.php","hash":"1c8aa02cae6bf9cd8ea085282f45c846"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo\/License.php","hash":"85230fae1ab8bd514eaaf734813e5b41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo\/License.php","hash":"d6b01375a20b8f443e11133691da05b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo\/License.php","hash":"6e38a7345df31d4c543dc39083accba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo\/License.php","hash":"d484b55e57e32854ba572023f3d81e6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo\/License.php","hash":"a9bf0f6de3b788d0d182ced44aac0e1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo\/License.php","hash":"cbd33b7912562fd6c700beddbcc0101e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo\/License.php","hash":"140786b7da2146d64178e5ea0651b754"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo\/License.php","hash":"7294bd3a9cebc9d96a39d6cb29c66715"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo\/License.php","hash":"276b9c4a65c917040e8b8ec0722b37e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo\/License.php","hash":"a49eec8a4e2fd2d8fb435972a730e7d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo\/License.php","hash":"75f84d793a7cc92df781b18647947d5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo\/License.php","hash":"87ecdb4bcea9da3c533a4d836afbfdd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo\/License.php","hash":"949533fe87584cb176c404713c8fc537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo\/License.php","hash":"fb226f818b8e4cd940831666d8242b1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo\/License.php","hash":"cacf71c344da29a97d6b0b2ab0b2fc19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo\/License.php","hash":"885ff27a6d410f35a4fbe78eeddc517f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo\/License.php","hash":"b5528826fd3a09cbb517748d2c4dc2c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo\/License.php","hash":"2d1059a910e8b61552ac4b0011f74a8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo\/License.php","hash":"ef3643789de3010079208499304c3140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo\/License.php","hash":"139dabf0d53bb57045686acfa3b12764"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo\/License.php","hash":"e28c38ef40e03f26f206c0119960f2b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository\/License.php","hash":"9eee6bfaeeb2c93abacb233549a87340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository\/License.php","hash":"7646dda70af017c69b0ee278f408d4b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository\/License.php","hash":"7dc0dfd7513a13ce26da15d8318de864"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository\/License.php","hash":"efce55b103f908dca91b80a4290fc0e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository\/License.php","hash":"f900db77f8b58a20acbe46ae4ce76e0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository\/License.php","hash":"26ac195126b72e95d7f3b882b8300b80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD132835D\/Tiet06CE1ED3\/TietBF25165B\/TietEDAA71C5.php","hash":"23db170dfbd4ab73928b6b829d44cf9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository\/Permissions.php","hash":"a99d079b0dff22aadd2753a939a9022e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository\/Permissions.php","hash":"c3d923eb43fb19ccd0a6d10f4f73cfa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"26e3a6d6130fe5ef35fdb30ef7f14c3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"d06b3cb385d3fc05bbbc24e9f8c9e454"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"7c20a9818bcfb33d18220584ceb158d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"273bc01b2ab2004882d09f63123c65b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"091982bfacfcfc38a72584d9f29a8b4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"e0d915563db8c16d392f6eac5a7b428f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"5a408aa07c692548db231eb4323ef1f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"81ec86dfb87500913124747fea79a168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo\/Permissions.php","hash":"873a2864b2e84902ef0e8d1284f7f8d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo\/Permissions.php","hash":"c42746c483bff0f3bb2302861952840e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo\/Permissions.php","hash":"6f0b2abaa128257f01786312a42062ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo\/Permissions.php","hash":"1e6faab334c811b2176c235d65261ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"b76446b1b72313ed37b28ef9d27bd969"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"df2afe3ef996b55640d0c49b200793b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo\/Permissions.php","hash":"e502ecd0d418b7c7dd52693990861a9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo\/Permissions.php","hash":"69d21399f1ea68e3789a74a28e9604c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"06db77617675ea8a09e7804cd071adf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"d11114de252850cc4b35e4107063cce6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo\/Permissions.php","hash":"000ad7a06d1bb7ca74bfbd9e857c2158"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo\/Permissions.php","hash":"da69cce8df39730743d6ddab04e07b54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo\/Permissions.php","hash":"9bfc53e14519e49bfb029b4db8f70c04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo\/Permissions.php","hash":"ef2aabc66350d5f8f9f8276b9666fb17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo\/Permissions.php","hash":"ebebaa748ae5c9ed3283393923df3d61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo\/Permissions.php","hash":"b56f08c4af1094076eba33a2e57638d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo\/Permissions.php","hash":"5fb149a80f334917cd6e902a9ab2a5fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo\/Permissions.php","hash":"101760ebd6548cefa38bea1190440875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo\/Permissions.php","hash":"f3a9a796ad0bffb2e603d82876568229"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo\/Permissions.php","hash":"6a1f742c866389de64d052895d8d8049"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo\/Permissions.php","hash":"0ddbccecfaaedf8c7ec04fc6ad99c136"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo\/Permissions.php","hash":"e5058d1f90addbf17cfc91b54e47e661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo\/Permissions.php","hash":"90f98c3affd7ba5245e2aab6b332a38f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo\/Permissions.php","hash":"a9416a72a9b693e12fca0afd303a1260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo\/Permissions.php","hash":"e2a06b3c9bc5df30bce6fdb0648dd87b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo\/Permissions.php","hash":"7e2641af2dcd4f504ba24daa3a438bdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo\/Permissions.php","hash":"0c141b26e645ff372d7dee31045f4dfe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo\/Permissions.php","hash":"21f0bb73c4cac2f0d8d51ce66e9c7ed3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"8335082591492977aacc7feb297af807"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"cc654e554cc6edc3df75d4c37597d372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"f6eef399d79b17d5622cd8591654ee2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"c7652e2b1bebfc1a21c2e8bcb65cd4f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo\/Permissions.php","hash":"2263894e2ea1a36c730b037633ea7bb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo\/Permissions.php","hash":"69b8adbcf41b6962b6f7ad910e10791b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository\/Permissions.php","hash":"35799b2812230247527545c8a95f8869"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository\/Permissions.php","hash":"4b59101d67b43da21c6024c09a23494f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository\/Permissions.php","hash":"5712a5fb8fcecb33a3e35d280b504b7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository\/Permissions.php","hash":"d03e8618b30e54bdb092d87077b21984"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository\/Permissions.php","hash":"ba3374f9477254d40d4c6a9c1df0af18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository\/Permissions.php","hash":"5f708e2f0e0c8d0e63cbb6c94dbd6da4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0ABFFB9A\/Tiet721DF3F2\/Tiet6C0961B3\/TietE2C9336E.php","hash":"244c953be3d557f63b292ecf92c0c1d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Assignees.php","hash":"61705809c4010012d42cbcdc7610aafe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Milestone\/Creator.php","hash":"37cf0107ef3f834c8401afe755549072"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/User.php","hash":"7e1582e18aa9cede781c3db3fd1519c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Comment\/User.php","hash":"afab011d21c50631fedbf12a4fe30a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Assignee.php","hash":"07c8253edb88aa4f6827fe11cddcb549"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Assignees.php","hash":"e0820f079957791bb563656328d71a90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Milestone\/Creator.php","hash":"a6231feafae0d01c514d2b4cca434922"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/User.php","hash":"18f1669f195f55e66bd73bbd82ff933d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Comment\/User.php","hash":"94eacac90fabf77ebf59d91c5985ea4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Assignee.php","hash":"4ab83b4eca2e06c4a8b312d760b47ac5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Assignees.php","hash":"13ad9cda5bed0479afbc7f37f69f498e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Milestone\/Creator.php","hash":"6a8602351661b10bbea03d21d6dce1b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/User.php","hash":"679ba2da3e6b6cae659dfa334f381e66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Assignee.php","hash":"57398c7b00fb5e25f3df2ae2012093be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Assignees.php","hash":"514fabd53a65b517de8d9270a656dfdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Milestone\/Creator.php","hash":"4e72fdc8128d5f9fa82d35d0e0475e0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/User.php","hash":"45bb4b64eb5b4d3f6f868f8eeb2596ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Assignee.php","hash":"7e4a3ae2173ba8e77da56be0c98bb8b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Assignees.php","hash":"9a1615ccda386ffe0196c7e78a10129e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Milestone\/Creator.php","hash":"800f7fd2de504b03ce08c3e4971ae66b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/User.php","hash":"bf4432539bb339d0031ff2800dbf22d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Assignee.php","hash":"08b3061d29a10909d1fad2b4423ba89f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Assignees.php","hash":"7edc6e73c0d900d4ae9def1283cda381"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Milestone\/Creator.php","hash":"3dc527761fae085ce9b8ea43fc84397c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/User.php","hash":"2f751c0415af86d99edf375464e178ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Milestone\/Creator.php","hash":"2470f6cba1013d837850a383e54f7220"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Assignee.php","hash":"91c0f4bf7264f23cb2d7c332fb175956"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Assignees.php","hash":"7ee13fc21ff0d848f61b8111f0293184"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Milestone\/Creator.php","hash":"10c55643b68d7c40d7d14e896aabc1be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/User.php","hash":"218432dc1a109c522d4c639acf1b6402"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Assignee.php","hash":"33a7cad6f72981d0c375e7a6dd668f6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Assignees.php","hash":"45016643ad3035401dbb713e9e13669d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Milestone\/Creator.php","hash":"bdcc97ae213ca8823ee203b552ff4044"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/User.php","hash":"f9a82b87c432216c3dd943c1535b3a33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Milestone\/Creator.php","hash":"141d57a030a2d2bdc8394285e8ff2213"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Milestone\/Creator.php","hash":"f008a5d84a3241325606accdae41a726"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Milestone\/Creator.php","hash":"9f1b4b1980deb0d2e508492d9b2b983a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Assignees.php","hash":"7436bd52da361dd0b31f785ed17369cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Milestone\/Creator.php","hash":"7713636469056fb0dd6bedeaa53bd8ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/User.php","hash":"ee3b060b7c5ebecf1e9997258b3bd34d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Assignee.php","hash":"5e322b69f0fbdd5548830bf6c0c51d08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Assignee.php","hash":"8c2b08523c2d2c378def760a0c74c043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Assignees.php","hash":"1514a4d57eb12c94e56f8d7bbe5fa7b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Milestone\/Creator.php","hash":"261b2e50fc0a256acb56b307a55dfa95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/User.php","hash":"147007bd85ca9c806e36617d16062486"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Assignee.php","hash":"a70d491a12c18d71b90ffc3f63b42579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Assignees.php","hash":"d2e9b83cec28e0550cea070f4513395c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Milestone\/Creator.php","hash":"2850a116738480066c7c2cb190116408"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/User.php","hash":"d6919a5f18ae5cedd27f908355289235"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneClosed\/Milestone\/Creator.php","hash":"afc803df917433b6e5836e1325d317c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneDeleted\/Milestone\/Creator.php","hash":"a81eb877608242f0489eea8257b3c2e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Milestone\/Creator.php","hash":"bb6f96733e02d6bff4d8fbdae0c21c4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardDeleted\/ProjectCard\/Creator.php","hash":"55ff359d4d76aa7d1ddbdfef6082cdab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/ProjectCard\/Creator.php","hash":"34aaaa2b3c3c05025a54e1f00557951d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Assignee.php","hash":"9d52391790b74edb9527d41224c5b166"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Assignees.php","hash":"7f203e5bb3ea183c5649bfe19dc3424c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Milestone\/Creator.php","hash":"29f095ee9686922246cec582b2ee8007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"86fd6640183e970fbb005b40dfd0690f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/User.php","hash":"de90109bab21af6887172c54f97d3330"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"8a1ee821cf9aff54c35c4a1345c2c4bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/User.php","hash":"7b26aad217ed152bc608ef81261e8389"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Milestone\/Creator.php","hash":"74b53ad1eccfd7dc23676ef9696f5588"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"478786def4f3b10469da8539c5d028ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/User.php","hash":"d4e11cc6f669b5d547a18e8380a61890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Assignee.php","hash":"998e7e79150261d5d04ace1807795312"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Assignees.php","hash":"2f9c480c2ce4099fdaac55c2609c15ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/MergedBy.php","hash":"1dc9634b26ae6f91f5a63591903517bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Milestone\/Creator.php","hash":"6fa5e02d7cb209f836386bca6aacbfe3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/User.php","hash":"e72f2376a3d501c31e81b6da26f93465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Milestone\/Creator.php","hash":"8e0cbe01bde9c2a625cce9ffa1a73875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/User.php","hash":"7c1ba79f623ca14532c582b4f4110260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Milestone\/Creator.php","hash":"2cc1011f71a62a68c2bf0fb028d5a420"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/User.php","hash":"6d9af313521ffd1da5485bb16ea7903e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Assignee.php","hash":"3d91f82c9dc7b02534c2ba3b5b1e75a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Assignees.php","hash":"d69677aea5e3c5977eb0c7575bfd6d6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/MergedBy.php","hash":"78a37679996369f998bb5599719ac8d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Milestone\/Creator.php","hash":"ff66045927d3f16e505b6eb633ab5aa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"220d6f029c9697fab704fd75e458e2d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/User.php","hash":"28304d5ef7d1c0730a83fadd84389b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Assignees.php","hash":"edfa3fe33da210759dc4b05ecdbaf7e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/MergedBy.php","hash":"b58f22136eee427139016681ac4eb193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedReviewers\/Zero.php","hash":"739afb4ccf3c08afda4fe40646578fd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/User.php","hash":"bfcbdbed8d3c93d676901c1f4b49c79b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Assignee.php","hash":"45d3e652093d5bad8fb3e14a6a738c33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Assignees.php","hash":"5316f4953bafa1c160178febd4702653"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/MergedBy.php","hash":"b5e99bddaa55b5173b3ec9e31fc71147"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Milestone\/Creator.php","hash":"00a98ec653a1b6f52a971ca09a3fd1b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/User.php","hash":"55542f97671581f9835153283a572ee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Assignee.php","hash":"deaf84d7c4b27476b7e1ce85cf67f331"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Assignees.php","hash":"9d30db1793b703687edad825f1a7c7ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Milestone\/Creator.php","hash":"5aeaa10c74c2e919154ac02c6c57c9b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedReviewers\/Zero.php","hash":"fb5f1ca78be0f19ba9dbebdd075153f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/User.php","hash":"e9d3730e2dfe8dac861f12870a15d637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/User.php","hash":"7da98d0e641ca24e990ce12008dcfe07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Milestone\/Creator.php","hash":"a13a01c866b17662c3965aafc6d98aac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/User.php","hash":"d6b19c28880b85a31c941d322239dc3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Assignee.php","hash":"ac613e01ee1c5d0461902f107f7fb2ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Assignees.php","hash":"f26ac2cb700bdc2a567b6db0f2a7d002"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedReviewers\/Zero.php","hash":"1d67be26ba62ac79fc76bc389ec8cd0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/User.php","hash":"01c34397e63fa122d8f4ee3339084c10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/User.php","hash":"4a0dea5de2662daa3e0bd7347952487d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Assignee.php","hash":"0cf29167100383ab410b5dd26c446128"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Assignees.php","hash":"7d6b8fb290023073965496eab849c4fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Milestone\/Creator.php","hash":"07c211d49fccdb51713de740fa78220f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedReviewers\/Zero.php","hash":"149efec66fbbe2af392bde96e4bdaef5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/User.php","hash":"c904e2876cd55f6efa98d78303a92290"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Assignee.php","hash":"c95363e4b84b92dca4841e92c0f8c8e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Assignees.php","hash":"573adf65336de44ee85cfce272fcc7cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Milestone\/Creator.php","hash":"1a9f530e337f2a7e9d793026e6e106df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedReviewers\/Zero.php","hash":"a1c0b89ec0bcb45975fcdb2062b7ddff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/User.php","hash":"165618af792e31618ddd6682618f91c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedReviewers\/Zero.php","hash":"0b6a941df5231d23f5e71030b5bff68b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/User.php","hash":"0512806bab33c7646aa80496a3a8675a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/User.php","hash":"23995bc7dedb0875da923ad0e038b3f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Assignee.php","hash":"7a9d0406c67c831a8726ebb088afc587"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Assignees.php","hash":"281feea17c549b0bf209c125d6a61b1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Milestone\/Creator.php","hash":"29c29d304913535b23de06a05c6c945c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedReviewers\/Zero.php","hash":"99cbc73adb8a553dc11bceb251e89859"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/User.php","hash":"7580af9dff2ae10921acc940171456f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/Assignee.php","hash":"752eff4af0139dd1f4eb74d863f02b75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Assignee.php","hash":"6390a9738e6c5703773618af73723000"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Assignees.php","hash":"951baa1cbbc4bc4b2ef81b13c02516de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/MergedBy.php","hash":"809460b0d3e7d67862a57b2a51e8aefa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Milestone\/Creator.php","hash":"4598222de38f2c9bbc602ca8edbf29b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"8bfb2488981ccc61011c8a65cf0a064c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/User.php","hash":"ad9945a16e39d7029d11c7f38edc5cd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Assignee.php","hash":"0db55727a83fe33d99bce6e187c73112"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Assignees.php","hash":"f2ad6a20bb8835cf69ba0f29adb29f74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Milestone\/Creator.php","hash":"2cf0809e097b9adc9131de7638230d51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"1b8ece8ad328ec0126da8a31a7b3fe90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/User.php","hash":"df79d40bf11ee6953fdb6ea04a23e7ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8581CCF9\/Tiet9F48F90B\/TietE152DE2F\/Tiet393FAC6E.php","hash":"ad713bfecb337dc6400002b4a0f40f1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Milestone.php","hash":"bfa4f42b594602b007156d7c2c2feefb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Milestone.php","hash":"c8242121a9f9987b1a8d4bea12ddd342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Milestone.php","hash":"6cbec2ad8296e8bca75b6ea1eadbd828"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Milestone.php","hash":"0c55c340609310a381f89a4a07f0f39b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Milestone.php","hash":"f6554aa054b7f10033676e8e5e2e9210"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Milestone.php","hash":"a332ca0ee2a8dca6802853a2a1f23d0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Milestone.php","hash":"7a64db9c99efd209c9d5d51cadbf29fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Milestone.php","hash":"814a7e214142ed02122feb7ad3d14841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Milestone.php","hash":"f711e34d60aa45b33bf54feb36d95261"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Milestone.php","hash":"2f26db3eca305fc203a5ff6e246ae214"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Milestone.php","hash":"3e3a68357b0210ef6e437d091c98f84c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Milestone.php","hash":"6f3a1fb87658da269e3f8f9df41b9ead"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Milestone.php","hash":"0f233a4fbe11675f67a7dba13ade3f37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Milestone.php","hash":"49ef9a779d49cb4183b09c9d569b9aca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Milestone.php","hash":"dbf98792754fc45728b37a6d6e58e450"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Milestone.php","hash":"2cc47935efbbf8d1ff6e4112a4a206bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Milestone.php","hash":"a55b51d0e472c0fd09f30ee5ad97daa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Milestone.php","hash":"1d33dabf23ddc1c0ac4e9b6216fa8ff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Milestone.php","hash":"219650d48b963439306f6c8d98c536b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Milestone.php","hash":"a7e8f6d986f4a651b27640ac551a0168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Milestone.php","hash":"c2e5a3c2608a5a262c87ae040a847aa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Milestone.php","hash":"492e770462f52e92768f8493e1a9e134"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Milestone.php","hash":"23d51e8afd35cc1b9eadee5dcc71de4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Milestone.php","hash":"757075a4b1c086fde817a6cac2fc81d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Milestone.php","hash":"035a5379350d74734bf130cee0192cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Milestone.php","hash":"1d47734576888053d2661a17ecf16090"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBFC83FE4\/TietCB010FEC\/TietC14862B3\/Tiet0D18AA1D.php","hash":"502da0c637ab5f1b5d7c4648069fc00f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PullRequest.php","hash":"a9f619c127bdeb88999887b9f0ffd61c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PullRequest.php","hash":"f34986107a0eab3def83f737a742b2f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PullRequest.php","hash":"c78463990a99d093f228c735d9079d4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PullRequest.php","hash":"799cbde7f7a92f823ace0fa18648f2fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PullRequest.php","hash":"f1336153b7333f6a6037da43e43d4e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PullRequest.php","hash":"88ef06c6247b97e380882dbdb80bcf97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PullRequest.php","hash":"78e73ccfaadb3c35547c2047d2825476"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PullRequest.php","hash":"1397e71b9440a26d644a96134d6964a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PullRequest.php","hash":"202394c505c31a2d3e4280600786e247"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PullRequest.php","hash":"ebc0f706da1abd98933944fdb3dfe345"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PullRequest.php","hash":"9497d6aa1585b745594d38cb973a86ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PullRequest.php","hash":"7be99f027a48be675de72681a7a02c39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PullRequest.php","hash":"39b0e5dc78af5dff5415a25c1c1b8383"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PullRequest.php","hash":"2ef11ad9b4c49cd42c2596882d6bdf0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PullRequest.php","hash":"7eee2785c3fdc2a7ae524d464a4916e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PullRequest.php","hash":"d4661a0d398cd1fd58e9adea992a7340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PullRequest.php","hash":"a5d3d631b0a06c8ba4de6ce707a74563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PullRequest.php","hash":"4063c6429e36304d90c4af6304cf635c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PullRequest.php","hash":"4f2d38369ca85fbd27c41f60be91778a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PullRequest.php","hash":"ec38450583bed523970b3c7b6779abdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Comment.php","hash":"d62c6c905bfbf0170390f0e7487d0e8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2CC4833C\/TietEDE4BABB\/Tiet8A5CD377\/TietFCE070CC.php","hash":"769567a34b6c0938572d1ab2d5b75db3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PerformedViaGithubApp.php","hash":"f87be888f7dc68294c916513a982665a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PerformedViaGithubApp.php","hash":"e56bfd8732a5d2aa5f90aa78e6862307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PerformedViaGithubApp.php","hash":"1765a0675345bb9efb50cb577df0ad55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PerformedViaGithubApp.php","hash":"4528ed4c17fad1ed2038fd5bb7061fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PerformedViaGithubApp.php","hash":"275c30cd0b9c732304053795dea32bff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PerformedViaGithubApp.php","hash":"c3a050f3d29503cb6bbc702905d59135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD40F0DA1\/TietF52E1633\/Tiet9644A5F8\/TietE59F6EA8.php","hash":"e241555c8bfaeb19257809f71b7dcc01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Changes.php","hash":"0fef3ed5800c6395c06d441d8655ca7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet577CE6E9\/TietD2ECD35F\/Tiet80C6C3F8\/Tiet8528CD9E.php","hash":"a8381d822c55a74a256f9e8f16c731a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Changes\/Body.php","hash":"d7c06479d39852c8d32edd4d461f1f58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Changes\/Body.php","hash":"b781bfe04d7270885ba8c297bded1fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue.php","hash":"ac1f2bf799a06fac32f537a2d46e0936"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue.php","hash":"3c9a9483ad7a2be9624c0fdc637b2fb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue.php","hash":"0a4fbafac888dc90d5f142a5ff521665"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1720054D\/Tiet9210BBC6\/Tiet3FB12666\/TietB2827ADE.php","hash":"5ce1ab88b7ad9c42047dd112f9dc3c97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PerformedViaGithubApp.php","hash":"c1a55f6a006492b30cdd4357e5a71bdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PerformedViaGithubApp.php","hash":"0a539022440cb06f3980a09438b06830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PerformedViaGithubApp.php","hash":"88b605e477ebbef25803660801e79579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDC57B05B\/Tiet43E2E854\/TietF0DEE07A\/TietA1A61505.php","hash":"273960f4da3f61469fe73d98f7670c49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"5e46fe1cdc0f2645b5ede0ca236f433c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"963549c4c33e6bdf34a401ebebb11905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"b14690f8329a3a2b76bd18cb9d06b5cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"b959b4d61410ee0b9a80a8b008f1cc10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"533c83a5d91b7ab1012752d5bc67d1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"8e258a4c1cfb7eaa40e81f32f8b5ebcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"cc04dc7fbc3db788ce1651f45d5a1917"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"c458266dc3ef57834dca0f4a887a5445"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"108751da26764cdaabf260778cb1dfb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF5C8F2ED\/Tiet1E2DC2E3\/Tiet6CD07639\/Tiet33A0DD5A.php","hash":"a39f1ad69f0dca7946f94b7c2369faad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Milestone.php","hash":"9a167fd97002d5049bb22890c08e3aff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Milestone.php","hash":"2d8c546a542c9143c2603d1f76b0a8fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Milestone.php","hash":"08fcd8fc1cdb1d39ec9b85569babc194"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Milestone.php","hash":"c2538d6793681de405a2bf09d3cb78b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Milestone.php","hash":"a4232d1264de5386c1aad1ae8b9b6099"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Milestone.php","hash":"ae0f33abb462eb36c434b1c3b8d02855"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Milestone.php","hash":"93e15f67599da74d927b2c50dd3db7f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Milestone.php","hash":"ff28a01a2b7f54be018ec5ae6e2e83b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Milestone.php","hash":"968e73c67e15595bea15d73c3fe36d08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Milestone.php","hash":"3b8be4188970e50f6ac5d219c97db08b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Milestone.php","hash":"3c1ce6601aa8a1dc87f5f46a8e61259d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Milestone.php","hash":"0d206f9e7196e9fcd1a0cc8d2b771b53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Milestone.php","hash":"0abf193e1522766e2ddfce45536c8d79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Milestone.php","hash":"ff0e7a7cf64c171d09b0c533fccd9ba3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4FBF546A\/Tiet72C5BBB5\/TietDF190932\/Tiet25B04BEE.php","hash":"b7f124db7a7a16b3719ccec7c93d31c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Milestone.php","hash":"34943a87b75ca432c7160d64de3751b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneClosed\/Milestone.php","hash":"7f6e577379619e11a01517f75582a43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneDeleted\/Milestone.php","hash":"02b14f86bb61f4ab30123e040d846663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Milestone.php","hash":"9a784797469b1573e19c34c94f8ca939"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet052D1494\/TietECF8535C\/Tiet852A1CB1\/Tiet2AEA484A.php","hash":"7e26ca7108c2d0b56a610c45118ce8e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PerformedViaGithubApp.php","hash":"8b553936064955126e61d162fbbf1465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet82D1D590\/Tiet5CF04E1D\/Tiet3B3E57B4\/TietBECF942D.php","hash":"aea530096b79257f4469f238a822c743"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo.php","hash":"2230d88acb0dc89327e40bf22ded8386"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository.php","hash":"07ab0ebbd8e17d8e85b4dd915f6cc146"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository.php","hash":"fb2b4b552956a5f01a808f9c07ebbec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository.php","hash":"9fd388c43c85b075b369707f2ec3a206"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository.php","hash":"0c0f6e31ab7caefa237c1605362ca8c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository.php","hash":"3daf0b26bf02653f638da8d9e9eb5c40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue.php","hash":"c4b003a2be6fa5e8e5148a83f7798829"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue.php","hash":"65ec73c3504a808f1d79b282bdeb6c0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue.php","hash":"0882d84c5f9203c1178bdbf39f8d3036"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue.php","hash":"08ff683b371640e886e928ca16bb8a26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0974F8A2\/TietC4E2BC26\/Tiet68B9FD34\/Tiet172D517C.php","hash":"c525c8189b9fec5b47d96797b662a96a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo.php","hash":"dd07821af2bd5624801f3478a496b42d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo.php","hash":"446c986de4d68a2d405a7b55819c3f1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo.php","hash":"af35a8a8bc0097d331ac1bd3fbc54f01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository.php","hash":"83d506747a5d17ec9cdc27c6cf1ea31f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet90B64BAD\/TietF15E2FA0\/Tiet4430BD5A\/Tiet9EE541ED.php","hash":"075ae450d63ab717512eaeb28c7d855f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes\/Description.php","hash":"5744f4a18a89ddbf6b5e2cf8ddb88b02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Description.php","hash":"e9350bc1124ce47bc53a2c15ae41a5ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDEF8F9E0\/Tiet83B43907\/TietF4880AA2\/TietBFC1F161.php","hash":"117653a49618e8ca0c83cfc003dbb776"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes\/Name.php","hash":"c15ed1c280f8c79804299cc8c7020c01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Name.php","hash":"c9bfaa46bf386c9693674b6562c239a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB8723F66\/Tiet5958F165\/TietEBB4D40C\/TietFFD41F70.php","hash":"972d33f654521242399b4d02656c4a47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/MarketplacePurchase.php","hash":"4a2d59b8394b7aaa159309c6eb9e128e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/MarketplacePurchase.php","hash":"856eb905d93edbbcc50eafee2b2a15c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/PreviousMarketplacePurchase.php","hash":"a2b4edc98fcec68efd935ceabd5710db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/MarketplacePurchase.php","hash":"b2d591a39e31b4601f94d78341d0ea1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet43E8B1E5\/Tiet0645CECB\/Tiet29093A4D\/Tiet8B7662E9.php","hash":"a5b84829951fe7627226837cf6de1c05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/PreviousMarketplacePurchase\/Account.php","hash":"aa1bbd7965ebabbe7973b7a9ac112021"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/MarketplacePurchase\/Account.php","hash":"2e1e51a9430757f838cc9cb49c24bfd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/PreviousMarketplacePurchase\/Account.php","hash":"33f731daf843e4d8d9392469f46fe130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/MarketplacePurchase\/Account.php","hash":"1416756b786a9406306eb308592d1b53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/PreviousMarketplacePurchase\/Account.php","hash":"80e66d60c8718abcf06676241332b246"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/MarketplacePurchase\/Account.php","hash":"bd46749b06ec0255d73992f95455f561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/PreviousMarketplacePurchase\/Account.php","hash":"fa5be95d8d66313339427bd28e3ea392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/MarketplacePurchase\/Account.php","hash":"c435accf6607dedf5e4133f5e1a69d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/PreviousMarketplacePurchase\/Account.php","hash":"729eb612968557731dcb3d648093d6b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7AA6A7F1\/Tiet3B52E3DE\/Tiet4A6A69BC\/TietB4BD4493.php","hash":"5af984aaf3a6e985b06fc8e6520327e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/PreviousMarketplacePurchase\/Plan.php","hash":"04f06eb6d76ee1de66aa5477b64f9b8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/MarketplacePurchase\/Plan.php","hash":"a6b3b9989e241aff6781c73069da2cec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/PreviousMarketplacePurchase\/Plan.php","hash":"c394a42208e776411d54b80926670079"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/MarketplacePurchase\/Plan.php","hash":"2e8225bc82ab042adf4febba6daf257f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/PreviousMarketplacePurchase\/Plan.php","hash":"8fec323162a96b5fe92854fb95f20b87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/MarketplacePurchase\/Plan.php","hash":"06ded859e5f789700d21b17317273410"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/PreviousMarketplacePurchase\/Plan.php","hash":"de4f6990d50fee1009c6a9604f3e90b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/MarketplacePurchase\/Plan.php","hash":"2746ee572ac62cf44e59a9ee5eebc63d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/PreviousMarketplacePurchase\/Plan.php","hash":"2bab7aca293ffed7418a66fb72774321"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB0609077\/Tiet747F05B8\/Tiet025F0545\/TietB779F0B4.php","hash":"b399e514e55e59cbcab322893354dbe0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/MarketplacePurchase.php","hash":"d94105e233545a2673555fbed971a616"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/PreviousMarketplacePurchase.php","hash":"f969935a1d2f698a8cd553882b85ee37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/PreviousMarketplacePurchase.php","hash":"473389733c169c9d99aa3de62c75187c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCFBDB8CE\/TietFC8CF1C6\/TietD96B7C73\/Tiet987450B9.php","hash":"f4e91ea9ae3b0eb0d0c0bd336ae92f26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/Description.php","hash":"1eaec1af9a243c878e3ccae8f31c475c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/ShortDescription.php","hash":"bfb231179bf05348b591af03409fa97d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/One\/Body.php","hash":"dfaa8e9cceffed10ae1f2a8c9b4a87ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemReordered\/Changes\/PreviousProjectsVTwoItemNodeId.php","hash":"fa1385822f85ab9461ef0ed638ab2602"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet701D1F84\/Tiet084C7488\/Tiet389FAEF6\/Tiet1DDDA030.php","hash":"465de84c72969624886eeb125d2bb6f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Team.php","hash":"5078c1c395c29a24efdcd7d6a5575c26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1713FA54\/Tiet8228D0EF\/TietCFE14802\/Tiet29E22580.php","hash":"514cba77f3edc9d5700ae3fe8dbe8cb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Team\/Parent_.php","hash":"8f5454eb41202b99a1391b527d2c019d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAdd\/Team\/Parent_.php","hash":"e77f78090200b91abcb239fb8296211e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Team\/Parent_.php","hash":"81e985dbf461554afe31921669ceb987"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Team\/Parent_.php","hash":"ef5c3c28aa16fafb6e5d3da55c93a0ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Team\/Parent_.php","hash":"d2c7646c82b789dbddf152f5561f7277"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Team\/Parent_.php","hash":"8488556dad455750d73ffbc4ec6e54e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Team\/Parent_.php","hash":"52692eeead3f9cef958e662536d0a70e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet70A66881\/Tiet324DD828\/Tiet5AC65377\/TietE88645D2.php","hash":"9fec727e31bb12bc8d6d9492f0dd1b1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneOpened\/Milestone.php","hash":"506da29831a25449b847cc0f28f883fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet5AC3402A\/TietC1416C73\/TietB92827C1\/TietE5472178.php","hash":"ecb11387a12ec0d3a9304979a3650043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Title.php","hash":"abcfdc62ecdd29e629526ad054eefbb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6E163C9A\/Tiet9BBD373B\/Tiet3BD5D026\/Tiet9A2269AB.php","hash":"80f9b69e03f81a1ae33e57b1fef5c708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberAdded\/Membership.php","hash":"2be2c7708feed45515673cb47cd3a11d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberRemoved\/Membership.php","hash":"d100da26650b0b85cd90a54a15b6e76b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Membership.php","hash":"fa9ac5479e6dfd4e7b3a453417a44b39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Body.php","hash":"9b0f1b926cd5eb5044f905dd41574a46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietACA2ABF1\/Tiet1486B169\/Tiet8AB0E7A7\/Tiet4B4F1024.php","hash":"d21568d9e5db63b4d2f2ce702b7b383f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata\/Tag.php","hash":"5105c01199625bca2965dfd5168f68d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet95FF9456\/Tiet25FCDDCA\/Tiet8B3C65A3\/TietB6AF054C.php","hash":"2447c2bb177a0e130499470fe0cf0951"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/DockerMetadata.php","hash":"fbabea6db0cf82299774b64ed248e1be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/DockerMetadata.php","hash":"95e7048b2001412919d71d2a0492b1b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NugetMetadata\/Value.php","hash":"60882597f04ba126f9ba0a0b4badee25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet93C9B675\/Tiet0FC23C1C\/Tiet3E354A7C\/Tiet174AE064.php","hash":"5220ad8c889dd986dfe571088ac1a0a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Value\/Three.php","hash":"21749b514d910876cea2b6e2e4e0509a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet067B84F7\/TietD0AA2418\/Tiet59585D81\/TietA391DB12.php","hash":"91911e061d6eb28303585e1ebb8fbb5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/Registry.php","hash":"77c10b2b816c8714fb8708ecf1804664"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3FD92886\/Tiet86560C9B\/TietA2735AF6\/TietBD65F6AE.php","hash":"dd3528ad71602fa89283b3000c05749f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardCreated\/ProjectCard.php","hash":"a1f7f614fbdbf92d6be7b5342a31a7e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/ProjectCard.php","hash":"fbf7d18d909a857642e0544eb1677f9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF544D852\/Tiet737856A2\/Tiet91CC78C7\/TietC3F74F2E.php","hash":"3b2e2baeb5ac40386a41bcd10c72cac4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/Description.php","hash":"f94cdf30909ac71d016abd1a701e7ed5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/Homepage.php","hash":"3e7501493743a74064348dc5db65b56c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet66B3C0EC\/TietB8A403D5\/Tiet1E8A0A39\/Tiet80E5E205.php","hash":"159d5b6845153a5ba8c049493c8306ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCreated\/Project.php","hash":"fc6d266ea44b5a671b61d77b20d67fed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectDeleted\/Project.php","hash":"4153a962b3338e59eb752c7de6788105"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Project.php","hash":"73e5117321bd6adafbc49941e5595d0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectReopened\/Project.php","hash":"0f3758d3f11b205012e931f4365e15c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6E03D84B\/Tiet0584B5F3\/Tiet708D9E30\/TietA68A0285.php","hash":"aff212c0a30f36d3d41de36ee948ba81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnDeleted\/ProjectColumn.php","hash":"951798dd42ba35d7819bbd303f6d9b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited\/ProjectColumn.php","hash":"7d452d2c81b12e9faccf1e7884ca021e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnMoved\/ProjectColumn.php","hash":"b36e513af23f6da70ea53dc210085611"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD089D861\/TietB45DBC8A\/Tiet01D7B6A7\/TietA81C5C0D.php","hash":"ca24b013b0bda77254f9763a6f630cab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Body.php","hash":"45713918a5ccc5e12a7d921c1b740f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Changes\/Body.php","hash":"5a3d9108780e7ca9a579114d4b83e9d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes\/Body.php","hash":"f7cfba52e38480d2cbca79cee09d203a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0DA50527\/Tiet17F19BF5\/Tiet900E2E26\/Tiet0E39678C.php","hash":"f14d86e4dd367e358b60e1a294befbdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemRestored\/Changes.php","hash":"aa0c8ba0d18887c9bfd7e54919a6ee79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet63A75E4C\/Tiet57A5AAD7\/TietF5C5B73F\/TietDC01A051.php","hash":"9d116d0c0c2942db0c27c00cd6a84ba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemRestored\/Changes\/ArchivedAt.php","hash":"a81cfefe090e4d28f82857ee38e8095b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6B1B7663\/TietE4F5DE6D\/Tiet0BE24B99\/TietCC56D255.php","hash":"3f14d14a5e5deeeb08bb73a18a9f8e7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links.php","hash":"66acbb3d30d54cb4301d7f7da721a729"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links.php","hash":"68c9474bae7174dbe12818f5328c6fc4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links.php","hash":"3d92285eb5d857f41606aad5a9795296"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links.php","hash":"7984aaffaa396c4a0b7fc4bdc13b8f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links.php","hash":"d7ba0308628df3dbed6954b9da88b069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links.php","hash":"c6310a7374e9c0d323c47abb07b68125"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links.php","hash":"a9d3c4a845cbe405ee896a4f951b41a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links.php","hash":"0a131d8b083f3c8e65832d41a1d3266d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links.php","hash":"afbfee3ad273cb170503b78ddf7309e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links.php","hash":"b1c9e782f5ee0d74931f34a6b215e232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links.php","hash":"7d7c04f43e05569ba3b9dc88de8278f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links.php","hash":"8251c1d99482f92222581ea423b642a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links.php","hash":"1c5b8b58f47a0973b66083c0188a783e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links.php","hash":"b943c0006ae46ff539a81ffceec4b3e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links.php","hash":"00958006287f2884bc411d62933d2880"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links.php","hash":"952034942f6e78d50a58c0d754a7d616"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links.php","hash":"d7575d96407641cc0166a4ea7d2bfe4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links.php","hash":"429fe9a536eab76174f762b2405a33ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links.php","hash":"acf19d9e8880c0d78dbd7ec047ce8423"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links.php","hash":"0d3d9826b0ae03b5a786217c3679a5c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietEDE9794C\/Tiet5FFD987D\/Tiet7CF57460\/TietD159142E.php","hash":"fe0ee03fcf58c98f5eaa662ccad5b767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Commits.php","hash":"a411d0be4ad167ea5c52ed8513c4694e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Html.php","hash":"8a310586076b1beaf1c960021399d14a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Issue.php","hash":"4e788d90626e744b9a9a82213214aae7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/ReviewComment.php","hash":"25659e4aa118c4f8e17ff5f34bb2984c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/ReviewComments.php","hash":"5cbbbc223c5367a903c77ddcf2f742e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Self_.php","hash":"b6c7bce20ce06e2a69c38218c05f3f80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Statuses.php","hash":"eafc4afd70a0ec8f7df14bdd4619c818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Comments.php","hash":"bd9641a6693f5b1faae09e868324a504"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Commits.php","hash":"d83653b509b0ee3e466cc4560b0d251c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Html.php","hash":"a4dd8fa0a3398f4a02ba0463b3d53830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Issue.php","hash":"4ad150baaf1705608a92c4a95e843c95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/ReviewComment.php","hash":"77dd24b6190d05b1cee38a63e421070e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/ReviewComments.php","hash":"dbe54a1a67613574e48d98c64ee17cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Self_.php","hash":"f86d65e64402d49c3d3891114c42c9c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Statuses.php","hash":"071c65399fb21174de30e741efb10bb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Comments.php","hash":"4e125806592a9c49646ce9757a33d46a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Commits.php","hash":"b132a7f02fc75701df182c4e1ea033fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Html.php","hash":"e02ad8e0efe070cd1091ebac06e09e00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Issue.php","hash":"34292af7bb6e3b43a98c3efceb1cf683"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/ReviewComment.php","hash":"bc197786690c8de9c331c8f072c7efb5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/ReviewComments.php","hash":"6f97a2753e3b5c496ed3f9a28b22d5ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Self_.php","hash":"2118816a4053ae0cb590a9497d60d968"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Statuses.php","hash":"78555e4f8e9259cb118e7b0aac98d256"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Comments.php","hash":"bc5ec5918536f385795de6fdc8afab05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Commits.php","hash":"4c4925ffeed5b0d0786d096a0288043d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Html.php","hash":"50ddcb4555e821d6ea6cf79787a6cce2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Issue.php","hash":"fb7b2707ff9f0617ac82ad6027b4e052"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/ReviewComment.php","hash":"b9c4b366b6a4f0a24c53b652a1ebcc06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/ReviewComments.php","hash":"16a314d05424b5c2a636e21d4f0b355d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Self_.php","hash":"fad95f082df401ef2f339ed542c86e5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Statuses.php","hash":"feabf6694237136646de25a6b7f4e795"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Comments.php","hash":"907496b7a3f29146d72d24ef0fe9df2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Commits.php","hash":"a2bc5e6a273ba747a506e787ccb953a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Html.php","hash":"8df0b37635de196e183d7a2b7066a64d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Issue.php","hash":"a15a146ef8f52efe7ed66c8a8ce50368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/ReviewComment.php","hash":"6422236c652f401336591508def733ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/ReviewComments.php","hash":"a2459772d683c693748df5fbe5fdb5f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Self_.php","hash":"3eeb4328702540b85b1bfadb51da2d68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Statuses.php","hash":"e3c0d75ad46bf61899af62cd7430f769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Comments.php","hash":"90144f1f455d2e9fb9705505bb0e1a56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Commits.php","hash":"4cf486c9e0e767eef9a6cfe8c24d0876"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Html.php","hash":"132fb802724ef555c4bd543b6861c3e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Issue.php","hash":"5fb10b75e739e714af941e8077a81e88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/ReviewComment.php","hash":"96e80993a9a76172a8c5dfae36cc2314"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/ReviewComments.php","hash":"707eef65e2513fd44d2d810bc4638cf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Self_.php","hash":"7506735dafbd98785eae08ed04f2afdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Statuses.php","hash":"3a075763fbdb04c1e2f2ee5cda4d2e56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Comments.php","hash":"6d586b587e6566263d26874caa54286d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Commits.php","hash":"0a71bf4e12848663ab65c7757ad112e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Html.php","hash":"457a0be08a61e1c369fce75ba371ac8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Issue.php","hash":"ce3f0cd811a3cc0e9c195d2df7ffd546"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/ReviewComment.php","hash":"1b542566bf9154db581e17597e072a98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/ReviewComments.php","hash":"1e18a86b5a0a70d9ac5606063cfbde39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Self_.php","hash":"bd48c054782f5fbbbca0579ee49dfc9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Statuses.php","hash":"e9de607d911cbf6f4a03d85489b5d19a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Comments.php","hash":"7f038a056db13826ac1108edf12d934a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Commits.php","hash":"9566171597870d6878b17573f26e4a0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Html.php","hash":"6c2dec73db9f6925560cae74129b73be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Issue.php","hash":"d668ba0b01d6275916cd8231687c49a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/ReviewComment.php","hash":"85874b93f2426527d6c617fc3ec0cbd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/ReviewComments.php","hash":"1ee9e00de50941a9cb9ebe46e8098c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Self_.php","hash":"a6953b626002e9c93971bc179ebf372b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Statuses.php","hash":"a55cd1ff8631b608b26b845b1855d1b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Comments.php","hash":"0935dec1c4ebae1b35d29a0cec06250c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Commits.php","hash":"47d2c0584e2b8a0e339aa43c22181e4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Html.php","hash":"d78da2f7a4aea3d3985f77a2a25c2909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Issue.php","hash":"26f2d7752d7bd5d558f46d254b2cb3ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/ReviewComment.php","hash":"d565349ccfd2020c1c15eb3bc42ae838"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/ReviewComments.php","hash":"ede02cac1edc70d0bebc98a26cb14afe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Self_.php","hash":"14c298b8c6811d66285c6ded528d6dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Statuses.php","hash":"a18004937401c96b1138d276c9cc70c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links\/Html.php","hash":"9721cfbd3f9e25cab23e290e03348f5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links\/PullRequest.php","hash":"d9f4afcb7ea552525f538c2fbfc1e43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links\/Self_.php","hash":"40fd70b6d4bde3fbc54feeff0dccce07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Comments.php","hash":"24f923ffb36c2d5b55a39f12f898c975"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Commits.php","hash":"59fb080c20aac0d180edc259647d44e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Html.php","hash":"916fccb700e8ae13190089320638597d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Issue.php","hash":"287fc2963c81ceaa5517e7719973ec07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/ReviewComment.php","hash":"a5452b19fdcf72495b6dbb51644dfb7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/ReviewComments.php","hash":"201938ab955bded82acf904b3f83571c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Self_.php","hash":"4488549510612c47c23bafcbefc42259"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Statuses.php","hash":"b21c41db64df694cdebddd0962c712ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links\/Html.php","hash":"a4982edb8bf3c0bd4ae005a2e788df03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links\/PullRequest.php","hash":"ada5a6a18d6426e9bd99be26e415d637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links\/Self_.php","hash":"ade91281f4e991c2e21bcb6366745439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Comments.php","hash":"e614d3b12f956029753775beba1d787b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Commits.php","hash":"3c476630d70b3c047ff2bedea01fe1f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Html.php","hash":"a59e0d098bd6bd345a0311bfa8adfca7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Issue.php","hash":"761eb2884300523066bd5c3bbb93b431"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/ReviewComment.php","hash":"2ba5c056c0db3ae049d037e541c0567e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/ReviewComments.php","hash":"ddc2b792dded6ee7f088b2340164bd70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Self_.php","hash":"9c58010c7988b3928f1264b4b7d72e89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Statuses.php","hash":"5957ac3202e699ab5c78cb7f64ce965d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links\/Html.php","hash":"f55409b22ca959c4cd36f70ce5fd3a62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links\/PullRequest.php","hash":"efa559b7a8222cff9f2f84d21fedcda9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links\/Self_.php","hash":"0375260b5d42dc019d4dca0f9900e802"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Comments.php","hash":"3b094c3f491b314d37b9c3a7c856187f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Commits.php","hash":"9b42276b1b317647daa0ea4d7958f1d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Html.php","hash":"cbf9847b8e833537fbef5db1acf6faa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Issue.php","hash":"df9c2e6beb334a7ac75bf7d0b07e8954"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/ReviewComment.php","hash":"0dd94339921356eaaaf0d2993deb4b8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/ReviewComments.php","hash":"58c94bf0221a481f11fd3bbedbae6cbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Self_.php","hash":"7c6594da2661e643a921ec54393da250"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Statuses.php","hash":"d721cc946a58f3005ff5e178bb09fddc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Comments.php","hash":"02ca390e0abdbb1821cb1437d96bc64e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Commits.php","hash":"49421db77d8483e5a511c9e231360804"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Html.php","hash":"1722ecb3ffa5fb8d4b4706523bf0e133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Issue.php","hash":"cb96f1d4dfff7fe6c1320042cac12932"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/ReviewComment.php","hash":"7aa392876cdc0978159ac5b27d8955f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/ReviewComments.php","hash":"76de112eee1a34f5342649ed1dc7e103"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Self_.php","hash":"374f5ef51265484c2bc7497ba0ffa135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Statuses.php","hash":"826e875fd800e6d99cdd7735174dbd75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/Links\/Html.php","hash":"dc702443ea6c64dc34ea681870221066"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/Links\/PullRequest.php","hash":"a9374a71b182cd8332e386be3adb7c78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Comments.php","hash":"5ba5d49d49653b6533fd9302749f019c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Commits.php","hash":"013147a063a28063e03657bc98d98454"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Html.php","hash":"d3349d1d06feb052861dd11eda9ff46d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Issue.php","hash":"536e06fad2fa8081df75e272d622fe04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/ReviewComment.php","hash":"15e6d64e3244687df048328ff91022f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/ReviewComments.php","hash":"20d55d36c061d7cfc16780d4de2a530f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Self_.php","hash":"bc4f0471d829e8550fe3daf5163bb2cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Statuses.php","hash":"14d64fcd0f9aae05ef4605bce32c89dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/Links\/Html.php","hash":"1c8ea2caff85749d4e3298450c77bcbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/Links\/PullRequest.php","hash":"f455b532cc37766d3daca5acf54797c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Comments.php","hash":"fb604f46cdebccc27e5cf4a8c7b2e1d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Commits.php","hash":"906f24a72227b02d428d0d6075e44ade"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Html.php","hash":"50eca891ac3132d7b83d160aed592521"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Issue.php","hash":"d682e9e91fb9f7040b31891d6ccbf401"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/ReviewComment.php","hash":"8315db97f5701d01daec42a8fccfd9c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/ReviewComments.php","hash":"2292dba2d09eb7ae9c4cd91ad511b25b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Self_.php","hash":"3dfeaac5be9dbd31c0736c8890f216c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Statuses.php","hash":"5746eee3fb5cc05b3ba92a86a3cde659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/Links\/Html.php","hash":"7bb5e86160971afbb3ea355577b5f6e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/Links\/PullRequest.php","hash":"76b7de76f4cfb84af33d21fe524ed4a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Comments.php","hash":"878fc21932d3ddc2c2cffa4e0f7da029"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Commits.php","hash":"f84d014eaf1e40783e3ecfef95fa6375"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Html.php","hash":"35f186f1137ac9b66c7b9e6ecaeb517b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Issue.php","hash":"1bf9061a728c778b509885fec709855f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/ReviewComment.php","hash":"b6c1ed9084fa00648ab9511078f586de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/ReviewComments.php","hash":"c87ed3a518af3fe2561c7abfc296727e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Self_.php","hash":"4183362a139363b9de33bcfea3283447"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Statuses.php","hash":"476edbd0092c9ad10435c6a5c870d518"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links\/Html.php","hash":"e77879155dcfd641fa525c02bb383c87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links\/PullRequest.php","hash":"4fc302bfcc8ae97a0c1bcffc7276cfd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links\/Self_.php","hash":"f08d02e2d0a6fc37310b7fb928979346"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Comments.php","hash":"26374ee476fa89e8b8c2092c73b99c77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Commits.php","hash":"3287a702899250fa8025f0567aaeca87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Html.php","hash":"95bbb649261493a5a411ddf84a4489f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Issue.php","hash":"d58984ec4e39d0e872305f2644d96f0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/ReviewComment.php","hash":"ab09180f302f0e61a4e1684401e40be6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/ReviewComments.php","hash":"97d20a237e45f9ab0fa1e90feeb2db64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Self_.php","hash":"061d7f7a20208cb19b354e3a5c620fb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Statuses.php","hash":"b5e1973cd1a62cec55676166e6b88503"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links\/Html.php","hash":"4d9135e01f4c594ad09e3935ee5c2434"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links\/PullRequest.php","hash":"8a31e433eaa3477f8956282d5731b20c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links\/Self_.php","hash":"dc7a0264408c37bfdbe72076ef0f0b8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Comments.php","hash":"660069fdb48163e2bf2109690f3d3a1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Commits.php","hash":"7efdb20a125aff963eba3a2c28e57bb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Html.php","hash":"19d16a51075b7cf2af0982156180fc9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Issue.php","hash":"5874982a796a73764d533b1cafcd242a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/ReviewComment.php","hash":"670f8a1b362234582c6ab14ecf4cb377"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/ReviewComments.php","hash":"1b77652cd6589289ca0f5f605b220c40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Self_.php","hash":"13308878ad5d270395e7d979a9b51439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Statuses.php","hash":"3856edb2518b569e0ee03c3c748118c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Comments.php","hash":"a18f4caaf02e57bc02e95651a7e03f82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Commits.php","hash":"2b40ae545eb6757c6eeb18e24f93d3cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Html.php","hash":"d9da44bd3ca25c0d098302768a759c3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Issue.php","hash":"07586df5ebf50c90c8c3c87400bc8065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/ReviewComment.php","hash":"42e143cdd0f2eb01d1f60b7d019df198"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/ReviewComments.php","hash":"306a69f72c1fd3f48529476c7ec89c28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Self_.php","hash":"b27e6c496b4d00e59bbef4d9d8c3c482"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Statuses.php","hash":"9eaeccbbfc3642064040d13c6491c5b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Comments.php","hash":"c4601b28f43306ad0212c3e1d66c0814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Commits.php","hash":"3cdbd727c6c408f41864936adbef0308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Html.php","hash":"552a382c2745bb4c8e8922c53fb94515"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Issue.php","hash":"f6694b342773570eacd8fc35f83c54ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/ReviewComment.php","hash":"5f1636d0bb233dcac429654cb913d6c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/ReviewComments.php","hash":"76d77325f54c4c9f456dd3edc7c83ffa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Self_.php","hash":"efbf251003cfb05afc2f7b4d15eb23b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Statuses.php","hash":"7fe868396547f9af7749dbdbd9dfaa5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Comments.php","hash":"fecd4a55167cdffacce3144904bc5c9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Commits.php","hash":"eb54d68da33d4a3df52430607c292541"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Html.php","hash":"2467f5d504e1310db4c2575a455c2c68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Issue.php","hash":"08470992c610f1deaf5bf83806b9a699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/ReviewComment.php","hash":"9842427d8c4371c7c4d398b70071a436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/ReviewComments.php","hash":"4fb98489195cf60a6fbbc7ddbbe5fc11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Self_.php","hash":"f82121f66eba4f28cfe0ae33f3af336c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Statuses.php","hash":"24ae3959fa13dd8d455a5aca96d4957c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet454E9788\/Tiet6D6E977B\/Tiet013CDAB3\/TietC3D76EBB.php","hash":"9f5e5caa9a42f6a57fe90c8c139c74a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/AutoMerge.php","hash":"94625626657df018bab02cf25f3906dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/AutoMerge.php","hash":"f3c0a82d11f0a7cba4df565fe71b4b4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/AutoMerge.php","hash":"cb46094b7db614c7b5699304c1f95443"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/AutoMerge.php","hash":"be5e124dad548f1aa94572414b6118d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/AutoMerge.php","hash":"98b32305c5596f53c60417eaf86cf650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/AutoMerge.php","hash":"3faa32cbcdb4be920524c1d8bb49585d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/AutoMerge.php","hash":"0d5104d5e2096dbe78dbea94025c94f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/AutoMerge.php","hash":"f75a121b7fda6a18837bd06ed193c8ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/AutoMerge.php","hash":"8fc6137991108b704073f03a26eebadd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/AutoMerge.php","hash":"2f25251baf8366a3382cecd615b1e475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/AutoMerge.php","hash":"0fc8af1a173e7552e7f4e50a492894dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/AutoMerge.php","hash":"00892a645068678d04f972d864d413d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/AutoMerge.php","hash":"04258437edbfaa074cddc7a4f71970a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/AutoMerge.php","hash":"add41a5ca71d5270d4402057f990203d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/AutoMerge.php","hash":"412e4d4020fb8330616da2f8ab6b3269"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/AutoMerge.php","hash":"fba2cfa1b21220936886fe2a35377725"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/AutoMerge.php","hash":"916f00980d30943e2f6688c91d3344cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/AutoMerge.php","hash":"87c6bbeec7c35d0f3a025a5995fe5de4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCF3C99E2\/Tiet7F849F7A\/TietA998F925\/Tiet7CBA9D3B.php","hash":"284234d9ae6530ff4d965a6e8432d337"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head.php","hash":"61fe08fc89408761921329f5caa16bd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base.php","hash":"7a5355219f818d29659fa652f8afbb81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head.php","hash":"068bd7a1c81907cceb8dcdc724156bef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base.php","hash":"a398f3f16212ecf32c48ba628aefb3d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head.php","hash":"47f17de7bc19db8cafb11624d0cc6f1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head.php","hash":"ffeeda4a44b45c0ab391ff45378b804b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base.php","hash":"ce961123b83f94c23dbb00e79e843b59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base.php","hash":"b73de9b12186c820d2c723e723df028d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base.php","hash":"f15efac1f0ae08b59d42e0f0478d931b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base.php","hash":"d107443be4264e756afe789a31dad7e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base.php","hash":"52aa5d7bccd8d70482cec51f6b7fe43d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base.php","hash":"96b3db1257d3425f05028dd7878cf3e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base.php","hash":"fdb4433cf852855fdf5123de74e2f366"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base.php","hash":"347fef43601e7c13ccd8806cf2338dc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base.php","hash":"1e9ddc0380a610a98e51943a67279d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base.php","hash":"891ec928d30faaa7bc9c8663863e30bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD0F4187F\/Tiet80279EC8\/Tiet0EDB1C19\/Tiet55CCD6EA.php","hash":"32cdc402407c47a4a3e7ab334289608d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo.php","hash":"9079f46cae31b1caa2160e289292f2d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo.php","hash":"fee5fb6d08586d701f36cc5c27be1792"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo.php","hash":"e7fe4acb2ba8842bab4e966c36e422e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo.php","hash":"99949c32c057f5674d3b2d23886c03df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo.php","hash":"9c700d64211a24bbf55323a1dd1847cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo.php","hash":"8f7ed4134774c71e6ba411235d1baf4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo.php","hash":"fe5054454a08f3348a2b86ecd11da962"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo.php","hash":"ca8e15e219b96666141a70fc984a0fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo.php","hash":"941d4cdb72522733ea95a58597f8357a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo.php","hash":"8022793fc9c1a994d1eaa720a9bc9985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo.php","hash":"54ade1d5936243c18446cc6d90e473de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo.php","hash":"dd45cd8fd32f343318612a7f92808bb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo.php","hash":"6b6138f389a87b42c6625ebabff8eeef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo.php","hash":"3209a2f7cd4e0b31b358fb9be9c7e19e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo.php","hash":"b3df885a776661d279d45e42e9923dd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo.php","hash":"b2664173c68b992d6832b6795a0b7308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo.php","hash":"c6dbafe88631f3d799f36970a6217df4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2A1C09F0\/Tiet677D78E0\/Tiet82277866\/TietC9E2E69D.php","hash":"c75f37663ff281754188944e665688b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head.php","hash":"f37eede93eec7c371ea5bfdfeb48eb26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head.php","hash":"0c01ded46148af08ffbf094e8f79caef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head.php","hash":"d6405f018c5fd7b111d137dc4b6c52be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head.php","hash":"716f840883c5f89c705730069c7cca6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDA0148FC\/Tiet07C85FF7\/Tiet950A70E3\/TietEDDA17E3.php","hash":"9ac174305e49f56a6517153c91393867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo.php","hash":"609f9401462c14c7594b4d8a0d13b6a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo.php","hash":"7a2fa047bd00008b313d575442e4d2aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo.php","hash":"db16366da319d2ead335cf0f9c2c9944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo.php","hash":"9ec61ef2c517b5b0a5d2f55d05e70aaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo.php","hash":"4c24ac6e760eac263adfb9887d781499"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo.php","hash":"5a29af83aa7c66295c65e4002d4629ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo.php","hash":"6acf1c1dc007396f456d8ea721f0c07a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo.php","hash":"f072c81ff8676271a06ca235d0a7bda7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet51D306B5\/Tiet4F835975\/TietBE2CDDF8\/Tiet6848B990.php","hash":"862b406e84cdf55cd8f9f1be9c5c9a7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedReviewers\/One.php","hash":"ca3e91bb1d0bacf1eb80a6c7c60d14e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedReviewers\/One.php","hash":"33071cb814d4979875499d8ee3a2338c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedReviewers\/One.php","hash":"276e6476f94fc1fd5c0ed359d2cad62b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedReviewers\/One.php","hash":"a8cd3ba3514d43f1b31f3516c91b5dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedReviewers\/One.php","hash":"fa8e902f062e926aaf0ef833c193909d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedReviewers\/One.php","hash":"49b837a668ebfc048fa21244f1b51f3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedReviewers\/One.php","hash":"007c21e2f8693abf8f9ad51dacf9aa67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedReviewers\/One.php","hash":"5c58f776ce351044f2d407f1a89f3bcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedReviewers\/One.php","hash":"cc8c69e236b32f4bece1d1632b101a50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedReviewers\/One.php","hash":"36b523f62c85fdb73fe5d385c6bb68e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedReviewers\/One.php","hash":"65506d97ae9cd09e952d92f4cccffe51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedReviewers\/One.php","hash":"a03b3d9912a61e5ab864cda0a5fef669"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0C241E57\/TietA93A50EE\/Tiet4F8D28A0\/Tiet8FC1B4B8.php","hash":"08a97e1f4a58d4fc75590d5308d4c617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"ce72c45a690f5f3827d1ad67984d29fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"79317931cb5e41a663273e7a8f14ad79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"3b02e1bebd06297bc6e5191bdf694246"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"5fbbfa7c5ebd984ac2f6302745b537b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"ac1fd66dfae1497ae7a936e189c245f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"5ff4af05bb7f3221d2e811659fd488ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"7afb711f2412dd246d15ce9d783f5a95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"29338339dc987383e727d00c8b337816"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedTeams\/Parent_.php","hash":"e42d9385d08daad529f0585076169a03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"72882db60bf023b1885b420dcca0fe8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedTeams\/Parent_.php","hash":"9c9b6863345b4dd39c24612283b8dab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"d2d491efcb6f9ef1d0b355277a83c4a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"f6c2ad1ca15b83479de25967a7428178"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"52262f41a71733e416867fdcb1aebe9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedTeams\/Parent_.php","hash":"dd61f0475d13391887daea29f132130c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"bb5078aa819c3819004feeaa2f51f157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"1710a2307d9acc2ce980c95d3eb251c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"83967477332916baf4770413c6fafcf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedTeams\/Parent_.php","hash":"5663bf8d6c3bbba8b28a6d8eb10bd9bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"47c5cb8045d8f5f40841c71b48663068"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedTeams\/Parent_.php","hash":"983f2e84d0fe0519ecd2c4a7cbd09a0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"62416cfe79cf3cb58d938fe38eb52790"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedTeams\/Parent_.php","hash":"dfbf6f5338443c02d0a1d989d8865579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"b88b915284fe28e8b37e44fb743cc876"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedTeams\/Parent_.php","hash":"ab481678c088614eb272645e639c5dd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"510adb565e6042b72b031b6056dd0185"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedTeams\/Parent_.php","hash":"e03d353211044224af8dc5a49da7aad5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"403d427b6b2834a420380f4184ec06bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedTeams\/Parent_.php","hash":"4e350f22d0be6563575e40be27f566f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"f8b085bd71cccd26754121017634400b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedTeams\/Parent_.php","hash":"fd76e7ade7b3682323602f08dc28ee21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"4332442b9b2ef893bee393bef4588bf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedTeams\/Parent_.php","hash":"23f187d932677495554db2d1e54287f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"48df4edc7bac520c105a25d81f61159e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedTeams\/Parent_.php","hash":"edd3c5d378752dfc69edf1e1e837afd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"8031af678f4596b6ccfcf4904dbbbf37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"eb1289b26702a3d40d0e15d742c73928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"50529014d2dcf76f193a0ab9a6ce933c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"8953b104131822bcb07adbf5bf527c93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"e29a786bfcbd80db6d48e8fa1480e281"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedTeams\/Parent_.php","hash":"b8882eb8a362df817490bb8e8846fde8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1C1A84A6\/Tiet41F746F2\/TietC07C2DEB\/Tiet51D9106A.php","hash":"aed64ad7139a2c0f3b7f025813a2b427"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedTeams.php","hash":"215b13421314301df490bb82fc538394"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedTeams.php","hash":"3f95847a7913caf9f36f7e77114f1f53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedReviewers\/One.php","hash":"5cfd0fce04bc69fb59ec40f867f4f979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedTeams.php","hash":"36d68163133fb0c77479833d80c45d38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedReviewers\/One.php","hash":"eda50fd667813a3c15e961196c63cd00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedTeams.php","hash":"180b84469008a5c56a22f09560eb934d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedReviewers\/One.php","hash":"0e1b954bb93f9fd9c2f5b67cc2300a04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedTeams.php","hash":"97b77a84e0d6a17a0746ac3f31d43605"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedTeams.php","hash":"1e200b58bb321b2144824ee9e1ba7502"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedTeams.php","hash":"9ac179935dd584e77104d5623beab865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedReviewers\/One.php","hash":"f7b9a81d71b82b0a9d76ef4a39371d63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedTeams.php","hash":"ab891a79c4dea95bd4d37d9f6a77d82c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedTeams.php","hash":"6b511cb1baa6789a18112fb130884da7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedReviewers\/One.php","hash":"1f8937c6d29fc6731864df4da865c1c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedTeams.php","hash":"ef4bed19a948cb109d90ff7e27fc89ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedReviewers\/One.php","hash":"cfcc0af86da21e5ed8de7831fc6fa18a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedTeams.php","hash":"ab3373ea4a7442ec2e5688207bf06e63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedTeams.php","hash":"f41df491fa4cddc56a794f068f451f15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedTeams.php","hash":"f4eb520016f3cb2240e8917d93992c0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedTeams.php","hash":"e4ef45df4152774fee0cb1b5ca30092f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedTeams.php","hash":"3859250a6283bb7e96385b6fb8f3837d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedReviewers\/One.php","hash":"bac2ed4a2f38a3b973c234764169ab6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedTeams.php","hash":"d8e37e7a21dea9aa3831e27443557d8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedTeams.php","hash":"2eed9cf84fb99d301349f1f6385d9143"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedTeams.php","hash":"67c7c04a9bcc8af0e7f073481d15bc78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedTeams.php","hash":"66b2ee60b5ece1f4b660141ebb2932cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedReviewers\/One.php","hash":"d653dd993326737042221734ae4672ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedTeams.php","hash":"87b0f90ff7c47bd71b2076ad72a1a97a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet02FB9E1D\/Tiet04B27D04\/Tiet1DA9CFB5\/Tiet0FEE60B9.php","hash":"bde42b1930159ebca8dcd30df041196e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest.php","hash":"71604be94ae1bdc635489462f488afef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC791A23C\/Tiet9A6EC3C9\/TietA258C668\/TietA94C831F.php","hash":"449d2977d2cb1fa248558513a6d9996e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head.php","hash":"9373c9e2faef49cc5120e7eaa4046baa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base.php","hash":"9c34114fb7fe77ecbcf4b3b24a06b6fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head.php","hash":"7ebcbe25544a527fd7a77f4b0a6a1f63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet78A1ED87\/Tiet350943AE\/TietDA8047D8\/Tiet006E988E.php","hash":"54e6e3f0f2385fdc6795b06dc86939a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo.php","hash":"75c7c1d9befc6d36ab01a3a9815f575e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo.php","hash":"88db49d5cc992c8f4b7c2810f09fbdac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo.php","hash":"33e0f870c8248528442443db31c903c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet63554B17\/Tiet9FC888D0\/Tiet0D411437\/TietBA9BB280.php","hash":"ffebdbd53a29b772e4593d67ccd3f33e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links.php","hash":"7faef1f538015075ac73bd09d2adb1d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links.php","hash":"019aa39d29d175594698b25ea4dd57cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links.php","hash":"51774deb440c832a2e1048f7e178495b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links.php","hash":"afd1fd269fa72a975cb5be87ff444d60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment.php","hash":"a3205c795622aa8368e2082fd6f8901b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments.php","hash":"00d8bf2e3a3aa5c8cdef30b39bc76617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet51EE4240\/TietBA74CBA9\/Tiet8C4D28D8\/Tiet8FC02F59.php","hash":"d5af38916715b13fc71b8a91ceb71825"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head.php","hash":"856a9e766296d948c5c06abac6df6145"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head.php","hash":"57f16f468796c0bf7e219ef521c3aa88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head.php","hash":"f53082e06879a8e47003fc548c8c356c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3725E255\/Tiet9D780678\/Tiet2692985E\/TietE129B0E5.php","hash":"0f832109c87771b4fa2451d6dae49127"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/Links.php","hash":"449f8623224372a7b9b0acb7e46f3721"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/Links.php","hash":"eccb9d74457eb2b4f57c350515b9cd6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet898C17C7\/Tiet092C4CE4\/TietA187A93F\/TietDB7AA793.php","hash":"dfddbec087faae6033a466d750fe950d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review.php","hash":"90be51539cb75dfd1e85065c2ed306bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4E185393\/TietBDA2E772\/Tiet8E84BE53\/Tiet71E72B6A.php","hash":"cca9d5c88dd0bc1273a04b5c08cc25db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base.php","hash":"ce363bd6a5755af904babe12cbd090b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head.php","hash":"17b3801c6a656ba952ed80a81d35a711"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet86CD80DF\/Tiet7447BE97\/TietF36F9C9D\/Tiet51ABC919.php","hash":"3de9a8d04e5acd5434a269ab67158dd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/AutoMerge.php","hash":"cd715b65308609d118fdd8637b0a84c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet34BD5242\/Tiet2F7181A6\/Tiet56F048A6\/Tiet9E26E9C8.php","hash":"d0edf5d82cc6d4ae49e2ea1a46243c7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Author.php","hash":"6193c7cdc9001e050094ec26727d3f1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/Owner.php","hash":"44de70c3ff1fe8566d1e00d4b8560027"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Author.php","hash":"ea2daf8dcecbedf71f0253e2b068ab15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Release\/Author.php","hash":"d0da929a4cc918a50926b08f9dfa2ba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Body.php","hash":"051b40c9d79519da135736b6da0be062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Author.php","hash":"3fa514229fdf5271c18427a309130acb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Bugs.php","hash":"2bc9691b78268c348245069573e6cedd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Dist.php","hash":"abd0f1c084710d5678408d2b0cd66dde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Repository.php","hash":"e09ab3d8a3cb09b1054e1775b158461a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Directories.php","hash":"2c4ffce2920d70ddce585d8ac5d41490"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Id.php","hash":"75b445076c148f228428d2262ed09c9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Value.php","hash":"7002de2adf316287b8de9cccf1f9aa5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release.php","hash":"d89cd11909d8c1642d3c57d25cfea087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release.php","hash":"ca42141ff4ec5cba185c0ebe480b144d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release.php","hash":"6861bd651d3cc13b110d91cf154b432b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release.php","hash":"a3cc652cabe9e48d01af928e95d105b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release.php","hash":"a0484406877fb3857d7a17b590bf3ec3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release.php","hash":"db0aa1cd71eb11a57b0c0802f77fc347"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet12E12BC7\/TietBAD18578\/Tiet253E2049\/Tiet6F2B22B2.php","hash":"c413913b052069da8a5122201e16d065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Assets.php","hash":"9b02dd5f5cceb753f95c2943df607150"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Assets.php","hash":"6a0aa9d5d25ada3ffbc431cff1cb9d4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Assets.php","hash":"95c3018f4430c8462ac07505bc46eae3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Assets.php","hash":"dccbb4738a2ac53be410b537d86ff575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Assets.php","hash":"2101796d842d395304bbcfd7414d0fb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Assets.php","hash":"c5974d2667775009f7a0acfc38bbafcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet76B5D9AD\/Tiet3F1D0B82\/Tiet9290F302\/Tiet5AB2627C.php","hash":"e11ab1ffe4b719f3badf77a047771b15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowDispatch\/Inputs.php","hash":"1fc98798eb5ee61056301a4261c25a5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1CF91DE0\/Tiet4DB5DE15\/Tiet56410125\/Tiet72117C37.php","hash":"641599576b2decdeea1a98af653f7cc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertReopen\/Alert.php","hash":"ac392b89708dd8380d841185fc3f965d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertResolve\/Alert.php","hash":"98e12d6c5c2b4e99c61e30d94b7d488d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietEACBBF43\/TietA336C287\/Tiet547A1212\/Tiet82A471CD.php","hash":"1297224d9453884c30daf0f692030e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory.php","hash":"959b704df99df2e87eacf9ddf1f93510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA304CE1D\/Tiet51CDBA42\/Tiet045AA15C\/Tiet0E7CC885.php","hash":"a31bab90870d69fb519de1b7b6c85466"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Cvss.php","hash":"5a8bb7818cbf8f824d3e2b6646bd94a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Cvss.php","hash":"9774af7e4384979b867ee195b0fb57b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF13B5ABF\/TietCDF31C82\/Tiet2F9DAB19\/Tiet1DB2FC80.php","hash":"ea3561a1e886b4434555811ad006e805"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Cwes.php","hash":"8059a7f72e6cd40ae440849599f09bd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Cwes.php","hash":"0d29daa8c64c054854074e24899ff660"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBCF0AA24\/Tiet9CE55B8F\/Tiet7911DF47\/Tiet9F4CD41A.php","hash":"cca97193a580a35d3851f0e69f33c942"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Identifiers.php","hash":"43f08027df05459c636f31698369009b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Identifiers.php","hash":"5fe35190cc0809f7cfc43e3311e5119e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF0FDE5A1\/Tiet9EE34E3A\/TietA811F484\/TietFC1CAEFD.php","hash":"e4ccc6f668276e2f072ea6d752289881"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/References.php","hash":"8deb4d46f61d4bac73407828978018ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/References.php","hash":"7bdabbf5b2f4d8a04200241a82b23165"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet278FF5F4\/TietCB844597\/Tiet0ACB939F\/TietD15AFC5C.php","hash":"aae2eed3626be5857f240a68db2684c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Vulnerabilities.php","hash":"8eb59ef6d6cca30ecec72dda29992c2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Vulnerabilities.php","hash":"053d8e9d24c5218be4c2bdb5a9de46ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet35D8CB5A\/TietB8167CE2\/TietDE06741D\/Tiet76CD4BDC.php","hash":"14ecd1bb062048f01c7a2052ad0c0a85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Vulnerabilities\/FirstPatchedVersion.php","hash":"5876a08fc568fd0c319c6ff6dbd43f0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Vulnerabilities\/FirstPatchedVersion.php","hash":"684a9b42eda068cb8fb2f062883fc421"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDD5FD85B\/Tiet2CB66CD7\/Tiet1059E1F8\/Tiet79C1FE79.php","hash":"7f303623b9f01cafbb12a79bf0954629"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Vulnerabilities\/Package.php","hash":"4a177bef60bc2d1596e7daf91ca1628e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Vulnerabilities\/Package.php","hash":"963182cf9cf4b32555268e2d623367b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4FED2708\/TietB62E94A2\/Tiet1C4DD3E1\/Tiet767869D4.php","hash":"ad28f95bd9a93b8968455364199a182c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship.php","hash":"dfe820182b2306c335a54e3a52595e3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship.php","hash":"239197be86596d000be6b53cff752505"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship.php","hash":"f989b007f5fd92515760bb6ceb71200e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship.php","hash":"aae5e1d1f683281a6ce08fc3b50a4646"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship.php","hash":"cf5d78b37c9f3eb48376ad08e9a83e81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6F013B0A\/TietBD1E3881\/Tiet6CB4A3DA\/Tiet59904AE0.php","hash":"20f68eb59e628ce6356f58b23cc9c57c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Tier.php","hash":"095c3e6c4c5b6d8b0165e14201f1d442"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Tier.php","hash":"5f086cf5c88213b16c316a38af99014d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Tier.php","hash":"633d685d0803bf9a892055806b0f4525"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Changes\/Tier\/From.php","hash":"d8b38daf1172a670ec98a181c2829258"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Tier.php","hash":"1b96aa4281845ca9e192b282f01e898c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Changes\/Tier\/From.php","hash":"b4d8d6f658ae463fe9b604c7c31a4576"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Tier.php","hash":"19a1cb617315ae8e6adfccc2a7ec2370"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1E222532\/Tiet5480B023\/Tiet8780DE84\/TietD352E3CA.php","hash":"71b67c70fa65efbc427c9af8fbef6fa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Changes.php","hash":"9185e12b9285d656803083dc08eb3658"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF87473C8\/TietC3F6C8B5\/TietA00ABCD4\/Tiet8E143093.php","hash":"ba3fd0893c7724b7c8e1d8931270f4bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Changes\/Tier.php","hash":"7e8b659e24ff52103db41faecb2e6d56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet97BBA23D\/TietACCE0A37\/Tiet771D92AD\/TietB50B3D33.php","hash":"20fcdbbae7b463741d9bf3e98412abe0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Committer.php","hash":"83b227c048647c23c06bac7f9fae6c6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC856E02B\/Tiet3668DEA2\/TietC91A1BA9\/TietFEFE97A6.php","hash":"bb3f81b46333d4154a3504de6a194b38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Team.php","hash":"744b30dcfa67b6a47745eb01e2cfda7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Team.php","hash":"9960b50a3721c2aef7523af960526254"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Team.php","hash":"91153c9433a5acbbe7799d84bc3bff88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Team.php","hash":"cb332d139a2d929cd309f4ffdb5b8ae3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Team.php","hash":"7b0a2ae7120bfdc6e034c5f88d93bf60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA3C33853\/Tiet2B274B8C\/Tiet9CABA449\/TietD2612DC6.php","hash":"4384efe2a9b5569f068be75c8e3aa21f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/Repository.php","hash":"8a0cef41ffe39c339bb09408fcfb3e8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadRepository.php","hash":"df8af12379e9b819b4f8d83afbe0037b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/Repository.php","hash":"bbcfc35b912487809432946b7c8e7d87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadRepository.php","hash":"40e0d34b5b6fca44977b3df0aeb3b0b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/Repository.php","hash":"1dfaf380d1dd611059a53d39339cf833"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet62DE450E\/TietBDB05BA1\/Tiet285A643A\/Tiet4D2CA009.php","hash":"bda8fe9c928579e7e04d321c972013e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests.php","hash":"d8bbcce259406b4d0a70cdc119af1b54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests.php","hash":"26fea810598831d11577b69fa7667e10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3AA725F0\/Tiet5DA89A79\/Tiet8EA4A5E0\/Tiet126B4323.php","hash":"666b135581b25116e16b16c9c8fb2121"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateWebhookConfigForOrg\/Request\/ApplicationJson.php","hash":"d3e62d9ea504c9214b7174ae4bf04d21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9197E244\/TietB82917D2\/TietACD5D9B1\/Tiet79DAB836.php","hash":"4283852fab1c62b88258ca29725cc7f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/DeleteToken\/Request\/ApplicationJson.php","hash":"c43e625c650c0e272d703d2020570763"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9A3BF4C1\/Tiet9B6D9294\/TietEEA46918\/TietD9FBD504.php","hash":"086d89698ea37e5a246407d5d07a51b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/ResetToken\/Request\/ApplicationJson.php","hash":"1f088fd06d92059a47c9161e497170e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7CCDEB8D\/Tiet72C56F20\/Tiet84EF071E\/Tiet7F398831.php","hash":"a1a9f22459efd2a9bb5b4ef20b70de5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"49100533bd9e444bcb4343174eaca5ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"fe378853c3079cc64652a07907f5f0c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet64C370DE\/Tiet030B21C9\/Tiet0FE13F38\/Tiet1E6A295D.php","hash":"84c533be8968ff7b552acb2beb680aca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersInGroupForOrg\/Response\/ApplicationJson\/Ok.php","hash":"8c7fb00ade19b82bcea7453d8a43b731"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersInGroupForOrg\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"79727e56154ed154f2aeb19368921674"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC1ED0A10\/Tiet2CE6A484\/Tiet45FE9908\/TietC65D2293.php","hash":"62f7f97f04f7031db0c6bac70d58418d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelfHostedRunnersInGroupForOrg\/Request\/ApplicationJson.php","hash":"5757fb3f737a05913ab72191820a2645"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet465FFE22\/Tiet83692C35\/TietB7E35CD3\/TietF31B8C6B.php","hash":"36081c1df4593bc385aabfb72aaa5368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"7a14771521e1c77ba3c8894839448412"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"97b2433f352483b14d8ea98a93d07dbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\/Response\/ApplicationJson\/Ok.php","hash":"073f4510e75048d7c9e03d88b54d01dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ad6e370b413da0cbec4df69fb3bf1a68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\/Response\/ApplicationJson\/Ok.php","hash":"27ee4244e5e49590eb9592798c9498ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"8d8f95830d83621a9aa351c10dded007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet26CE37AC\/Tiet45C329CF\/Tiet34ACA72B\/TietD6CFCAE8.php","hash":"3414c5104572273114a3f699f17f39b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrg\/Request\/ApplicationJson.php","hash":"eb53de6f92588686884b518d7d5d7035"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepo\/Request\/ApplicationJson.php","hash":"c5e7e8db10abd0ac84ad06d38199d2ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCD5D02C5\/Tiet4E256C1F\/Tiet61ACEA46\/Tiet3E527414.php","hash":"3b0235a506fdd642d315d830938f825e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrg\/Request\/ApplicationJson.php","hash":"961c39376d47a2d538507cf26548832e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepo\/Request\/ApplicationJson.php","hash":"7d5ac526f01c1a5afe59d47b2803e143"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA6C458CB\/Tiet06A41796\/TietA61C9406\/TietD9040D20.php","hash":"5af5737b81de24a15ae3eda02b3fa8e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/UpdateComment\/Request\/ApplicationJson.php","hash":"44c7edc76e58f69f8eef3ce744f0900a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE1799B92\/Tiet5032A0F8\/Tiet8BB31395\/Tiet34B34FE7.php","hash":"31f621e623414e94a2da4ad2cb865e77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForOrg\/Response\/ApplicationJson\/Ok\/Application\/Json\/One.php","hash":"4eee2923af87a369c1f6cbab775beb8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ConvertMemberToOutsideCollaborator\/Response\/ApplicationJson\/Accepted.php","hash":"51744f4bbeb6e9fa5df06477f37c35ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ConvertMemberToOutsideCollaborator\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"868dc3a74b5a5f7d9036bad41546048d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Created.php","hash":"a47268c420417ce97eeb3fe539ac0366"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Created\/Application\/Json.php","hash":"ed4a032bb7a8541003d02084aaec3be1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveColumn\/Response\/ApplicationJson\/Created.php","hash":"8e22fb3fb5079bc486be980ad982aaec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveColumn\/Response\/ApplicationJson\/Created\/Application\/Json.php","hash":"b3486cf26397f2196f4ae8f2f2717d0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForRepo\/Response\/ApplicationJson\/Ok\/Application\/Json\/One.php","hash":"99ddb1afb36d32f0cca7be6d8599a1ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json\/One.php","hash":"66517a65217271040c6deac1b1f18f1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2809284B\/Tiet6E54D0D3\/Tiet4017715F\/TietFE5636BD.php","hash":"f844b0993ba6518110081918efa7fa8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Markdown\/Render\/Response\/TextHtml\/Ok.php","hash":"c35fb7c4ac6e9d6e9797e1fe50e82146"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Markdown\/RenderRaw\/Request\/TextPlain.php","hash":"febdf731a91cdf68bcf881d695dc6974"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Markdown\/RenderRaw\/Request\/TextXMarkdown.php","hash":"28e7e043038d020a8d4e566673115a7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Markdown\/RenderRaw\/Response\/TextHtml\/Ok.php","hash":"40c693aae1bb8b4c14aea42ce3b871de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Meta\/GetOctocat\/Response\/ApplicationOctocatStream\/Ok.php","hash":"3b5d748e22d4b00a7e182e8ff91c8509"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebHookHeader\/Location.php","hash":"0feb32d91beb53fa3b284ff2001f55a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetAllStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"7c48ac2f07aa768e9d94f736aa8cbfcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/SetStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"ad700a20ed5e76982c19c1f820aa3d06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/AddStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"5f2014fb93e926b7882659825ea2a455"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/RemoveStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"98b50b3f7f095f3756931dc21a2825e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7B1F87F4\/Tiet2CA7F4E6\/TietF27ED1BC\/TietBFCEE301.php","hash":"22203f90e280f947edb36fd21abea05e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/CreateDeployment\/Response\/ApplicationJson\/Accepted.php","hash":"b99b977f948be8d280ad07284874cf92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/CreateDeployment\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"a132f0dc8e8d52b8c2ab4980141ef75a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet5EB50E44\/Tiet2B2EC8CE\/Tiet69829B4F\/Tiet5F2241D9.php","hash":"348dd1c91465e6d74122c82ff50e7960"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListCustomRepoRoles\/Response\/ApplicationJson\/Ok.php","hash":"f26f4ada5f802a318b521473c287c5e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListCustomRepoRoles\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"8c816878ddd46e6178ac9a3ed97c3714"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet197505B3\/Tiet7575AE37\/Tiet39584A4C\/Tiet9EFE0801.php","hash":"f8c0da3613bd631b0dfa7e99dbea640f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"f30a2f7ae696a83793324a1fd0a90557"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2329E85F\/Tiet2404E7BA\/TietF6C81F1C\/Tiet1EE267CF.php","hash":"1e5a93dab1103484c1cd7ddd1b5ffdf8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersForRepo\/Response\/ApplicationJson\/Ok.php","hash":"d0519eee9dbc875c46c3bbf4ea8e6dd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersForRepo\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"dc69a6547868aa4fbdab67512eec5dd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedReposForOrgVariable\/Response\/ApplicationJson\/Ok.php","hash":"d5b858990e6abec238cd98be73928c43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedReposForOrgVariable\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"54cb4e700fc06c76217dd9db2d9f6848"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok.php","hash":"57e5dd22e2ef694d33504981a2788611"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ddef6badea3ab5b6c0b691a28baf1641"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok.php","hash":"5ff80c73613dd1b53da36a544fc5408d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"3a0728689fcaa3e39ddf6cc71cd5240f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"8fd489f08ceb5592f5022829694fd911"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"3118243ca0064ba216c5de0c73814b06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/GetCodespacesForUserInOrg\/Response\/ApplicationJson\/Ok.php","hash":"ef1b07f3631f734998361872de90d482"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/GetCodespacesForUserInOrg\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ff96a72d4b06ef9e81607b8322b2ac23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"4c3f8e84f2c2f418a1a9c257a0b63bcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"31b81f547e880b3a484c9ec1af56c835"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"c25c7d58ad16ae8fbe4ff2dbf5bcf8fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"2ba0230117365d33848b3fd2352f5f5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListInstallationsForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"a332bdad4f610467742d21f4ce1e3836"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListInstallationsForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"9bd504d96bca3450b32d0ac959a2e9ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFA125E0A\/TietE31E9C15\/Tiet5F33BC89\/Tiet9EE2A17F.php","hash":"2e652044e61c5e5948c0c953b3988d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForRepo\/Response\/ApplicationJson\/Ok.php","hash":"c8b7652134095f9f67c03f416930c51d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"a8497b6cdc8e813df7c1b30af37122b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet378515F7\/Tiet728150FE\/Tiet48B2FA76\/Tiet970A57B1.php","hash":"188230c48204cd4133929ca1d9f1daa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsInOrg\/Response\/ApplicationJson\/Forbidden.php","hash":"623ac21952dc355346d3b8e248024b9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsInOrg\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"718990d418e5fb124bf3caea1e2d49f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/Delete\/Response\/ApplicationJson\/Forbidden.php","hash":"e7d6df24ab2c83a6c15a502f5d6e1b62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/Delete\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"32d0f11bfe759adb4cd5c8b226f5d139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/MethodNotAllowed.php","hash":"e7f2e02eec500a1647a4d3710512b823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/MethodNotAllowed\/Application\/Json.php","hash":"6327c3f312891f285d703ee2c912d83b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/Conflict.php","hash":"0f5a6a27fd3b7a50009b626199711dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/Conflict\/Application\/Json.php","hash":"54c3b4ae2d5ca1bb71893a79e0652ac8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsLegacy\/Response\/ApplicationJson\/Forbidden.php","hash":"baa7f10e53247c5ae9f5a0619c023712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsLegacy\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"72ff90f9abd1b975e899be6ed9742001"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB7DD812C\/TietAD4FBD77\/Tiet3CE13157\/TietF79B40E8.php","hash":"dcd2792fddaf051faf2695ef38b720d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateForRepo\/Request\/ApplicationJson.php","hash":"e1ff013b93058286e1c2951208503a1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet45FC12BC\/Tiet3634C3A1\/TietED56D5C4\/TietBB2EA678.php","hash":"30d281a3560ca8584ec79d27866281ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionLegacy\/Request\/ApplicationJson.php","hash":"bf70a7c2d2064b726f6519e3cb34b54a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8FE3C5A2\/Tiet0C02B2B7\/Tiet01F1BFD6\/Tiet6504F76F.php","hash":"0a9c9a8a06eba78a1db72b37914d7b33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionLegacy\/Request\/ApplicationJson.php","hash":"94aae97dfcfc786a2aeeb33c7e86ce2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2DBED615\/Tiet76F45C59\/TietF4188D6A\/Tiet2D5A4ED4.php","hash":"09c89eaaa60a6c45851441a6ae726ea2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionCommentInOrg\/Request\/ApplicationJson.php","hash":"e9fb7256fe870294d2cb1db79c00313d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionCommentLegacy\/Request\/ApplicationJson.php","hash":"b5d51c94cf1451e91cd24040b43adf73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionCommentLegacy\/Request\/ApplicationJson.php","hash":"a5dce6908d303097c6777e343579eba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionCommentLegacy\/Request\/ApplicationJson.php","hash":"285e9328f65b6c1ebd5aae5d4d5ebf97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionLegacy\/Request\/ApplicationJson.php","hash":"6848f70aa611ddf6a362a4434a3f70ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC23F2AF0\/Tiet9E530976\/TietA2E3984A\/Tiet52070677.php","hash":"b13d02e39aa37539deb6cbb919decef4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateMembershipForUserLegacy\/Request\/ApplicationJson.php","hash":"13abe36770489aa6b58427835ffaf7e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF694556E\/Tiet3CC88993\/TietA89F1ED7\/TietAFDF4E13.php","hash":"753757576b21305d3efa6ae7a5933620"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Delete\/Response\/ApplicationJson\/Forbidden.php","hash":"f2ab60bf6c0ea2c6cd840a820e72e7fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Delete\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"7bfd17cd9553f7e258b97961c75b54c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Update\/Response\/ApplicationJson\/Forbidden.php","hash":"0de5a06355284144f10e30d4c8fc8f09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Update\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"5c9150c1f4f6e494ff5748a42390daa6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet84C5BF99\/TietACADC6EC\/Tiet8B2A32F2\/Tiet014E1E35.php","hash":"21e8fcd6ca4f09a8c26e61caaae68a1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"910da72dda1350896aa30311bd4d7570"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/ServiceUnavailable\/Application\/Json.php","hash":"a9ae4d67d1bb6bbde5202af8c48cd7e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8463F37D\/TietA64144EF\/Tiet1BF426F5\/Tiet247A222A.php","hash":"a130ce1a2b264884413bf230781bbe26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/ServiceUnavailable\/Application\/Json\/Errors.php","hash":"a132c206410b1173d2f197c48d507d40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDAD93C96\/Tiet44EA9290\/TietC426850C\/TietE15D7C55.php","hash":"68cc5ee961cd6db4fcc177511b1e0133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateColumn\/Request\/ApplicationJson.php","hash":"296e07c2594d6043274bd5ed1f3b42be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1A91B16F\/TietBF38476A\/Tiet7587BB22\/TietE0507C4B.php","hash":"0bc8342b906bcb119d97fbee4e4e5d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRunArtifacts\/Response\/ApplicationJson\/Ok.php","hash":"1f62255eb6eb622338d26cb8f911e4cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRunArtifacts\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"5adb29c374a013823675e53c32739916"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD2A75913\/Tiet0388E4E1\/TietCC684AA9\/Tiet46754F39.php","hash":"dfb5961bdf2fc9fe63f7fabd2dba45fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReRunWorkflow\/Request\/ApplicationJson.php","hash":"dee7291e9c1f55042ca697672f6b91bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReRunWorkflowFailedJobs\/Request\/ApplicationJson.php","hash":"a2fb952f193248b7b0687967267e0821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet58E2D92A\/Tiet7ABA442F\/TietDB0A439E\/TietB965962E.php","hash":"ec30a766b0afb81834fe94b069767bdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoSecrets\/Response\/ApplicationJson\/Ok.php","hash":"216cbe9251023b2312775cdf6a9524b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoSecrets\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"89b20dd73099019e2483941edc034545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentSecrets\/Response\/ApplicationJson\/Ok.php","hash":"7036567d9730a71a7c873bedd301f14c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentSecrets\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"8265b161aac7957a4e13b70285d0dc4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC248750F\/Tiet7D6F0E43\/TietB5F7A5C5\/TietBF973B47.php","hash":"4efd1cd0225c175262e7ab3f237c5373"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoVariables\/Response\/ApplicationJson\/Ok.php","hash":"5a0f3e09cfd65b4537c1aacfaa788c67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoVariables\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"bc82e4ee09edf7e6e9094bfeae6f5853"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentVariables\/Response\/ApplicationJson\/Ok.php","hash":"1ac523d51e3c3f7b69877811773cce6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentVariables\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"cc6d08eb0b1a922885e29c5aa93caa0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRunsForRepo\/Response\/ApplicationJson\/Ok.php","hash":"429ae63ea9285eab7dc8210e16aa07f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRuns\/Response\/ApplicationJson\/Ok.php","hash":"abb502657a47ee70bd9a5496fd6759d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRuns\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"a45494f7720ed31e89cc959dd1fa3d94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA5A1EAFD\/Tiet438DDB6B\/Tiet7774AFD3\/TietBCE210F0.php","hash":"b9e9cdcd3d9d7f6688de37efb93eb1aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListJobsForWorkflowRun\/Response\/ApplicationJson\/Ok.php","hash":"90cf3a9ad0cdc2fa28f6c97a78786d32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListJobsForWorkflowRun\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"346edb645ab45c142b782697f0ed2557"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFE7865BF\/Tiet5F7F1DFF\/TietE50994AE\/TietB8600E0B.php","hash":"36be6b8205a72039b8200e42ebabaa50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateEnvironmentVariable\/Request\/ApplicationJson.php","hash":"6f4717ed66aeab58d12e19481a819c49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7FF8EB03\/Tiet65994103\/Tiet57F67FE5\/Tiet5CCF02E8.php","hash":"fd09e7c92f2be5cd2beb39d00de0e7d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateEnvironmentVariable\/Request\/ApplicationJson.php","hash":"1ab52a9afc03fe9591cbec308d40832f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA2C954BD\/Tiet83B0A41B\/TietA51276C7\/TietE8583A84.php","hash":"26ac4a751e815bf933efdffc8a6c42f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateStatusCheckProtection\/Request\/ApplicationJson\/Checks.php","hash":"64cc017f81d63036d18dd93f783e1686"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7D758BFE\/TietEBB29982\/Tiet55D896DD\/TietB656904B.php","hash":"907817ef3eccd40fc6a67e41fc72a789"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdatePullRequestReviewProtection\/Request\/ApplicationJson\/DismissalRestrictions.php","hash":"9835f66e53a79e5de10231f886af10e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB77EC278\/TietE010F5A9\/Tiet7DCA9249\/Tiet23FE6CB4.php","hash":"28998a886baac601bf92e46cfa489b43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdatePullRequestReviewProtection\/Request\/ApplicationJson\/BypassPullRequestAllowances.php","hash":"c881ca177279566601516c40558e59ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8F4D3A54\/Tiet370CC577\/Tiet7DC54DEF\/Tiet65BAB167.php","hash":"61156499d878b27c44aa152d4b680e1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddStatusCheckContexts\/Request\/ApplicationJson.php","hash":"8ca101153b83f217255188792976198b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveStatusCheckContexts\/Request\/ApplicationJson.php","hash":"c66bfc6bbb65c7cc53043b8e1706aa69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBC8D00E4\/Tiet2092A7CE\/Tiet794EA03B\/TietA6AE3B1A.php","hash":"a084b4b2afb02e22feabe4acc3052814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddAppAccessRestrictions\/Request\/ApplicationJson.php","hash":"b53e79777120ff6e04cc4e8a3176cbff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveAppAccessRestrictions\/Request\/ApplicationJson.php","hash":"6a0e020d65f394a2c05178fb1d62b61c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2627BD0F\/Tiet79C28288\/TietDDF35698\/TietF49935EA.php","hash":"d88f6631766307d6da823ea8d3339473"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveTeamAccessRestrictions\/Request\/ApplicationJson.php","hash":"60095309500d77757c9bcddcde1c6419"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet666EC903\/TietB174FC55\/TietB7801801\/Tiet2B6C6BE2.php","hash":"067cf242314c48d57a53175bdf769013"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddUserAccessRestrictions\/Request\/ApplicationJson.php","hash":"1c69f7187cf7491b5170f94c43272027"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveUserAccessRestrictions\/Request\/ApplicationJson.php","hash":"804437bbac246bcccad52a115442ec55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6AF2B3AE\/Tiet1426BE24\/Tiet29564A00\/Tiet1F9716F8.php","hash":"46613bbf7d76528519e37a4650aeb8fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Output\/Annotations.php","hash":"5e3de5b740c34dbfc65da496b46994c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB36E5D9F\/TietB48A23C0\/Tiet265B7730\/Tiet98EA5B1E.php","hash":"e2a001942f7ddca0ac3fb706fbe41f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Output\/Images.php","hash":"c89b71d63933d096ff68878ee4f76bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2669D512\/TietB3E1915C\/TietA7A5B92E\/Tiet0B91B77E.php","hash":"51291e97107b743f00c9869599dac2cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Actions.php","hash":"10caaf68cd5320b77b799f75a2c2b4cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListForRef\/Response\/ApplicationJson\/Ok.php","hash":"255ccbd954691ed4b1223f14f2edac51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListForRef\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"135f15dcb07d7a7fe26f360ffa7ec020"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/CodespaceMachinesForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"28b57b81bdc854fbb7a90d215b19183d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/CodespaceMachinesForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"78c54b13b2905743f4f96dd3a77333ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/CreateDeployment\/Request\/ApplicationJson\/Payload.php","hash":"b4ccebc81780b495a2b9b57dd65ba8d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC87B405D\/Tiet9B9DED8B\/Tiet852071AE\/Tiet1AF85D12.php","hash":"e53d73b213fc374878e25704cd9a47b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson\/Labels\/One.php","hash":"1200d9dc3ade0b40c52312878c8fbf9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet026A8A20\/Tiet81954685\/Tiet23AC5D44\/Tiet5390232B.php","hash":"5798ad15697630da4e8fd2982ce87b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/CreateComment\/Request\/ApplicationJson.php","hash":"33c1ceb6e0f13ebbe8180e10354f93e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA5445A08\/TietE16D224F\/Tiet94859EBA\/TietF785C18A.php","hash":"3c18bbd8a22d9d0203ba8ceb3f2ae472"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/UpdateBranch\/Response\/ApplicationJson\/Accepted.php","hash":"dd56508704c7f370509594e35166b269"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/UpdateBranch\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"13eb708ed6ee077a56c32443a9006ead"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/UpdateInformationAboutPagesSite\/Request\/ApplicationJson\/Source.php","hash":"aaa2933b0a4a1265776bd132632eb737"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDC606366\/TietFD954615\/TietE9FF06A4\/Tiet8A3CF917.php","hash":"83f2bd4a1f92016de0cab40bb7831735"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/SetInformationForProvisionedUser\/Request\/ApplicationJson\/Name.php","hash":"fe6d3c451e236555d9157ab3be4a8e53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations\/Value.php","hash":"d1962e5839bb3de6335f3371fb68aa58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFA9375D5\/TietB4DFA8F3\/Tiet91595615\/TietBD0ADDF4.php","hash":"20ff6d7b221ebca88c300b8a53602ba6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Users\/GetByUsername\/Response\/ApplicationJson\/Ok.php","hash":"6a3d88e11f82d81c8c87b567e18209a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GenerateRunnerJitconfigForEnterprise.php","hash":"853fcc36f338eef43efd05855990b4bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GenerateRunnerJitconfigForEnterprise.php","hash":"2c2144caa2a8f25dffec0d250abfe960"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GenerateRunnerJitconfigForEnterpriseTest.php","hash":"e2095b2ae8cf5c4c068022312b9d4b8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GenerateRunnerJitconfigForOrg.php","hash":"644f6e8680d4fba866822f8d3da8c997"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GenerateRunnerJitconfigForOrg.php","hash":"d5cf209158d5bb88623911ac708c4176"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GenerateRunnerJitconfigForOrgTest.php","hash":"2dedbee61d619d234f3c88d6efea1890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GenerateRunnerJitconfigForRepo.php","hash":"8ec7f4da1fdcd07d0631f78c740dfa90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GenerateRunnerJitconfigForRepo.php","hash":"2d49b018913c7ae3b6ff968f4ec24d0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GenerateRunnerJitconfigForRepoTest.php","hash":"1f0dca130a5a18137e6e589c07c5c9e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveCollaboratorTest.php","hash":"64937b4aaf8300acd28da38c79de2223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatisticsActions.php","hash":"c6d9af129648742477fe58e05798c9ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatisticsPackages.php","hash":"4fda43611933bf7d7a5dd573b3887c0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertStateQuery.php","hash":"e6e9b2f0c12716304f5349a09afb1827"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryIdTarget.php","hash":"02b43ce9cada550298094f5733d32948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatisticsPackages\/Ecosystems.php","hash":"9dea4607934bc6cf97fd4e72bf7d4dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ApiOverview\/Domains.php","hash":"641848cf1fba69dff250bb7e08403b0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/DependabotSecurityUpdates.php","hash":"573593ce4e77b7eac9413a2b6d81c3e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryIdTarget\/RepositoryId.php","hash":"0096656ed938c75a571fa41baf22417a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset\/Links\/Html.php","hash":"82738946b94d29b66262f99df08ade38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4C203984\/Tiet86D11BF8\/Tiet9FC2225A\/Tiet026CAEC5.php","hash":"51647fb23ded3bf2ee0293997a7da7de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCCAC04AC\/TietA7AECC3A\/TietDE4D9B35\/TietA98B46C2.php","hash":"f456339aed926b003dbf92fe6a266b10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet571F7F38\/Tiet40C08834\/Tiet4D08974F\/TietFA2A6238.php","hash":"f01180e453aece4c004e89e0a673470d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF690ED31\/TietD3330210\/Tiet500A0F49\/Tiet18AD180E.php","hash":"36f1893f7792a019748f73d4ca699841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/GenerateRunnerJitconfigForOrg\/Request\/ApplicationJson.php","hash":"55d2000cf970c10d6bab818f16dc5629"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/GenerateRunnerJitconfigForRepo\/Request\/ApplicationJson.php","hash":"4ca4d44db628ed0fe3f5761472257683"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/GenerateRunnerJitconfigForEnterprise\/Request\/ApplicationJson.php","hash":"9896a154b2a320971c34f3004e042756"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/GenerateRunnerJitconfigForEnterprise\/Response\/ApplicationJson\/Created.php","hash":"a45a73e5c7ef06cca64c78bcb3874386"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet964E67ED\/Tiet6DFC2B2A\/Tiet2F3A6E96\/TietCC85A1FF.php","hash":"baf3e05bef17a0e33ea66c136fbc2684"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE391F5B5\/Tiet55EDF86B\/Tiet9741ED42\/TietA29AD1E7.php","hash":"f1de531462697632cff549b6e29030ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/CreateOrgRuleset\/Request\/ApplicationJson\/Conditions.php","hash":"3ee83bf1e7b2fb61fef93ceb8e542cb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/UpdateOrgRuleset\/Request\/ApplicationJson\/Conditions.php","hash":"5f1d017fbcf95011bc59d6eb82b19181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFD5D65C1\/Tiet0FBD94A3\/Tiet72E5C7FF\/Tiet2E753155.php","hash":"6d0c197e9a8a1c9103952586f4272f90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6E2F9577\/TietDA128ABF\/Tiet5ED532B6\/Tiet57F1B98F.php","hash":"2f5d4215e4049c1be6b5a56e517d5f74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/GenerateJitconfig.php","hash":"f1a9e50921d9016bc83d62cf0174ef31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/GenerateJitconfig.php","hash":"78cb8b535b14883070d3ce5b70902660"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokenRequests.php","hash":"c5845bff38c3a7942709238d5b5965ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokenRequests\/PatRequestId.php","hash":"230833c3bd0341f9a7e7c80b50f54b32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokenRequests\/PatRequestId\/Repositories.php","hash":"46b81ba60782ebf920d0fa0986f53a5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokens.php","hash":"5135b775d6c5fc99f29b39a2b0866ee3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokens\/PatId.php","hash":"6db450f9443907e45956f7def138ca12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokens\/PatId\/Repositories.php","hash":"287cb3a944329103a5b18f9ae1edbed5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/GenerateJitconfig.php","hash":"f5f6a778d955ab3c0210f85beb999974"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Teams.php","hash":"00d8bd653e7e9d61b3bb7b53677f644a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRulesetInfo.php","hash":"90c077af17558f5c70a7518bf8720d8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleDetailed.php","hash":"7ab2b5aa36da33f18e8ef6f4ddbaae46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/GetCopilotOrganizationDetails.php","hash":"3f362ac7ece8cf5ca2d8bed1d9a398d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/GetCopilotOrganizationDetails.php","hash":"5d51600733bc555ef331ecd549739c5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/GetCopilotOrganizationDetailsTest.php","hash":"4788ff6e71fa5800fa2fce391868ccdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/ListCopilotSeats.php","hash":"56d6f0e9e90cffd651d59ce9009d450f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/ListCopilotSeats.php","hash":"481d4846583acd72597553d63bf76060"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/ListCopilotSeatsTest.php","hash":"17eac559b63100a304743c0e0ed1ebe6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForTeams.php","hash":"f0e36d5163d73918867379a7d6b673c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/AddCopilotForBusinessSeatsForTeams.php","hash":"40c208eb6b2c32c1929da7a4ddbb3c5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForTeamsTest.php","hash":"58fb4a13e4dc9a6ad9bd0a11aebbeb08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForTeams.php","hash":"74c6c63b391aa13bd85b19401dfbd12d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/CancelCopilotSeatAssignmentForTeams.php","hash":"9bfb421f31bbbd3bf7f240a2a7432628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForTeamsTest.php","hash":"e34b45fcaef087310dc3e29596945d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForUsers.php","hash":"30c6b287e7b22c898344ed9f8163bba2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/AddCopilotForBusinessSeatsForUsers.php","hash":"5182b84efedb8d91347f4b64913e14ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForUsersTest.php","hash":"219fa22895ed53da3bd7aa22d8fc4634"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForUsers.php","hash":"b5787d802ce61297dce3ebdb34007a99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/CancelCopilotSeatAssignmentForUsers.php","hash":"6fa4475f3f825c9ff170e349dddb7bf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForUsersTest.php","hash":"46a7584a8d088ba933cd0d0aadc22168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/GetCopilotSeatAssignmentDetailsForUser.php","hash":"457b44d07fe131a7739459a5000cedf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/GetCopilotSeatAssignmentDetailsForUser.php","hash":"b18e3ec842e1eb3b4452da0f24b26713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/GetCopilotSeatAssignmentDetailsForUserTest.php","hash":"53862d9fb0a5a0030daa11153afef7fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotSeatBreakdown.php","hash":"6aa2f1394e3e6ebf0891ab755142f5b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotOrganizationDetails.php","hash":"c87d55871a809e01095802e9f3d96ffb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Organization.php","hash":"0487329b8d816a6a046190a1d8640ce4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/CopilotSeatDetails\/AssigningTeam.php","hash":"f0715033b84bafb9180bcfa5db79c2df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotSeatDetails.php","hash":"eee4d8f782346aff2d38991b72d3a264"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Organization\/Plan.php","hash":"5a13b1c3aea8855ac4510f3efad70add"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotSeatDetails\/Assignee.php","hash":"047e1387c9e8ae197a41a7b8ce2cb597"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/ListCopilotSeats\/Response\/ApplicationJson\/Ok.php","hash":"3e3311c52dedbd403b9f46de30f9716a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/AddCopilotForBusinessSeatsForTeams\/Request\/ApplicationJson.php","hash":"7b0b53530b513c16103be43915a60b23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF5944C0A\/TietAA99D7D8\/Tiet9AE1F544\/TietA28F869C.php","hash":"05cc887f3d8577ffd33d88f1c779989c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/AddCopilotForBusinessSeatsForUsers\/Response\/ApplicationJson\/Created.php","hash":"053669d4f16f363be628067c1ae0e03d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/AddCopilotForBusinessSeatsForUsers\/Response\/ApplicationJson\/Created\/Application\/Json.php","hash":"17811d225fab392946623b5132269fcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/AddCopilotForBusinessSeatsForTeams\/Response\/ApplicationJson\/Created.php","hash":"70bcab562c5bd1d23bc3c77345916f17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/CancelCopilotSeatAssignmentForTeams\/Request\/ApplicationJson.php","hash":"f433542ef94d7685ffd1efe3ad8cb17b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2460918D\/Tiet655452CF\/Tiet135E03E4\/TietBEF8748A.php","hash":"68a48885c055415300788020345e74f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/CancelCopilotSeatAssignmentForUsers\/Response\/ApplicationJson\/Ok.php","hash":"a68eb6b224e5cc34b3069d72ad6502ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/CancelCopilotSeatAssignmentForUsers\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"4b366758d0a49ae020243e27f5085537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/CancelCopilotSeatAssignmentForTeams\/Response\/ApplicationJson\/Ok.php","hash":"88f2c198f3f2c69aa57b9eae7909e523"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/AddCopilotForBusinessSeatsForUsers\/Request\/ApplicationJson.php","hash":"d3d7f3f39c0837eab906d79c5c3fd2b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/CancelCopilotSeatAssignmentForUsers\/Request\/ApplicationJson.php","hash":"9ceb5469278b99cf767329ca2ecb197b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Copilot.php","hash":"0aa19d509cbf96d141fb348ee6cbccac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Copilot.php","hash":"dc0024bcec64eb7b11b9b4710bf0b7ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Copilot.php","hash":"46531efc7a1b1402320de712c03dcdce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot.php","hash":"8d4969931ac64920a4f33f9e4a64b37a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing\/SelectedTeams.php","hash":"dea727d61e2ed84d63a15974edae36dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing\/SelectedUsers.php","hash":"c558014a74d921dc784d7549759cfca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Copilot.php","hash":"78a0694dee3ba2a911c3226406ab2785"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CheckAutomatedSecurityFixes.php","hash":"3a884d078696c2d6f62d6ac73ba83655"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CheckAutomatedSecurityFixes.php","hash":"77838f2ee71be1704f320dbaccafe7db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CheckAutomatedSecurityFixesTest.php","hash":"aeb409ba01225347ff378232b1815f85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckAutomatedSecurityFixes.php","hash":"7cf7e033f5a353c8c4457e1bfc0847e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing.php","hash":"a8d99ef706d998359de417622cf16c0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing\/Seats.php","hash":"9f29663b48dc3c9fda6019322e309a0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/AutomatedSecurityFixes.php","hash":"5a5a8dcbe77245b45c2729057fab4510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/EnableOrDisableSecurityProductOnAllOrgRepos\/Request\/ApplicationJson.php","hash":"f7aeafb652e9a202734ba3c817b633d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListActivities.php","hash":"5203180f224d52707807f32b0fc866f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListActivities.php","hash":"6d8c034d8517da6b5c55732067fbc59b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListActivitiesTest.php","hash":"42f21e9b2262bb9ee222b5f2b4d8e15b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity.php","hash":"bfa6d402977c9c928b7323bb0fbb5c8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Activity.php","hash":"b148cd794cc3a3b0cc3dec32f9c80f5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/ListGlobalAdvisories.php","hash":"82ea4bdb1725e7f551d9457a34a7f24b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/ListGlobalAdvisories.php","hash":"5a6e0c4b02eba1c127452851f6d6e3a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/ListGlobalAdvisoriesTest.php","hash":"a81492bf535eb75a580311263dc41e29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/GetGlobalAdvisory.php","hash":"774f36eb6c461d5e781de51bf20e34d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/GetGlobalAdvisory.php","hash":"ce1762daf5d7a043f37284444a89ca21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/GetGlobalAdvisoryTest.php","hash":"fc4b51e3930477c318dcbc5e02440483"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetCodespacesAccess.php","hash":"efda44cb39920ed90c6078decd7a8784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetCodespacesAccess.php","hash":"67aa224464de904fda166f6394c093d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetCodespacesAccessTest.php","hash":"7211c67cac4b65f8add3f5c6f920ae57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetCodespacesAccessUsers.php","hash":"b29a2cc1c78baae10b6f19aec23117fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetCodespacesAccessUsers.php","hash":"a9413466b8308b2c7199036f6467e014"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetCodespacesAccessUsersTest.php","hash":"27b94690e432783a45125481e85e6da0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteCodespacesAccessUsers.php","hash":"593b42fb883ee055760cb19d53042d03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteCodespacesAccessUsers.php","hash":"5cdd1f728723aa78c39204c7bf2d8ba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteCodespacesAccessUsersTest.php","hash":"e006dbafd5897d7e2584471ec04eb817"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory.php","hash":"863b1beb23110804bb444f39b4e34897"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertResolutionWebhook.php","hash":"9b4b74aafc80a65b4ba819c0fc7ae87e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertWebhook.php","hash":"4dc2c2b89567d43b29dccf932022aaa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet649F32EB\/TietC13659D6\/Tiet0B408A31\/TietF85C8E0E.php","hash":"172acfb3d4fd61489977afedb02980a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Identifiers.php","hash":"981d72ed7f8d5d75b88b95dfa04a0259"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Vulnerabilities.php","hash":"93cb7ddc3f2ffeda55acdd196f2e0223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet50219D5A\/TietA7CA62E1\/TietD2A60B5B\/Tiet86219BF7.php","hash":"02858e7f2cc781fed90a3e2b4e122f1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Vulnerabilities\/Package.php","hash":"42f6ea800bba6682b7a1c769e43bc572"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8F563A59\/Tiet87B65946\/TietB1731FB8\/Tiet3CD786E5.php","hash":"5246da3eaf0c5324773772feaa58ed8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Cvss.php","hash":"0a90b5fd08830db7194f64a51fd2f335"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBC412A5C\/TietB1250D28\/TietE40F86F2\/TietCB1A3AB3.php","hash":"c238c91ff8f5f1d8f7f0063eebe675a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Cwes.php","hash":"6271eee7e0a759718a0597ffa70103f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Credits.php","hash":"3be6084deb7240cd99a914a453a6c0b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetCodespacesAccess\/Request\/ApplicationJson.php","hash":"b4c6c2b34774c0cf7841152bcfe56c08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetCodespacesAccessUsers\/Request\/ApplicationJson.php","hash":"02bb77da0ee71eecff68b317b3a04821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/DeleteCodespacesAccessUsers\/Request\/ApplicationJson.php","hash":"035a741ba3fc4ea23effc3f789d42288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Advisories.php","hash":"93840e2e322b727ed2173c050d57453c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Advisories\/GhsaId.php","hash":"7b39eb0a31935bd7fa99c8b48c5a80ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Access.php","hash":"326d70fa574af0972c0377d53a66aefb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Access\/SelectedUsers.php","hash":"685add6a2ac50f88b2cfa052dba4d786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest.php","hash":"c7f586bc303a433b35dae6c2362bcaa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest.php","hash":"50f1e4c4a8674dc6a1c84381f13c12a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequestTest.php","hash":"ccd0f6875f97ffc457b8d03adcb41e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved.php","hash":"36e6de5afdec59e6095d2863b0bb3f56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected.php","hash":"39aee28b01971b687cf90c1613ae01bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested.php","hash":"21407ce6f09e3449f27bab0f91e0d812"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated.php","hash":"382cf3b41ac4d30158b7cd94c4628e56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted.php","hash":"841d7b14722974eaf7e9b7db9a6dea37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetCreated.php","hash":"1fdb91ca2bd74deca6337265d55f9ac2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetDeleted.php","hash":"7d18c85498e52ba7820d469f0bc6d47c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited.php","hash":"9e6c1ad2c6a8651f98a78dde0a0c7aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest\/Response\/ApplicationJson\/Accepted.php","hash":"0410905edee68aff7cd72d620dfbb58c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"a2553fbd9313fe0ae1ea024cbd71d281"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/Reviewers\/Reviewer.php","hash":"cfcf00f9eb3b4afb1b65fd3d7e4e1eea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/Actor.php","hash":"42010b31042ce59c970164920a077c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/TriggeringActor.php","hash":"f0deb7e8b8621da9698880e2ed639a95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/Reviewers\/Reviewer.php","hash":"93c3476b2a94976ec64a400a3a141e2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/Actor.php","hash":"49b4927a579dbaea2ede35dd9075ea3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/TriggeringActor.php","hash":"e0dce286007cb1e28727c73f3ed54691"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/Requestor.php","hash":"84b9bbdce3cf874e25172d758faaa9d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/Actor.php","hash":"cc8d7d0c26ed133d023086ac402a7e96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/TriggeringActor.php","hash":"a4473f4c0f9582b5b9af18f32747953e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Assignee.php","hash":"88139ee235666a449c5d5227559f1adf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Assignees.php","hash":"e6fbca4c89ac898ef9250caa9f9b086e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"4a04cf4175ba59df679891a6ff2fcee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo\/Owner.php","hash":"f935bd40592450e16641ad4adf6bb2a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/User.php","hash":"529b66da0c78c7311cdcbad65eea96f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo\/Owner.php","hash":"cf5d8d41d0a6b7d97398f53f0e8026c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/User.php","hash":"e2d8264c5043bd2073b7181e2c3704c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/MergedBy.php","hash":"bbaff9da72feb78c863268f875217245"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Milestone\/Creator.php","hash":"e2ffe4f1eba142fbde48f1e5c3eec45c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedReviewers\/Zero.php","hash":"8c0dd2562c31e3f9042f74a4d1864981"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/User.php","hash":"f757d88c2349dbf48041cf0898fe89f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Assignee.php","hash":"7f2c975d0a8e492118e3f4accefe665a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Assignees.php","hash":"ed8e3a8ac6f0e56f41ce84919380aa87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"46e377c65d8d6ac8fb01d13624c40773"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo\/Owner.php","hash":"05088d8aea594e9c7738cb69b23f7c3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/User.php","hash":"0a341f375a0431b8dd34d872b1ceb3b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo\/Owner.php","hash":"750e7808d49691f8173e5c4f5bd532a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/User.php","hash":"cecccc046cc6f99f7befda8c07dceaaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/MergedBy.php","hash":"37fe492460fd963c02e14d083a63554e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Milestone\/Creator.php","hash":"18712956e14dff1a3d003dfeca27070e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedReviewers\/Zero.php","hash":"7a55b6f6e54b06de780f4f4d1b5249ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/User.php","hash":"02111a2f4d22faf83c79dd8af8371d5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests.php","hash":"9e654949438567d38f1db1f7e45abe07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests.php","hash":"435c03c3e6b39cb008617eb00d6df36f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests.php","hash":"1b078ff84ae9934214b9cfffdf23992c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Base.php","hash":"74759ccd7f977fb2b2e35407d832c748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Head.php","hash":"a71ae5efc5c2f548b3247ab3255bfb21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Base.php","hash":"34fb1bf9c8a77186891ec729f7c32bec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Head.php","hash":"1f866e52849868daeb225acc4f7f59d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Base.php","hash":"c9caf47289f2bcbd4a5e7dcde4212593"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Head.php","hash":"64c4f543d18240d534ced18f6be16d40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"4d44b19463a0ba322287ce31ec57e772"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"ed0a83581b2a1f5f216094c156ede4f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"9306fc7a17ee757ba9305c9a71554bf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"f5586a7b586f98550b9b746f59b5f448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"b90376b7b2e58cf890ce1d50770a0582"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"35a3e15021bb9bd2f8f5446c1e6f41e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/HeadCommit.php","hash":"81fac241812bbe35f9974e05dd347aae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/HeadCommit.php","hash":"3e6ae6a2323ed6a7650f9e73b524dc0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/HeadCommit.php","hash":"9e7de0d20ba4ee782da74a6c78308b2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/Approver.php","hash":"1ebf5388fbb1516457ca1523a44852b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/HeadRepository\/Owner.php","hash":"c5e1031412f93b765152a19e93f96545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/Repository\/Owner.php","hash":"584ebf0d24353569675691cd153263e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/Approver.php","hash":"9ce31550e7efe82133cabb97b27d8072"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/HeadRepository\/Owner.php","hash":"4065134777a75f848fe3542f99ff572e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/Repository\/Owner.php","hash":"df145d85ba3bf3a1ea50caaf9ec3ee9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/HeadRepository\/Owner.php","hash":"614e7f4a6076f7140aba30aa9a78f243"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/Repository\/Owner.php","hash":"94882eed94caf36dab91276dcb7d029c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/ReferencedWorkflows.php","hash":"87261dcf790509323a8ca5b7512ef28c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/ReferencedWorkflows.php","hash":"a9ae092890b30b83e80645d9a688ecae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/ReferencedWorkflows.php","hash":"797e5431a1319efedd9ca4c1ff30c025"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCEE52534\/Tiet578D6158\/Tiet7A705212\/Tiet1CF6BC69.php","hash":"08182e3508f332c1e6b2519c53398550"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/Reviewers.php","hash":"4a81a5989632fd449920fdd61a665e2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/Reviewers.php","hash":"314a84aa54c0bfa9f0817876252a6db1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB05C64DE\/Tiet4B78C5E2\/TietABFD31AC\/Tiet7CBAECD2.php","hash":"beb6c4b3f6044f9420f9f8c74ff8b873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowJobRun.php","hash":"e3048f5cab9dde39bb83f2625c031e1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowJobRun.php","hash":"b8c08f68f07da2315a12eecd8d079b44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowJobRuns.php","hash":"0516656061a262268d9536d9ee512f7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun.php","hash":"46724ddc5c0bcb40c04afb5ee1c2d965"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB576B1C1\/TietDDB53428\/Tiet95045CA1\/Tiet3A2EAD15.php","hash":"7234c8e58dd92019ff16d20a30a4febb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/Repository.php","hash":"bc1b3ef308089185700421bc0b84ee1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/HeadRepository.php","hash":"dcb82607fcd03975fbb4ece6cd455a65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/Repository.php","hash":"778b6b2e972e94a85649839670c1c5f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/HeadRepository.php","hash":"be923ba94ac7dbf9b99e5d2b8fd9fe43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/Repository.php","hash":"b01b60212c43286b95e73e902d7e0cc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/HeadRepository.php","hash":"68627c7cbf33d39ce31cda5c6b3b9db1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowJobRuns.php","hash":"6c2a1a8dfa505bf40f4687dfdf73c6f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun.php","hash":"b4814c5a0b56592d0320231fd8652955"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/Reviewers.php","hash":"1cbd596fa926e00b5e94ecc0e8db9656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/Reviewers\/Reviewer.php","hash":"da0837189061d9bac95b01f0e221a79c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowJobRun.php","hash":"74309c360d077d0ef8ca03aed629f1b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun.php","hash":"53c57fe92a7abac0f4a4c6ad0047cedf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Labels.php","hash":"210121edf5c62866bf011938fc7bb9b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Labels.php","hash":"0fceb93b8a1deef73720574acb424cfc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo\/License.php","hash":"9d6a6b90172971641fcaa60694ae082f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo\/License.php","hash":"675ce6d864a7f77652830d3267ddeb67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo\/License.php","hash":"f4889d437bbd8638a0de29f564c7a736"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo\/License.php","hash":"3f6cf546c557311c8dde89b2027a4fc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo\/Permissions.php","hash":"d0addc5e08ff6b631740e4f303d1aadb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo\/Permissions.php","hash":"d0caaeb311f5126ffcaacb488ff175b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo\/Permissions.php","hash":"a1b6991594a995946cc99cde0179f4fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo\/Permissions.php","hash":"17c2bd0a2f5831cdd26f35d2ee6242eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Milestone.php","hash":"a4489b82b00469f10c1619add9101640"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Milestone.php","hash":"279b80421d7cbea829f63f1ce69245d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo.php","hash":"5ca1e698a65e4f636b198bc68035f566"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo.php","hash":"20ea88bf85f8a417221eff0e766c3058"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo.php","hash":"16ce85b61d5539c0c184355f86136234"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo.php","hash":"53670f2044eb5ec47d58ee8568a1a565"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB9B591C0\/Tiet051B15E0\/Tiet6AE540DE\/Tiet19573BBF.php","hash":"7616701772f6ee7f93b29d0af7d68870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/MergeQueue.php","hash":"881211d825b81a246a07d5b7a23bbcf8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/MergeQueue.php","hash":"0492085e1d9fdbfaed0ea38eaffb252b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet784E9C0B\/TietCAE34930\/Tiet8733038A\/Tiet0C864473.php","hash":"7e78217898b957331bc1c2eb15ab71ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/MergeQueueEntry.php","hash":"c038d5f459a68a05b12f3949a7ee6bcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/MergeQueueEntry.php","hash":"a043fa61fa8dbf974c14f7125ad1d0f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet967AEB03\/TietAD3E665B\/Tiet47EE4372\/TietE40DA4C7.php","hash":"92665f3d2f05645a920d97d76a8b9ff1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest.php","hash":"a44670369d23c08c8a15cda0419281d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest.php","hash":"bb63e01473a1bef19e58ca74dc08e0b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links.php","hash":"e8f6eadf05ed1b8976d4be5be90b459b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links.php","hash":"8ef45c21e6ab88e5191571eb5025789c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Commits.php","hash":"5cfa786d66c21ded87601741a7cc79ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Html.php","hash":"5c2b76e5caa4867b634c8334af4c2e84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Issue.php","hash":"7ef49b8ee5985080e1c75f03ec1da4d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/ReviewComment.php","hash":"8f7533f35a4e707dfab2026680100f07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/ReviewComments.php","hash":"bf51392ff9a1a029785e9cd6b9e95b9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Self_.php","hash":"16df0a6b41c420ca1e6a1412cc686d65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Statuses.php","hash":"d75a1a3eb115f0a4a61f9586288461fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Comments.php","hash":"d16dc00c12073fe659fc89b5655243ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Commits.php","hash":"556c941c11a6b425f3e4443af82caca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Html.php","hash":"a91ad3198a21afdf8072ed2a14d8caa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Issue.php","hash":"50bd37d68315bbef024bce009a200c22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/ReviewComment.php","hash":"3e86be650e63755972942bdb651fd400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/ReviewComments.php","hash":"78907c3e53f3c2b6b9c0d23f8610e4c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Self_.php","hash":"e41c4aaff7ee9a8dbe92af54da8b52dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Statuses.php","hash":"940cdfb951a0d2fab191762a94ad3aaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Comments.php","hash":"5ff590e262d5bc245d25221f39660c05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/AutoMerge.php","hash":"0cb709e0640aecb477a08333964c6969"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/AutoMerge.php","hash":"cda6087730dc293330d4e35173b90cbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head.php","hash":"06975539cb3bbb74ee847ac54ce91f47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base.php","hash":"5a27467ffc9e1aae4b107078e7649207"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head.php","hash":"fc6124f9894dd0b7e1511ff35f702c19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base.php","hash":"4963e430d8fc454b987901ecc5a0970d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedTeams.php","hash":"b766ad5d662c2fea74a7d07fcf1eb909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedReviewers\/One.php","hash":"8091684f734e10dc3dc71fbbcf50d217"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedTeams.php","hash":"01c50484098e7a4a70fc85cc25698c02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedReviewers\/One.php","hash":"146b6c6ff5bca821c11c415fb345e7d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedTeams\/Parent_.php","hash":"115c86db6cac1032d837876c9744fe0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"405b96187316c056cfb010e29c027059"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedTeams\/Parent_.php","hash":"61f8ce0118f49416899acc13f7bda896"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"9b7b3e893d785ad062f57af3291bd704"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet38F1F00B\/TietF74B7C24\/TietCE7CBD4F\/Tiet88FCE2CD.php","hash":"6bf010580348251a9747e5a2a5a380ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Name.php","hash":"e4df95bfc5319b6caf997173421ffe01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Enforcement.php","hash":"10a1d2a0a0f5b2a2056a5ee30782fb9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/ConditionType.php","hash":"928244d28eb600c1e93b0afb9db0a093"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/Target.php","hash":"d90c0abaaeaf70c48debf37f2c9ce3c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes\/Configuration.php","hash":"bcfbda917895985530ac2030d7234cfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes\/RuleType.php","hash":"aa8793d6ff36c5d2a647aeb0bea9ad65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes\/Pattern.php","hash":"ff7213e35d2096a67b4d43cc66baf7f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes.php","hash":"4c3426f80cbe1aa74b83ef5a117fea99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions.php","hash":"76aae635ee242e14295982f7301f9473"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated.php","hash":"b8a7ecd2744452f0ab76e9dcbe35c912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes.php","hash":"27a935ae9f012b7fe124ab484c30d09e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0A7E4C74\/Tiet85764E37\/Tiet559A5D5A\/TietF5611BBB.php","hash":"33b34625bd763b5f69177632abe450af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/Exclude.php","hash":"e4fcaa6173aec31b4e7581bc45b7f740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/Include_.php","hash":"84a3166692f4754995baf4eac18828ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules.php","hash":"baba385d2e2d55fbdbfd07e4ab1a8dd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Rule.php","hash":"e2540de4bf1656b7986e15cdc788f119"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated.php","hash":"563d643511f55c1ad706e9c26b0d9e66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes.php","hash":"2057d8134c7ec32f7fe1451ecd716468"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet68B1DCE7\/Tiet67FB0D73\/Tiet8074454A\/Tiet78E3C518.php","hash":"e6c3e1284a1575be7f47acb02b1d62a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8CA88D83\/TietC1EE26A8\/TietDBE5B00E\/Tiet036221B4.php","hash":"37596b5539ada88f3b124e76df76d018"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories\/GhsaId\/Cve.php","hash":"3f057ff5ab558b312fab17d6c09bb574"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/ListOrgRepositoryAdvisories.php","hash":"98d30391ff1f25a8c19af5ac8cbfa253"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/ListOrgRepositoryAdvisories.php","hash":"16a0eeb852edfe4f0400f39785375fa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/ListOrgRepositoryAdvisoriesTest.php","hash":"d08ea2b36d7e2618c4c1bf4ee50d6d0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDE8B8C33\/TietDD3CC7C9\/TietD567FBE1\/Tiet46B008A2.php","hash":"df3ef061a79c2de71970b8b2b8b0b105"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4038BB2A\/Tiet4B88EAFB\/TietFA559FD4\/Tiet4B6EE323.php","hash":"5c5016fa9236c099e2af1ba5da95d096"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB5BD8065\/TietB2327564\/Tiet214214AD\/TietF3CF5B92.php","hash":"cfa51d2e4ec8db0587af78c88d58e37c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet69BFFB24\/Tiet1E5F2135\/Tiet40AEF1A8\/Tiet48411CB3.php","hash":"358bf174b09b541ac251e2a68d1867c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9259675E\/Tiet7B6E7D11\/TietEEA46A7F\/Tiet5209F9E0.php","hash":"8d76eb578ba4b9433f2861e0a53cc06c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB76A0AF6\/Tiet95C5B848\/TietFDAEA32A\/TietA8BFDFD0.php","hash":"6587bcec018ce980e5b3a6b480f6bb61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Meta\/GetZen\/Response\/ApplicationJson\/Ok.php","hash":"e82bb0e78573f96b0a0a696ed8eb0e2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7D96687A\/Tiet0ADA8097\/TietC4B2828C\/Tiet7F3AA76B.php","hash":"dd2fca1c56313aa8768ffe84acb6f088"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE0496134\/TietE974BD52\/Tiet10F366C6\/Tiet3AC552E0.php","hash":"d51d98d5442c0a56934f3662d155ba36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/SecurityAdvisories.php","hash":"49bc2ee0ed22b8c582501fc98be17fa5"}]},"additionalFiles":{"files":[{"name":"composer.json","hash":"63f48b63977ca7621e6284b26a9ff617"},{"name":"composer.lock","hash":"b3fefc8269e8ab2d47d33a09c23dfcf6"},{"name":"..\/..\/composer.json","hash":"130d27a3c005c66a42a3e384d8bf6fed"},{"name":"..\/..\/composer.lock","hash":"435241a87239f8930fb75e30ab65168b"}]}} \ No newline at end of file +{"specHash":"b25145b198caa9051f49e85d468070fe","generatedFiles":{"files":[{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/Root.php","hash":"0a8da3b417d74f4609f412660f87a4e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/Root.php","hash":"64f8747199401f1805974c8520ca396e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/RootTest.php","hash":"48dbf5f3a3fbb2cf1b0da562879656aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetAuthenticated.php","hash":"29f0091e08799c638e8a14c81a93233c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetAuthenticated.php","hash":"e32f567f1d5f4cca51377ab81a80979c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetAuthenticatedTest.php","hash":"ab0454c0a838738c804ce13a7ccdfc8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/CreateFromManifest.php","hash":"17d3ba8d5584bda6f54441d6396ec917"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/CreateFromManifest.php","hash":"2898867c798064929f59f6b8597b45f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/CreateFromManifestTest.php","hash":"fa0de02708b37773789cd85b60f73ea0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetWebhookConfigForApp.php","hash":"a0f3c1be8b673c1898e84bf1ab6645f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetWebhookConfigForApp.php","hash":"b199b67fad1b5ffae2a1a65e004e31a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetWebhookConfigForAppTest.php","hash":"70853d16bedff03c2d6c2f6d358677a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/UpdateWebhookConfigForApp.php","hash":"5771cb3c39e17d9d67b8225c28283a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/UpdateWebhookConfigForApp.php","hash":"1eee6bba58538d78fbbb020cc107ea1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/UpdateWebhookConfigForAppTest.php","hash":"8d58a1b30fae3fb2b0d120d353586657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListWebhookDeliveries.php","hash":"1866f06818f8b05e6afa0e37f0d92a7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListWebhookDeliveries.php","hash":"781e0eedacf4e832c751d74438ddaca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListWebhookDeliveriesTest.php","hash":"55ecc153130d5209d8a1d9afebf35fc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetWebhookDelivery.php","hash":"cb96a4715178d3948163a98bcc2c396e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetWebhookDelivery.php","hash":"4d6783e7c2a34b8eb52131b4a9594154"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetWebhookDeliveryTest.php","hash":"5476a06f636df656ffe2dc43fe413920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/RedeliverWebhookDelivery.php","hash":"6a686e20ac521390b508e6c015385d01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/RedeliverWebhookDelivery.php","hash":"0a5127ccf5b4f89cd181efdd90661497"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/RedeliverWebhookDeliveryTest.php","hash":"9144981d6d8af530aa0fa93da743002c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallationRequestsForAuthenticatedApp.php","hash":"f1428c2e9ee2bbd461a4c13661e80549"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallationRequestsForAuthenticatedApp.php","hash":"eddedfa0afca3aaa007acc1e91317b65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationRequestsForAuthenticatedAppTest.php","hash":"139304662cf7c21a77c28be8d7c5cee8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallations.php","hash":"e77e96b026ecd025e69ff2bbaeab90bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallations.php","hash":"3696107686a544dbadf9d1dea6b561ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationsTest.php","hash":"0259d5a3ebaf7395f508c0ccd1092260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetInstallation.php","hash":"cc89ddfc93414da4bdccf8b766eb6aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetInstallation.php","hash":"330cb4940410c409dccadfd151763d87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetInstallationTest.php","hash":"cb96ea202d8d6b2858ac05cb8c57c6f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/DeleteInstallation.php","hash":"6b97ea2df485b799bed386e673ed844d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/DeleteInstallation.php","hash":"b55055301d4b128a320509828149feb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/DeleteInstallationTest.php","hash":"d71711aaee10d884cf7b0559c1de3d18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/CreateInstallationAccessToken.php","hash":"d711cca70f26722775e4fb475c699212"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/CreateInstallationAccessToken.php","hash":"86d9415d1a1f64428eb4807c2ed9a7b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/CreateInstallationAccessTokenTest.php","hash":"4ebfdd8762e751f1440cba0bb3578505"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/SuspendInstallation.php","hash":"6baf985c6979a06d2adbc42df0f1a109"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/SuspendInstallation.php","hash":"6559fa8ec22608ccb541b3e24d095efe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/SuspendInstallationTest.php","hash":"f5dff6dfd1b053533420052c32674342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/UnsuspendInstallation.php","hash":"033fac3e25eaaa2251a714b883030134"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/UnsuspendInstallation.php","hash":"33f077eba7914d2711ba699649097de2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/UnsuspendInstallationTest.php","hash":"6741ee2bad3312ac3efa8d4d0e78a3aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/DeleteAuthorization.php","hash":"50e423c6c53795d25c2338e60faff2e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/DeleteAuthorization.php","hash":"198e3b641990aa61194d096cc45b9e5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/DeleteAuthorizationTest.php","hash":"115a7fb399750a0b75203e0d9b1a5472"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/CheckToken.php","hash":"55fa79882997fade361c309e69d2a0d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/CheckToken.php","hash":"5036b37190af48660f7d43a1491efc9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/CheckTokenTest.php","hash":"015c06d1c186f907f8b4ceeb7cbf27c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/DeleteToken.php","hash":"ed30761b4d3249ad2c51ffbfbc577964"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/DeleteToken.php","hash":"b8df97d6d46fd0163337eecfed06db24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/DeleteTokenTest.php","hash":"e6559b73bee53c86c18cf763a083b12c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ResetToken.php","hash":"d97821a72d6df6980e0ec8f4f64c2500"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ResetToken.php","hash":"a1ac0691fa4a85619f02c203386ee38b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ResetTokenTest.php","hash":"33a3a79256e1877346838e9358ae1f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ScopeToken.php","hash":"195568cd4773ed72673c8d91edd13e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ScopeToken.php","hash":"f48c687632cd840b6f69979ae083b627"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ScopeTokenTest.php","hash":"9000128b2e9d713f5e7ddea1e6f38d66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetBySlug.php","hash":"913a00f643c0b11f148d95549f20c907"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetBySlug.php","hash":"8f45a9d6104ac54de4454107d9bf6cbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetBySlugTest.php","hash":"d5102cc143bd7a3954fbb0aea6456ca4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodesOfConduct\/GetAllCodesOfConduct.php","hash":"7e2e99d19260e156c5c27e366dded87c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodesOfConduct\/GetAllCodesOfConduct.php","hash":"5ecc863620f596661eccd21def4788c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodesOfConduct\/GetAllCodesOfConductTest.php","hash":"bef7a2efe9a17ac34f80b8c5e5eb81b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodesOfConduct\/GetConductCode.php","hash":"3e36649fb7794694a7446ca8ffd06513"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodesOfConduct\/GetConductCode.php","hash":"3dd6b2bf7e3be5c2464a06cbb44e34a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodesOfConduct\/GetConductCodeTest.php","hash":"a8c5ec012081c073e636c26850ad84a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Emojis\/Get.php","hash":"89c96e6453efd83ed1c74411e9eaf7da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Emojis\/Get.php","hash":"5ec51aa5ea1c249c8103233d362bc967"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Emojis\/GetTest.php","hash":"610e18db8ab3886a923bde349eeb8248"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetServerStatistics.php","hash":"9b6e7460b2898edbf46ea1a3ba460c9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetServerStatistics.php","hash":"38e6dde6f8a76efba5febc061c8ad317"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetServerStatisticsTest.php","hash":"8387d011a8886154045cdaad69f5d6ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsageForEnterprise.php","hash":"a48adb3a8caf6b7f64994c43e475acaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsageForEnterprise.php","hash":"4ad2ef6d4e5962fe37bce1339453aa53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageForEnterpriseTest.php","hash":"1321a2a4d8eb7da6d0fe4f002ad6473a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetActionsOidcCustomIssuerPolicyForEnterprise.php","hash":"96108a2bdda0ac21950ebf7f87379729"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetActionsOidcCustomIssuerPolicyForEnterprise.php","hash":"a6fd5f3088cd4704bd000b93de52b579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetGithubActionsPermissionsEnterprise.php","hash":"30da455cfea9a00274368e44502bc6f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetGithubActionsPermissionsEnterprise.php","hash":"365b5d734dec56b3f15e9997f32c7ee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetGithubActionsPermissionsEnterpriseTest.php","hash":"ad109447268569c0ae56c270a5320471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetGithubActionsPermissionsEnterprise.php","hash":"1c934e1de68dc1550ee3b2d3c53f6288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetGithubActionsPermissionsEnterprise.php","hash":"01974c347c5e6fb2fc1877b029a139c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"370e517f3874684981e34bb585cce0de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"1ae599037caf505257a47fcb5a4e2a99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterpriseTest.php","hash":"819e2a820928680d6d3967ff0ab25f2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"3c6b952c46738db3b317fbaf2553c90c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetSelectedOrganizationsEnabledGithubActionsEnterprise.php","hash":"03339ff9f62452503a46a3d53633be51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/EnableSelectedOrganizationGithubActionsEnterprise.php","hash":"354510f856d110e07c084e121fc56915"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/EnableSelectedOrganizationGithubActionsEnterprise.php","hash":"e25bcd025095b8c8b45deaae697b7405"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/DisableSelectedOrganizationGithubActionsEnterprise.php","hash":"d6953fd32446bc8fc28049c3d4f5be1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/DisableSelectedOrganizationGithubActionsEnterprise.php","hash":"95f6ebea56a3b710aef8ce4dcaf2b770"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetAllowedActionsEnterprise.php","hash":"5a9bab4afa0447dda836f259b1e708a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetAllowedActionsEnterprise.php","hash":"af6831893469a53b047b453fd3a0372a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetAllowedActionsEnterpriseTest.php","hash":"764391dedbfd92d8f1135823ce127a12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetAllowedActionsEnterprise.php","hash":"93702aa5077730bbe474568f6f314778"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetAllowedActionsEnterprise.php","hash":"ac424e6923e5c63d2b1d1335c15359ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"a084cc3827e4eb75bbadede6de7d7164"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"1c9fc085d3656d137b08e2313b12363e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsEnterpriseTest.php","hash":"066987cdc79c6e9ba0f40b61284c109f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"4615224c8f81a06a8b15a36f59c7e888"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsDefaultWorkflowPermissionsEnterprise.php","hash":"3f259f5fb85a166409baaf066334c37d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterprise.php","hash":"f89a9a11088632b11f8346c3fe51c24f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterprise.php","hash":"c082b1dcfb3fea51fc6e4650c5ec1957"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterpriseTest.php","hash":"7728766096a21514d42f9243df9ff697"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterprise.php","hash":"54824d9b41cfe87a50ee590384701a90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterprise.php","hash":"dce9931205cfa9b18f114df3839f167d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterpriseTest.php","hash":"5d91c5e047237fca302be214a42c612b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerGroupForEnterprise.php","hash":"4ab10220adbaa2ae87a4582e8a32b8bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetSelfHostedRunnerGroupForEnterprise.php","hash":"7a84e30eef89ef90b67be166b823079e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerGroupForEnterpriseTest.php","hash":"2144bbd1fa80aac929ed175c5cc18d95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/DeleteSelfHostedRunnerGroupFromEnterprise.php","hash":"c1f4bbafe14a7cb123108064f1f1fc99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/DeleteSelfHostedRunnerGroupFromEnterprise.php","hash":"6309b51ebf4a34111e4ae8388a3a5cc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterprise.php","hash":"6ac75419876c5e769d366ab6532f1292"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterprise.php","hash":"5fb489131e602a284432f0f4afd78e92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterpriseTest.php","hash":"b725cdf5824995170e0678e02415ce2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"a34644add6a1f7dbf98e8f69c6b20c98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"93b881c8d8aa195b3290e5d6df7e481b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterpriseTest.php","hash":"d70237388f78c441b8859fd63fb7fed8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"3d5b9ed97dd85a83015158f579e88986"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"3919f928de9d3b34d7e7927865f7e1a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/AddOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"40da460ba0b461ea18ce940c5f417151"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/AddOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"06cbcf0c103e4c486dbe355133db2ffc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"08f463ed6db9729e7978dbfb4b8f520c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise.php","hash":"8ef3d7934d087908c9d48a600b00b7a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterprise.php","hash":"225d6776058b37b0b3d13959973037ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterprise.php","hash":"623d8f13168fb7e114efdd7ee2aa27e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterpriseTest.php","hash":"dc8fda0f5f82fbf34cf677a3a929b475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetSelfHostedRunnersInGroupForEnterprise.php","hash":"172b52f7eb00dd055866e1586ab841b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetSelfHostedRunnersInGroupForEnterprise.php","hash":"0fa967735c82cef5b47df0428357c270"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/AddSelfHostedRunnerToGroupForEnterprise.php","hash":"735c7bd0c7c89c570fc1f708ee4016dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/AddSelfHostedRunnerToGroupForEnterprise.php","hash":"fc9af0365f915ffab090cd09934ade4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveSelfHostedRunnerFromGroupForEnterprise.php","hash":"2c39a63fb5f60a3abcb1981555bb69db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveSelfHostedRunnerFromGroupForEnterprise.php","hash":"c2cda10b501a24f82e6a8e6023c67dd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterprise.php","hash":"7f55a30cf56eba0b071ddd8e1b11ffe4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterprise.php","hash":"01f90f0e63f3d111060caa3c37a6805e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterpriseTest.php","hash":"a10833df1d8ace518544f5234ca2e7a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListRunnerApplicationsForEnterprise.php","hash":"f084a700e4d5fd8de387374a8a546231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListRunnerApplicationsForEnterprise.php","hash":"3173b42663e9a633089b7e3b28b959f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListRunnerApplicationsForEnterpriseTest.php","hash":"e68d6ece7b5d7b7db5a8dd3f4f4e4f86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/CreateRegistrationTokenForEnterprise.php","hash":"fe78aa029317af2cba3e5329bc7824cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/CreateRegistrationTokenForEnterprise.php","hash":"b26a15e113456c6a323c8681efbc9177"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/CreateRegistrationTokenForEnterpriseTest.php","hash":"e6d9436068af4768161a7c344c70a4e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/CreateRemoveTokenForEnterprise.php","hash":"1f9b0561f8c910ada7d7f373abb7d4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/CreateRemoveTokenForEnterprise.php","hash":"7f715cfaebe587b1222f73f86c106fff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/CreateRemoveTokenForEnterpriseTest.php","hash":"4162d5f6001a05c2eebf7cad338c88b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerForEnterprise.php","hash":"f1ce005e7eb873062043f0f9a789a0e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetSelfHostedRunnerForEnterprise.php","hash":"5dee98c4388dcfac661774217fc657a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetSelfHostedRunnerForEnterpriseTest.php","hash":"b5950c4acc7a8b5c0b18033e963f29b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/DeleteSelfHostedRunnerFromEnterprise.php","hash":"e925a6f51b346c42327103a29cb84880"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/DeleteSelfHostedRunnerFromEnterprise.php","hash":"d094de4d34c6bf926b0795ed71fa4116"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterprise.php","hash":"a4f27631b5f487f91a62fd82a41e0f99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterprise.php","hash":"54909afef0d4afff4242d81319e69e2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterpriseTest.php","hash":"678ae33fbd28417d9a878ff08db73b00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterprise.php","hash":"0e846a75d24d7cb876b8b3a575d75a82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterprise.php","hash":"71efa5a645c248ed50d7c722146f74cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterpriseTest.php","hash":"80a109fefb0fb25dbcbfb89ba28fb5ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterprise.php","hash":"3ab2efa67547b6aac538f993c74954aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterprise.php","hash":"74346bf0b50ba40e283c4ff57ffa825a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterpriseTest.php","hash":"2070aede0fa39049b98a3044778748e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise.php","hash":"a634d9794f56bae0e6c1215ca74955e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise.php","hash":"cb3362bf91a85105eacaaa263989b563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterpriseTest.php","hash":"e0b3d25844e1bb2fa95673f468bcf88c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/RemoveCustomLabelFromSelfHostedRunnerForEnterprise.php","hash":"83a721eb49b259640d43f8c4d57753a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/RemoveCustomLabelFromSelfHostedRunnerForEnterprise.php","hash":"6e2f44c1b59255d7104d16c8bf46c35e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/RemoveCustomLabelFromSelfHostedRunnerForEnterpriseTest.php","hash":"da698e766fe8f46ed92a876b438a7910"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForEnterprise.php","hash":"91157a4b94360ae77adeae4db275e0e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/GetAnnouncementBannerForEnterprise.php","hash":"52c3c2ae071f0bfa388ffbe8bb6aa2a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForEnterpriseTest.php","hash":"b6d374ee24b16fa6b3c12ceefde9b043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/RemoveAnnouncementBannerForEnterprise.php","hash":"6b8cefd6241b03eca0c59905a7085f63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/RemoveAnnouncementBannerForEnterprise.php","hash":"838cfabc347c150ab6f8e0b72199b21b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForEnterprise.php","hash":"012a87446371929eff7fccd0042b7c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/SetAnnouncementBannerForEnterprise.php","hash":"0883e4d461df615d05745ad0723e59d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForEnterpriseTest.php","hash":"f978045f055280e471eac7971f090edb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetAuditLog.php","hash":"dda540505bfbf86523ecd5c946ab285a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetAuditLog.php","hash":"ff0a7b01d77dd74fcdff15e4c9e13a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetAuditLogTest.php","hash":"fc23372b30de5ea80e78c0ccca7f48ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertsForEnterprise.php","hash":"63a70a2e90d7e53739890f522077ea37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertsForEnterprise.php","hash":"ef171c3b8bdc678d572511c9cfef632c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertsForEnterpriseTest.php","hash":"689e565a4d1a3262e5a697e565189900"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/GetSecurityAnalysisSettingsForEnterprise.php","hash":"4cf39d967589f4218a0b2f4ef9138fdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/GetSecurityAnalysisSettingsForEnterprise.php","hash":"308bc29afcf811b0633604e5edd61423"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/GetSecurityAnalysisSettingsForEnterpriseTest.php","hash":"5047338637abdee7f9f60330174123c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterprise.php","hash":"fd0d98be2476b4cc8c25f94f43ba9407"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterprise.php","hash":"8f53ed6dca875ad22dd8dbc6e5a57a5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterpriseTest.php","hash":"3e82287cdff5631f4b7999982fe0814b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetConsumedLicenses.php","hash":"a682c3e4831d05d3c14a510d149915ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetConsumedLicenses.php","hash":"1c64c5bec7c8dc22c034b4acddd47214"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetConsumedLicensesTest.php","hash":"782d9441d16379ceff5bffafbe3f32c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListAlertsForEnterprise.php","hash":"fe5b9d3cf481134fcaa2d418726da12b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListAlertsForEnterprise.php","hash":"b081fa77c749775f5cc46623c85c2210"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListAlertsForEnterpriseTest.php","hash":"bea8300020bb3468c5cc24a11625c226"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin\/GetLicenseSyncStatus.php","hash":"cf5c77dca539af120ec2013798c2c712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/EnterpriseAdmin\/GetLicenseSyncStatus.php","hash":"a0eec7c32c5760dc5e0bd64c9494bb87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/EnterpriseAdmin\/GetLicenseSyncStatusTest.php","hash":"d7c0155fbb84e3fd0553b1dfebf8eae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListAlertsForEnterprise.php","hash":"67b29209f48ab7e01b2331bf94836da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListAlertsForEnterprise.php","hash":"63de0ccce8e6e8530df65936d7a62bad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListAlertsForEnterpriseTest.php","hash":"d631b8246605f0f62d6de21203de3d9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubActionsBillingGhe.php","hash":"3886b8a6c06b3ebcce33a20300f4bc9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubActionsBillingGhe.php","hash":"ce0672fdb4dcc4f3f77f4f76804ea0a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubActionsBillingGheTest.php","hash":"eeed782e25ebb973efbb497fb98bd5c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingGhe.php","hash":"5033a0a3418971729cd2b7f66dd8d637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubAdvancedSecurityBillingGhe.php","hash":"5134f0d147e4e168ce922d538bc56b33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingGheTest.php","hash":"63b6f7a1e81fe232cfee969043ed3430"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubPackagesBillingGhe.php","hash":"c384d8236f3b81b4aaeaef785f09b987"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubPackagesBillingGhe.php","hash":"0f87828e1e2f58c09a6634f38d98b72f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubPackagesBillingGheTest.php","hash":"c2c95e9f5485974c5703f3e1821d0efb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetSharedStorageBillingGhe.php","hash":"7aa7534723c7848b2efcba7ac0c04a66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetSharedStorageBillingGhe.php","hash":"341408680173efe1d5a2fcd857f96c43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetSharedStorageBillingGheTest.php","hash":"c0fb752fa73e3a7b143d1b5309704bb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/PostSecurityProductEnablementForEnterprise.php","hash":"d278f0b56001ad28dc60c1eb8d38fbf5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/PostSecurityProductEnablementForEnterprise.php","hash":"873c097f091ab507b714a16359193390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/PostSecurityProductEnablementForEnterpriseTest.php","hash":"4bf03efbcf4b153db5623cd43ad684bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicEvents.php","hash":"d1b46c113a2242ecfa8a73c11c611cd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicEvents.php","hash":"31b8b2e080c5f8526d061bc418620b14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicEventsTest.php","hash":"afb5fa8cff4b152cfd5ee1a6e24e54b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetFeeds.php","hash":"c0b2bd1564bc1dd142729cf1eee3ce6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetFeeds.php","hash":"45a92535766f2bba47f0192e43d407df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetFeedsTest.php","hash":"1812948561220e5c9690a93ae6961e7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/List_.php","hash":"5e348854e3e781978d0ba404eb3c4ebf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/List_.php","hash":"5730dd51bcd8571c43d12b7666415e65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/List_Test.php","hash":"effecf9749d448801aed858423be702e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Create.php","hash":"c191daf2e89a86d900f969ec3710cb6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Create.php","hash":"689a0d1a30609cc18cf3ec4d053284be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/CreateTest.php","hash":"b9397157a449caec6d68604773fcfea1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListPublic.php","hash":"b571b1723a79d23a42ca1071e9bcf4d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListPublic.php","hash":"75b8e5469a7446fc5fc73e4f9ccdc5ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListPublicTest.php","hash":"73aba77f5eb34d8cfcb0468fb8772e76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListStarred.php","hash":"78378cebe7960a3c790ea1b90b1ba8e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListStarred.php","hash":"0dac1daea297b58199c26e060677b305"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListStarredTest.php","hash":"ddb96ba21375d077d85499f2310cfef3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Get.php","hash":"6038c52d97a1873bdd198ba494d8e538"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Get.php","hash":"265087fb5cde70a9ba9cbd251df9dc5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/GetTest.php","hash":"f7413f55d1943251f00bc2f1c2ab18b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Delete.php","hash":"6187bae9f61aa40e6c4296ee17565f9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Delete.php","hash":"21698527e6915fc4356c38a1f8ff6b28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/DeleteTest.php","hash":"09761b946a22f0eab4b7712771a05924"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Update.php","hash":"7ce9c453067d481c09b2a4da44d4a069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Update.php","hash":"49b484607cff021be5da5519e9a4b473"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/UpdateTest.php","hash":"b8d507c2e0ce79ead5b79b1d8fe6bd12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListComments.php","hash":"46abb48f945631414fb54118022bd3f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListComments.php","hash":"7a81127ae1ef8876f2c89e0d25603cb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListCommentsTest.php","hash":"fc00b31fdc28e7c92b54af8199070afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/CreateComment.php","hash":"ee2df15dee04492a340653138d5dfd9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/CreateComment.php","hash":"c8d127cf1a90a310c7f7779dd5de2ac7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/CreateCommentTest.php","hash":"1954213bdcf6a8fed39ccbe7af85fc77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/GetComment.php","hash":"9673a9442abbe1032612bba9fd14611d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/GetComment.php","hash":"175b4468eba55c30dabd8b4edca3afe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/GetCommentTest.php","hash":"0875c71dc10dd69ac7e5b45da4728523"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/DeleteComment.php","hash":"daa40371b808070ab214db3660772d31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/DeleteComment.php","hash":"b1854b29c72036608fa552c9a909389b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/DeleteCommentTest.php","hash":"64aef6f91d62f76141666d66d3adcdad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/UpdateComment.php","hash":"026e6b8a61cff05aa11f29d8446f1b97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/UpdateComment.php","hash":"956737b7730ee4ba71c2537e94e67232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/UpdateCommentTest.php","hash":"b01b624d2bb922ae9e04bc62dcb54352"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListCommits.php","hash":"b5dd595f649ee8eccef129cb6a47315e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListCommits.php","hash":"474591056c28cdd16c16c9e2b77aec8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListCommitsTest.php","hash":"01243c685a5af8264da24ae21e6d14c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListForks.php","hash":"b303c95b30045a0904d7cf5190119abd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListForks.php","hash":"e9641d0b2b45d18314952eed2b693981"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListForksTest.php","hash":"620fe42e93ddca962559f28e3225381d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Fork.php","hash":"5de2e7ecd5b8efb3c89ee4f752ab7526"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Fork.php","hash":"5eafe9b69aab74042db1a00a16f5747d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ForkTest.php","hash":"7bdb7e9f22c659d1da7583ffe18d57cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/CheckIsStarred.php","hash":"609188f4577be140b5b6e0d17b323058"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/CheckIsStarred.php","hash":"961d6386e23c754500708cc40aa49972"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/CheckIsStarredTest.php","hash":"bcfb02d2c3b25ec842ce053e85552c33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Star.php","hash":"d51b6c737ee1637f14d39975875c02ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Star.php","hash":"4725e815814d56065bf5dde209ca7912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/StarTest.php","hash":"f298aa9d9068041f5e3281afe6742ffd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/Unstar.php","hash":"a77bd04168dbcc0783cf09f23ebd681f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/Unstar.php","hash":"8f21ae7e281b55c7b18b0d3b4fa1262a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/UnstarTest.php","hash":"240f67d4a448ba1e532d1305252e1f52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/GetRevision.php","hash":"0e5a7b4da5e25dde0e716aff76534583"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/GetRevision.php","hash":"9cd348e2822429aff2658d1a2f73c7b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/GetRevisionTest.php","hash":"9b10f6ecdcf306adffe869ff3dedf87c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gitignore\/GetAllTemplates.php","hash":"a36b2233a6c2064f3285c4768b1b9f72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gitignore\/GetAllTemplates.php","hash":"5be4ce47e9b748c9b227129b37740f4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gitignore\/GetAllTemplatesTest.php","hash":"2f76851d87267718a83d94139a30cc4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gitignore\/GetTemplate.php","hash":"0fcdb904c9dad99cd715d43c4f958d39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gitignore\/GetTemplate.php","hash":"cc417b10786a3ae020dcabd216b082aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gitignore\/GetTemplateTest.php","hash":"5423b9e3f37fedcadf4e33ec613455f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListReposAccessibleToInstallation.php","hash":"434bc1a59ded1fb745c6e35e34810757"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListReposAccessibleToInstallation.php","hash":"e03f3bed21b3b28be41d75f33364d918"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListReposAccessibleToInstallationTest.php","hash":"c48d80d82662414f8fb800b24ec76475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/RevokeInstallationAccessToken.php","hash":"4c87b2a1c9cd2d927362a53444b834ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/RevokeInstallationAccessToken.php","hash":"d83aa6a029430c49a0562ba0a0c0d624"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/List_.php","hash":"88435afe9688b6021d362b551af8b992"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/List_.php","hash":"17e2bac802b14310e9f69bf5bbbf1c98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/List_Test.php","hash":"39953fba4f950067672069feeed24884"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses\/GetAllCommonlyUsed.php","hash":"4dc211f5e0f3dd390c97e24fe573d220"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Licenses\/GetAllCommonlyUsed.php","hash":"75eee7f1be20e2b2b749840a858f0118"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Licenses\/GetAllCommonlyUsedTest.php","hash":"5e9f0e3f5b52213cbffb62c161f0baf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses\/Get.php","hash":"dff6f39b1b2f2fc670999b0580ff4ba2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Licenses\/Get.php","hash":"88954e3a4029c256ffa5e74295c9cf40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Licenses\/GetTest.php","hash":"ea3e0ae361c7c6db2e8eb4585c1e0ece"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Markdown\/Render.php","hash":"bf570bdada7f6ac7445591c43ce80985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Markdown\/Render.php","hash":"f7eae221429140aca18a0791fb9a3c32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Markdown\/RenderTest.php","hash":"31a8115145dc68f4ba14f2a4aad0982c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Markdown\/RenderRaw.php","hash":"0d59716a70c67f74eb94155eb3217a03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Markdown\/RenderRaw.php","hash":"a370645fd82101e4478caf472326242c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Markdown\/RenderRawTest.php","hash":"023c7ec5befe4dbc3be0bbbbd6a2007a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetSubscriptionPlanForAccount.php","hash":"1c3d04249ee3922975bab55d92eea5de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetSubscriptionPlanForAccount.php","hash":"c12028bf42a06e288d4a5271be0acc2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetSubscriptionPlanForAccountTest.php","hash":"c74e1fbd6f2ba80a8b06cf11bbf93236"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListPlans.php","hash":"39affa1797ca7be94a63b2bbbe7d2e45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListPlans.php","hash":"56f5bce95bdb91d995cecdfd61a5e079"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListPlansTest.php","hash":"6fffaf216a995749b59865fcfd4b5138"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListAccountsForPlan.php","hash":"0aa1372d78139ac96c62302346edfe4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListAccountsForPlan.php","hash":"5d495b57abd475f6fb14b9b1b44c7b7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListAccountsForPlanTest.php","hash":"65455d481b902f42efe0d6707e594b40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetSubscriptionPlanForAccountStubbed.php","hash":"3579f4561c00cab43f69632a0bc18fec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetSubscriptionPlanForAccountStubbed.php","hash":"92f4e1fcccaad4bed57fee9a6cccd69f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetSubscriptionPlanForAccountStubbedTest.php","hash":"e89c65c5b33d5bfe58875a57bcfd7e69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListPlansStubbed.php","hash":"d90c980e668eb050d0ec79d33e4aed2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListPlansStubbed.php","hash":"abf1fda89a95c9170f524481cb6de652"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListPlansStubbedTest.php","hash":"9c5902060c798d35d80d7ebb13bf8045"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListAccountsForPlanStubbed.php","hash":"ad22d6fcebcc17111894a90e15887b96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListAccountsForPlanStubbed.php","hash":"73dc13367383b62667035868333076ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListAccountsForPlanStubbedTest.php","hash":"3a41e8f6332747290681217895db67e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/Get.php","hash":"644ac0a85d2d24aadef2ef16bee61d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/Get.php","hash":"91b891761c2b09fdb313abcb25546493"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetTest.php","hash":"54d233715b465d49a88eb591fe5c8267"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicEventsForRepoNetwork.php","hash":"a294bcea850d6d1668171585178d8dac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicEventsForRepoNetwork.php","hash":"c6dee0ad079a946759189147e8e0eb48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicEventsForRepoNetworkTest.php","hash":"96f67d40da7620537dac327571b743b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListNotificationsForAuthenticatedUser.php","hash":"9c7dad5993bdd999c06c339229d4eb27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListNotificationsForAuthenticatedUser.php","hash":"1a1442e53c7e9c3bee93cdf92a7533ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListNotificationsForAuthenticatedUserTest.php","hash":"5668dd53b30f4f3e68815c8c3d34ca20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/MarkNotificationsAsRead.php","hash":"3ebc7da750c7f21807bd712e34b24e5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/MarkNotificationsAsRead.php","hash":"484cc07e5f579d378583f96f23362f88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/MarkNotificationsAsReadTest.php","hash":"edb59030694f0bd74a9f62fc67528274"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetThread.php","hash":"1eca7156f595c54d6a9bc26bb399be22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetThread.php","hash":"88f0cb5fd3ecea81928444ab41e42b70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetThreadTest.php","hash":"d9a1a9c3b550c5854d71fdc8798e5279"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/MarkThreadAsRead.php","hash":"b7972deab805cca4414a766585be50b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/MarkThreadAsRead.php","hash":"38192274fef8f8c6f19f7b995d2d0604"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/MarkThreadAsReadTest.php","hash":"6b0e664bfdf5aac8b2088a752112ca88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetThreadSubscriptionForAuthenticatedUser.php","hash":"79ab6c6ea666406ec8857493bdc041e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetThreadSubscriptionForAuthenticatedUser.php","hash":"b71d167999e564f52977d4d8b71c3995"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetThreadSubscriptionForAuthenticatedUserTest.php","hash":"49708a4a973a1fe6b870acf3c0f47b56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/SetThreadSubscription.php","hash":"a08e931b072bf06daf26fb812673cfaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/SetThreadSubscription.php","hash":"d750efe3ddf38d42f130e19765f06118"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/SetThreadSubscriptionTest.php","hash":"1afd85ffbf80b1f9cf2b81e0576c6d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/DeleteThreadSubscription.php","hash":"d744f9ccb9dd6cb2b82b758e25284fc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/DeleteThreadSubscription.php","hash":"259512d2f6d1a1d8bfa404ac9f61a6c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/DeleteThreadSubscriptionTest.php","hash":"b4963cd7804fac98554d9fa732416302"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/GetOctocat.php","hash":"f9927fdaa105bc388ee6742cc23e8369"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/GetOctocat.php","hash":"e33acf04a1d0dc200d17346cfd69ef87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetOctocatTest.php","hash":"04f8a37f3274dc6e303ffb3022a02617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/List_.php","hash":"9b2e6a4174231f0c150fa7bfcb2c24f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/List_.php","hash":"542710dfc51662d3578522a5591ddb28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/List_Test.php","hash":"fc5b6a41a4980e6939c07b77cac84ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListCustomRoles.php","hash":"0b0823bb6fb6bfb18fc3096950bfd84f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListCustomRoles.php","hash":"34cf7105e057b0e301807f06e74ec424"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListCustomRolesTest.php","hash":"f2e27cb81497497e9c40f0e8aa3c4502"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrantRequests.php","hash":"b2b1561f4866a811f06af53272422934"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrantRequests.php","hash":"46a9dcf496fd11f1a750327c52f69faa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantRequestsTest.php","hash":"5e7a0de0ae00ea27c4ef6dc0b5c42a53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ReviewPatGrantRequestsInBulk.php","hash":"05a581fcab082a0bcebd1d6ee2538015"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ReviewPatGrantRequestsInBulk.php","hash":"5e1b0235a20cf2171d0f8542d0198288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ReviewPatGrantRequestsInBulkTest.php","hash":"0397abba8f11974f98fc519f56adb108"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ReviewPatGrantRequest.php","hash":"8438280256f7384d39e9f305ee8dd302"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ReviewPatGrantRequest.php","hash":"237ac3a09d5ce5d88310e5ea29e9ab23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ReviewPatGrantRequestTest.php","hash":"458b13ebd78080626aeb0573476d6187"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrantRequestRepositories.php","hash":"3b892b93d974308a5765b53e5795fcf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrantRequestRepositories.php","hash":"00cc8fc17d3500537e00d2a1a1785c1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantRequestRepositoriesTest.php","hash":"22719a5c284b30259935cd304d7a87c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrants.php","hash":"fae39925c2944fbbf0596be2a1324ff3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrants.php","hash":"36e95b85e4e85925ba750538f1a7017d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantsTest.php","hash":"c6e8c8caf50d7fca92270d1c2543160b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdatePatAccesses.php","hash":"b59d2ad0c5221e788ef9cfde841f6866"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdatePatAccesses.php","hash":"3c0ab796a99532f6601e82b2f3713345"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdatePatAccessesTest.php","hash":"766dca5099d4d763bbfea52141cd1a52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdatePatAccess.php","hash":"921ca43ee8d13d29d35590431c021b2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdatePatAccess.php","hash":"93ef02e6fc466c9f487060d23b920fbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdatePatAccessTest.php","hash":"3b31e2354243385fcb441d4727c573fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPatGrantRepositories.php","hash":"1d7c150d839926e118d7870a71605c9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPatGrantRepositories.php","hash":"f61c6e15f42bab9e67c8636cc2314bcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPatGrantRepositoriesTest.php","hash":"fb57c061eabda7613ba3c013e9dd38c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/Get.php","hash":"cceb2cc238a53b896ea0c5ca2a679bb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/Get.php","hash":"2273a5e6f506314992f055298b9734d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetTest.php","hash":"aab387427c936a05f1ff146675dd1740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/Delete.php","hash":"2963ddc8e7bf785e3696d045792e000a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/Delete.php","hash":"7fe5e29f6a260feb63188a81c6407443"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/DeleteTest.php","hash":"0331bb572cdf8b7f5686bb22a38e5c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/Update.php","hash":"b0477f2f07780920cd5574cf321a213f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/Update.php","hash":"f77718452398fbb6066a7c022f13f54c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateTest.php","hash":"ef6b722b4e983c5f5359eed6f0250ea8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsageForOrg.php","hash":"3bff8e90d13e884f30aa43b4129471c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsageForOrg.php","hash":"c906edb892e8d1724bd33e0e8d91f72a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageForOrgTest.php","hash":"8e3702cfa3e1f61d88e4c1df87406019"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsageByRepoForOrg.php","hash":"800faf68d02d42909e9bd413a5bdd1d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsageByRepoForOrg.php","hash":"a278fc3c1c35568f0048b6864e45d41f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageByRepoForOrgTest.php","hash":"23b2d11fe1389052be1e4d80c1b43b58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Oidc\/GetOidcCustomSubTemplateForOrg.php","hash":"7477df0938832aeea9a0766aee4df3b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Oidc\/GetOidcCustomSubTemplateForOrg.php","hash":"7e21cf8ce82a015ca58b67fbe37456c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Oidc\/GetOidcCustomSubTemplateForOrgTest.php","hash":"9da12d84994a3d8bc831459867244f3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Oidc\/UpdateOidcCustomSubTemplateForOrg.php","hash":"a5e7725296f844a10ecbbc43446e8e15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Oidc\/UpdateOidcCustomSubTemplateForOrg.php","hash":"f4e972ad976f02b7138ef32e8f1d67f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Oidc\/UpdateOidcCustomSubTemplateForOrgTest.php","hash":"88ad7331b44c7fb6cd7a3826a20dc7c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsPermissionsOrganization.php","hash":"7053d1ccd5ee4525f4c920786795e99a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsPermissionsOrganization.php","hash":"7b8720978e40c0d1bd6f65376e6de755"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsPermissionsOrganizationTest.php","hash":"db2f4a25d551f23ac92a45bf3b9d577b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsPermissionsOrganization.php","hash":"7275833842c43c6fc294821710eb81f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsPermissionsOrganization.php","hash":"7c093cb7f5ed1a359b6aabec410d7d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"fa6cf6f4bca256002d8497ff51c8db3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"772702d598e11f9fae3cf7a5d4e555be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganizationTest.php","hash":"410f83812d605c76a085d0191060ff62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"b1f24a02d474cf69a65b246d2650f66c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelectedRepositoriesEnabledGithubActionsOrganization.php","hash":"02336f5a0fad5ba993f1e9ca05de7456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/EnableSelectedRepositoryGithubActionsOrganization.php","hash":"123af250946d6af5d1793abb4b73b0c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/EnableSelectedRepositoryGithubActionsOrganization.php","hash":"7969b5ee1b1de273b2a71df6738e29eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DisableSelectedRepositoryGithubActionsOrganization.php","hash":"1d53246a4e9e0f6c04dfe4302b0e73bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DisableSelectedRepositoryGithubActionsOrganization.php","hash":"97dbf1cb2edcb607dc9cdec4ade26f75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetAllowedActionsOrganization.php","hash":"26f3b594aa9ca66da79af4339638562f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetAllowedActionsOrganization.php","hash":"a2370b24fe106d7de03e0f6354593b41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetAllowedActionsOrganizationTest.php","hash":"0f2f666ea4dc5258942e25658412ab78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetAllowedActionsOrganization.php","hash":"787ededa50e476f37d2810de325f958a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetAllowedActionsOrganization.php","hash":"b5e7504f8c8d8f204c33674a53ab8618"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"95068b3bb7b0138a23401b1b85008eb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"ffa6214afc27aab20c42dbbbc6d68296"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsOrganizationTest.php","hash":"f14432793986803fd55aa052d6e0c96c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"50c10e18c1dcc5afbe3fd64e7474f76f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsDefaultWorkflowPermissionsOrganization.php","hash":"9581c9f2c0b04f6a6552da99123f93e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnerGroupsForOrg.php","hash":"d6a72b0aead4b8aebddd8fe287f30bbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnerGroupsForOrg.php","hash":"402f1e7faf84a62719f695750313e2e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnerGroupsForOrgTest.php","hash":"7602d0505eeca170b36b454099ab9be4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateSelfHostedRunnerGroupForOrg.php","hash":"7da663314297c4dccade43904d5b131b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateSelfHostedRunnerGroupForOrg.php","hash":"c40c9420b33202fce8d2b4e8086f498e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateSelfHostedRunnerGroupForOrgTest.php","hash":"3115b006fde6af1a422ad6753637a562"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetSelfHostedRunnerGroupForOrg.php","hash":"7210e25374c5cfb768c0f8aaa96e44c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetSelfHostedRunnerGroupForOrg.php","hash":"73776a47080b69c6c317d63a9e3e6aa6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetSelfHostedRunnerGroupForOrgTest.php","hash":"d1b0bdd610013951eeecd5045c334e9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteSelfHostedRunnerGroupFromOrg.php","hash":"7406e40a8daea774153a7d0e563239ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteSelfHostedRunnerGroupFromOrg.php","hash":"7e3b4afe40c0f7f903a9d12355fa5aad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateSelfHostedRunnerGroupForOrg.php","hash":"f71c89f6e8fe06b22ec11eb5fae87aaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateSelfHostedRunnerGroupForOrg.php","hash":"2d62056b7610bb9a8e40b6cfe013709b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/UpdateSelfHostedRunnerGroupForOrgTest.php","hash":"9c30320f641f82b64908fce0b67066cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"7c07e49c8e382d3035e20922e6d02493"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"2cb45dab6dc1202b3f8eeca04b9b28ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrgTest.php","hash":"d619f364dd03fb1ef657b4024742903d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"1ea8a2ef05489eabbb63ac322a9c4a3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"1af0f1aadf8dd53622df42235870af49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"cb2d75bac65eb0861847fbb94e1a7c65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"34f72fc742aed49a19c6e55a6825b046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"d0013b87e589159e3707f751175b9475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveRepoAccessToSelfHostedRunnerGroupInOrg.php","hash":"4b4b6759e01e0ebd079fb8d8b925d300"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnersInGroupForOrg.php","hash":"14b0b211c7c9fea9f62f34a3fbbc4996"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnersInGroupForOrg.php","hash":"93e059af534cdd4ac881ec7778a18e10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnersInGroupForOrgTest.php","hash":"dd4739d52b0ff3d8c56f97a87a57068a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelfHostedRunnersInGroupForOrg.php","hash":"20a7ff0c49dc3f6bad9ae003b8668ea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelfHostedRunnersInGroupForOrg.php","hash":"e6ae8148ca7458106fc29cd25768a604"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddSelfHostedRunnerToGroupForOrg.php","hash":"3aa89bdaad0dd9885c57710bd523886e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddSelfHostedRunnerToGroupForOrg.php","hash":"52d0ad18a72050308e8fb75ff619efba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveSelfHostedRunnerFromGroupForOrg.php","hash":"77b78791730ab86039b3a3f35e0cce29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveSelfHostedRunnerFromGroupForOrg.php","hash":"77a513e0b7cfb652606dbdb218dbe0bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnersForOrg.php","hash":"bd08f589e5a04126cb6ac423928cec3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnersForOrg.php","hash":"b5052efa8c9b2a2fb9430b94dc9b1eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnersForOrgTest.php","hash":"cf3ec03d1207aaebdc6764fbde90c821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRunnerApplicationsForOrg.php","hash":"a4fb5e6855f3fa719e2ff1c6f76b5769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRunnerApplicationsForOrg.php","hash":"5d559c79632fafe80eaa7f73e32b6bed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRunnerApplicationsForOrgTest.php","hash":"a67c58ebf83f20c09ea2fb7e2cd7b4c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRegistrationTokenForOrg.php","hash":"961f4d388d2024b65328e32b5c9cc8e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRegistrationTokenForOrg.php","hash":"c6545148af5b21fd6c0d2f767c41eb8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRegistrationTokenForOrgTest.php","hash":"16dd3ce227fd45aa8211b0c84547b7ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRemoveTokenForOrg.php","hash":"34d584edfb99192ee5fb4eb282902121"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRemoveTokenForOrg.php","hash":"fbb8c91f4a0906b043adc81bea386bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRemoveTokenForOrgTest.php","hash":"42db56b52c49cd83e3775d813ae1309e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetSelfHostedRunnerForOrg.php","hash":"458ff2a616df4ecef660009d079b081e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetSelfHostedRunnerForOrg.php","hash":"90c57bda536a8368533c182c3adfa154"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetSelfHostedRunnerForOrgTest.php","hash":"76248ecb00cdde38126c218122ff591b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteSelfHostedRunnerFromOrg.php","hash":"8feaf1cbc9091972ed496a2ac1382fb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteSelfHostedRunnerFromOrg.php","hash":"5f38c18a4c1a37f3768914bbbf4728f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForOrg.php","hash":"29238da547bc1567e5f551abf0a8415c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListLabelsForSelfHostedRunnerForOrg.php","hash":"413bdda44fd4b5adb31d5775269abab3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForOrgTest.php","hash":"852c6b4d6ccd867f6f35961a0631993a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrg.php","hash":"a35c53d79e0a2a9b9567c1d944b93fcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrg.php","hash":"e9cc51cc9da3b5906209abb97f4e7d56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrgTest.php","hash":"fc52cecb583300810e463076dc60f47a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrg.php","hash":"2e370cd82c6d06b1cad86d3ab70462a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrg.php","hash":"eab0a45371df5b2c8c29942eb7e3d4c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrgTest.php","hash":"5edc39a7a1931135f2855c4e680a80ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg.php","hash":"3d17a69be040bee2cfccca188457ce0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg.php","hash":"9b1144b4cee5ba916ad9890d257b7605"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrgTest.php","hash":"14383daba44747128879e0e647de64ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForOrg.php","hash":"5399bf1f7dabfb356eb8b3bb61abe404"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForOrg.php","hash":"80fc98b73871716dd18fe2db788369ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForOrgTest.php","hash":"d0dd6679800d28b180968fcefadfbdce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListOrgSecrets.php","hash":"cca843592d6f88d1660e66f4a4a28188"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListOrgSecrets.php","hash":"69c9557294c6cfb1bfbabf26c96cfb6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListOrgSecretsTest.php","hash":"2388349590fabd3fc65018984d829d2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetOrgPublicKey.php","hash":"919d11d9e99cdadfe32d8af98fb36319"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetOrgPublicKey.php","hash":"173b73c2bd47c2703d33f5d1442eba8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetOrgPublicKeyTest.php","hash":"d5d9f0a051e8ad2c9670bb247283ce15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetOrgSecret.php","hash":"33054af2f35fd150e1f04165be0c2857"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetOrgSecret.php","hash":"385c9174eb9cb6db8630a87c2fb46d90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetOrgSecretTest.php","hash":"37c331ad645668508502df3a3ddc3572"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrUpdateOrgSecret.php","hash":"d425c3d7dc2aba7fea3ed895b1a450cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrUpdateOrgSecret.php","hash":"c10e5bee49be229764b63c75b44a01ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrUpdateOrgSecretTest.php","hash":"2eb306bd27b6713c8e8ba19f51e96cc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteOrgSecret.php","hash":"d6a7e75b9ec02170e367cd58ca9fd08e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteOrgSecret.php","hash":"e206abf64e375a1a35a292733d574fda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelectedReposForOrgSecret.php","hash":"0ae57bd36bc86d53bf3a1821aa1e874a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelectedReposForOrgSecret.php","hash":"3f61682a30b986a8abb26773019a89c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelectedReposForOrgSecretTest.php","hash":"eaedc506e2daef755caed1463af21a2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelectedReposForOrgSecret.php","hash":"6bc0fc90c5feae7185fee9e3a3e737c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelectedReposForOrgSecret.php","hash":"498bba042a6dc48b387ba1a5a553fe8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddSelectedRepoToOrgSecret.php","hash":"8349c63d337c0a0cbd5bb6329875fc37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddSelectedRepoToOrgSecret.php","hash":"833b6316585f7054d602adc1729b5a70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveSelectedRepoFromOrgSecret.php","hash":"9ed15d6233a3e1c168f247175866bccf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveSelectedRepoFromOrgSecret.php","hash":"3c4f9ba8d89d80b5233ce547822602a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListOrgVariables.php","hash":"3ad069eae5a6392f8d3ad4a338b64e33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListOrgVariables.php","hash":"878560959f82976c5f4fa5025bfb0fcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListOrgVariablesTest.php","hash":"5caccab5829151d7df28be8b3c21e130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrgVariable.php","hash":"8ffbec32785e263f93dc0c33fb6571da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrgVariable.php","hash":"296d48d42b02b036fbf2bd33d96b1744"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrgVariableTest.php","hash":"a837844e1be0fadd5da9b672a13f5dda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetOrgVariable.php","hash":"4605848142bf2fe6c29de0e2da9a4dbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetOrgVariable.php","hash":"92be1205126a21ad365ada6a88e50ab8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetOrgVariableTest.php","hash":"196c6fd2edf9f1d9bed1ae56ce949a55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteOrgVariable.php","hash":"e9de03e61666932775137b080cddf905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteOrgVariable.php","hash":"4905b703d9143be622b15dc705f515a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateOrgVariable.php","hash":"0ff7c44d4875b169eb31dbbb6f0ecdcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateOrgVariable.php","hash":"5fd002bc41fe01783b79e38e13740be4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelectedReposForOrgVariable.php","hash":"277e16c124d850d3b5b01e75d21e90b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelectedReposForOrgVariable.php","hash":"b29a235638a7da8622ca65b44049428a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelectedReposForOrgVariableTest.php","hash":"35e4956fecf4ffb9a38703a4125a4858"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetSelectedReposForOrgVariable.php","hash":"b97803a52fe63bf4f08bdf9e5056ff9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetSelectedReposForOrgVariable.php","hash":"8cad1ab590dcaea5733c2493b9190895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddSelectedRepoToOrgVariable.php","hash":"4e74eae14f7404cd353c3bdbeaacb91f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddSelectedRepoToOrgVariable.php","hash":"9e5998b102c31c325d42ec6c286e4892"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveSelectedRepoFromOrgVariable.php","hash":"5b6ecce44e4efd0d37bcfb7569796c0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveSelectedRepoFromOrgVariable.php","hash":"8503604cf17c78aaee8c7c9fddcf336c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForOrg.php","hash":"7f1061a74c0394a992cde950dde34514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/GetAnnouncementBannerForOrg.php","hash":"1a6fe4ac80946883a0f7f307a2d37d44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/GetAnnouncementBannerForOrgTest.php","hash":"73dc007f0d46e3969ab6edec328c1fe2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/RemoveAnnouncementBannerForOrg.php","hash":"365d25733213044cf754b4d12aca55ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/RemoveAnnouncementBannerForOrg.php","hash":"0857a3557fe52156fb3e4a86b648b3ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForOrg.php","hash":"69645d060847f2553cb516e6961fe30c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/AnnouncementBanners\/SetAnnouncementBannerForOrg.php","hash":"ea0a5f89f6e648fde4fb79f1fd7c7e70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/AnnouncementBanners\/SetAnnouncementBannerForOrgTest.php","hash":"1378dddbf1ae65da289dfab28fbde37d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetAuditLog.php","hash":"817dc0b8a9664e93dacae9df85e4fb25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetAuditLog.php","hash":"b52b62b05aa6a10423192a87cf3d4f11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetAuditLogTest.php","hash":"ee9bbfe8581a9a9be689eb8643f07062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListBlockedUsers.php","hash":"5612df09ee9918cf5e85b4bb75c9f8b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListBlockedUsers.php","hash":"ca14488e2cd14fcd4fe6bb091fb09471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListBlockedUsersTest.php","hash":"207d5390601fe0f78cca362e46624005"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CheckBlockedUser.php","hash":"0aca156f28b65882af6213ca4ee24ac4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CheckBlockedUser.php","hash":"ab53abf9dad7318111665990f10ffd31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CheckBlockedUserTest.php","hash":"70e8113c4ebe685db8702b4c32965b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/BlockUser.php","hash":"6a9c35d5c412f6a412506ff1430dbfd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/BlockUser.php","hash":"835f05961e794e3fdaaf50db3f2e1712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/BlockUserTest.php","hash":"4a88611e3cedbdcc5e04e679235135a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UnblockUser.php","hash":"11144f00c53ec14d5b1bdd73e2ca2f08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UnblockUser.php","hash":"6e590a48abc40c196c101377754c23d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertsForOrg.php","hash":"e5639b455b527469fa3f87a2afbcf8bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertsForOrg.php","hash":"ae8a0e426ff5be1fb6be6bb15b82527c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertsForOrgTest.php","hash":"5ca5c2cbb694bafefb87f1d8d8221de1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListInOrganization.php","hash":"124a22fa05cb110b8c79e377230d67cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListInOrganization.php","hash":"4849c1223b9fceb16e69ce8019f04e11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListInOrganizationTest.php","hash":"af247c0c36bb26f9fb2c7c3e4c73332f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListOrgSecrets.php","hash":"ed1dcd86038fcc5117a7f8d1a9e0c1ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListOrgSecrets.php","hash":"9adaca59bc62d7bbbfa554cc5f787105"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListOrgSecretsTest.php","hash":"266c4e8a3c320b3d32f07624517a42b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetOrgPublicKey.php","hash":"4f5fdead3adf7a82be159c86b103fc58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetOrgPublicKey.php","hash":"b9084b8925c643f938f8ea67430efde8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetOrgPublicKeyTest.php","hash":"c22152d3598876aa806adecd8c8e0654"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetOrgSecret.php","hash":"365ba81838612bd8160b4e6ec61bd304"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetOrgSecret.php","hash":"4965059acbd50da9dd20c0f0f9db8323"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetOrgSecretTest.php","hash":"4a3d9ba113f85d0b2dd5ab61a143093c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateOrUpdateOrgSecret.php","hash":"098050f03195485ac87f3df346d2ccb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateOrUpdateOrgSecret.php","hash":"7368504f1e21969762a971901368991f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateOrUpdateOrgSecretTest.php","hash":"475e7b16b5296d3a9f87bb3799400931"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteOrgSecret.php","hash":"0d1c1d6bdcfff7b107958118028e8740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteOrgSecret.php","hash":"99d3a9061a65403a45bb6bd01b2dd3bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteOrgSecretTest.php","hash":"f016345d5735989e7d5cd03a52095b16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListSelectedReposForOrgSecret.php","hash":"3c1f54ad27a11cd55f3e86b77b1e1f4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListSelectedReposForOrgSecret.php","hash":"cc3e1cdc896408186bb65d2be04482b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListSelectedReposForOrgSecretTest.php","hash":"f1e99a657f5ab640984f00f9c53393f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetSelectedReposForOrgSecret.php","hash":"f62698e654a0b738fbb0c931d018d96f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetSelectedReposForOrgSecret.php","hash":"8ba4926e391d1e627202554e9c53707b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetSelectedReposForOrgSecretTest.php","hash":"e99bb411591f282d43171c93c17080f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/AddSelectedRepoToOrgSecret.php","hash":"56d6742d217a79a366ec5a3c56ebd5e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/AddSelectedRepoToOrgSecret.php","hash":"ac3433384e8fabce722520c83b1fe850"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/AddSelectedRepoToOrgSecretTest.php","hash":"be000b0e2b2f39d4843dcc70e0f2526e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/RemoveSelectedRepoFromOrgSecret.php","hash":"03436e2d4276c23654c40179b0d5762b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/RemoveSelectedRepoFromOrgSecret.php","hash":"95a5c6b43c0d6400e9d3068d47c5eb3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/RemoveSelectedRepoFromOrgSecretTest.php","hash":"a935990a9c89bcc8f861cd9e151df6f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListSamlSsoAuthorizations.php","hash":"8dd1ea2bae756e4c83360528657a771e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListSamlSsoAuthorizations.php","hash":"886c0ad4d08d6a7f197f407819e0a69e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListSamlSsoAuthorizationsTest.php","hash":"e18f087ef8484375646511eccf46d7c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveSamlSsoAuthorization.php","hash":"e44c22b32a4c4a949d15949b888303be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveSamlSsoAuthorization.php","hash":"b78d3f0817202c3b31a6f970e2411df4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveSamlSsoAuthorizationTest.php","hash":"2fab652e5058d2a4699714c63ce4b554"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListCustomRepoRoles.php","hash":"512a00d44d95436fc2f1278f38ddb630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListCustomRepoRoles.php","hash":"17a58ce4a178b3bbc049754ccec085b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListCustomRepoRolesTest.php","hash":"f8b62017b1e217c2bf0c8034ecc53e79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateCustomRepoRole.php","hash":"171e14ef5adb70a32ae78f7b03275a5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateCustomRepoRole.php","hash":"0e258b82feb80df85e2b0c4a39fb4bcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateCustomRepoRoleTest.php","hash":"3d91b0f6ce4a8706bad568aa822e92d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetCustomRepoRole.php","hash":"967d232e6c4a77b6182f0dca246847de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetCustomRepoRole.php","hash":"85799d5d986ae3d85c676396b53a6082"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetCustomRepoRoleTest.php","hash":"73abe59a400cf6a787d13d3de073b046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/DeleteCustomRepoRole.php","hash":"a53f5ca6597571e86dc643473a2f2c30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/DeleteCustomRepoRole.php","hash":"fbca9f688370ec2915ef2b8d611f5ac7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateCustomRepoRole.php","hash":"49b0049a3c5c8c860f139cd5a21dc54f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateCustomRepoRole.php","hash":"77e5dd8d12f41552c08046b0ca687b0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateCustomRepoRoleTest.php","hash":"0e8ec9d9384f03c7a8078c2800bc30e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateCustomRole.php","hash":"51fda91c4fff1205d6b8403b2a81dd2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateCustomRole.php","hash":"16068d8cc559ea23839f8c4a060960ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateCustomRoleTest.php","hash":"15aaca6bb4918ae0d956586e25bf2b6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetCustomRole.php","hash":"126f16c5c43e4cdc8f82eaabe23bf0bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetCustomRole.php","hash":"16d84711f3bd88e482b91ce514ce0cbd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetCustomRoleTest.php","hash":"93d2b656201969e5840b80cf19a01b20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/DeleteCustomRole.php","hash":"7e3c7b0bdc409b55ff0a45dad490ec62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/DeleteCustomRole.php","hash":"f860c2a6a40af98ce6093a63a19e1ca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateCustomRole.php","hash":"a1d68837ef5c99e0d4a06cbc365f1b95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateCustomRole.php","hash":"31bbd1a7ae8470f25c06073eba08c07d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateCustomRoleTest.php","hash":"6968367130cf1aa6b051e5d91621fac9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListAlertsForOrg.php","hash":"37c0d555b665fc0f1581b828bc945f3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListAlertsForOrg.php","hash":"ac07ef09dc1c415f7c44cc58bce6000d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListAlertsForOrgTest.php","hash":"66353f78a20427c057e43d09de8488ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListOrgSecrets.php","hash":"db1eb818bbc5f875b17485a35a89cc12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListOrgSecrets.php","hash":"449626c352be2e63bdd460f6206d4120"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListOrgSecretsTest.php","hash":"9d48c7faf987a30ffbdfb5dd1cde73b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetOrgPublicKey.php","hash":"a4e3244c582af7529758fdb3ef50f31c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetOrgPublicKey.php","hash":"62f283d660d3ba2dcf45fb10a8a25c0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetOrgPublicKeyTest.php","hash":"332e5ddf33a2ddf91c1d32efc2a6c921"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetOrgSecret.php","hash":"89a867c423f62d855ae712e7f57493b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetOrgSecret.php","hash":"6536c1633087a8dfc2bdee1579bc8204"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetOrgSecretTest.php","hash":"903f71d6c610cfd91b9a9017850ce05c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/CreateOrUpdateOrgSecret.php","hash":"0208fe0bcd07f84aa67d811fed5b86d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/CreateOrUpdateOrgSecret.php","hash":"2516c10ef4b09115471833e36091a47e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/CreateOrUpdateOrgSecretTest.php","hash":"883486efbeaf544a2d62236c924bde79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/DeleteOrgSecret.php","hash":"8601df826ae4ba6ee956b5cf6f72dbad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/DeleteOrgSecret.php","hash":"bfeef937c3f2283bb0ad01cb5afb4c56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListSelectedReposForOrgSecret.php","hash":"13e653af3764663a20a204e5b3025ff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListSelectedReposForOrgSecret.php","hash":"5248731700a12d889c5f9c879c570274"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListSelectedReposForOrgSecretTest.php","hash":"7365c97d4aaf66522b1c889cba2938e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/SetSelectedReposForOrgSecret.php","hash":"95abbbc128f6f605ad5cb83fab385128"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/SetSelectedReposForOrgSecret.php","hash":"76d0fb7a6e7f59f6192bd40572bb1de6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/AddSelectedRepoToOrgSecret.php","hash":"320abf3285a01a298a1ae669030cb2dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/AddSelectedRepoToOrgSecret.php","hash":"eb63ff52f823bee4affc5166f529375c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/RemoveSelectedRepoFromOrgSecret.php","hash":"5f0be269194664dabce7e452425517fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/RemoveSelectedRepoFromOrgSecret.php","hash":"d42714439c97334b98517da8a6940a51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForOrganization.php","hash":"2db3dea01cb301d9a2659c413875005a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListDockerMigrationConflictingPackagesForOrganization.php","hash":"c739e272f371d7808fda2ecd0e624a47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForOrganizationTest.php","hash":"3f2f4dd0e8a2093a0a81483d5beee34e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicOrgEvents.php","hash":"cba8ae4b486524713443b1a4fbc12b04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicOrgEvents.php","hash":"f36a622bd5f2a1edcb797c1c8c75b0f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicOrgEventsTest.php","hash":"8ec09150bcd26d962ff5816de83320f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ExternalIdpGroupInfoForOrg.php","hash":"d9e499f83f43899b871102d2b58fe719"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ExternalIdpGroupInfoForOrg.php","hash":"3cc3a1a75010e364fe2b6cd0848e4c07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ExternalIdpGroupInfoForOrgTest.php","hash":"78e59bab8e4cf9d7725f3be569b1ec75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListExternalIdpGroupsForOrg.php","hash":"ab3f1922812c020cf8c4de011bfb1087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListExternalIdpGroupsForOrg.php","hash":"8eb19edba03c2949e7f30e750abffcb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListExternalIdpGroupsForOrgTest.php","hash":"0a5035f86da41f840290c53ff1924194"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListFailedInvitations.php","hash":"82e8ce6b38968aff0d0819858a1ce6c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListFailedInvitations.php","hash":"3e478db46d9f6b3c155071f169015337"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListFailedInvitationsTest.php","hash":"f28b74e0b453f762e00cd3a8ab7a66e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListFineGrainedPermissions.php","hash":"52ae0a7e10afcd1e3a004b4708f9b1ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListFineGrainedPermissions.php","hash":"a099db64f7319ce851077058b96db7f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListFineGrainedPermissionsTest.php","hash":"b085c52d9a4ee9d70ad9bd4122133236"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListWebhooks.php","hash":"d4c50329727ee3448f75ef3c32a80adc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListWebhooks.php","hash":"d35eb93fecb0b0ba5f082657696fd1d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListWebhooksTest.php","hash":"e5ad203527042f798b7be71a8b803784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateWebhook.php","hash":"890b5375251ded47baa4ae3d00b9dc54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateWebhook.php","hash":"bda519d456f57b510678fb9f9f792dbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateWebhookTest.php","hash":"81e634fca61635ef66f4a0f20b254aa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetWebhook.php","hash":"175a7c85c6fb9b8d4aa620c806e92c6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetWebhook.php","hash":"3d8abf64155982c1f89e2d1abca8f779"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetWebhookTest.php","hash":"f6be2e41e13384a150b44cf731502fb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/DeleteWebhook.php","hash":"7983b7ae0020c68bd94a8b4a01afbf5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/DeleteWebhook.php","hash":"b611744f52823148e30195605d70965f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/DeleteWebhookTest.php","hash":"295a719b4c106f16d25d7d883d881b26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateWebhook.php","hash":"0e23b2ebe0eb617f75db9bc71983ca6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateWebhook.php","hash":"d7f3bca2f10172b323e97c553d505657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateWebhookTest.php","hash":"1ee970fa4d85bb1a8a13b0d6a4105c1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetWebhookConfigForOrg.php","hash":"b0eb65d1bcae9fd556d9086ddc7fbf2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetWebhookConfigForOrg.php","hash":"f783c7d0c6ff400289c664cd9a46d52d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetWebhookConfigForOrgTest.php","hash":"34f2580307101e04ca2a668734b97b4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateWebhookConfigForOrg.php","hash":"48d45e77e96e6366419e439cead8d3cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateWebhookConfigForOrg.php","hash":"b598063158150f90613c5cac63348a7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateWebhookConfigForOrgTest.php","hash":"13f5280324e8db5ee41abcda9a8241a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListWebhookDeliveries.php","hash":"83c1611264922ebf13b233e36471356e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListWebhookDeliveries.php","hash":"c7e4cea43f6a5fb76e9d6fad61d980e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListWebhookDeliveriesTest.php","hash":"63ad04fdfe18c39bf8a8c1d490b7e740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetWebhookDelivery.php","hash":"7bbbb9d1f3d53194459a48bdaaed312f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetWebhookDelivery.php","hash":"7772e1bc57d7450dd1a23a3380e46e36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetWebhookDeliveryTest.php","hash":"3368c72ffde1e1ea29dcae95bec81449"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RedeliverWebhookDelivery.php","hash":"a902fe7067bb819e906b4a8ae90a9771"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RedeliverWebhookDelivery.php","hash":"2fa69637bc9dadad21c628564eaed762"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RedeliverWebhookDeliveryTest.php","hash":"89d3fc302d2cd0d2d49dd51b9106b1ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/PingWebhook.php","hash":"65a7b1bd462b3ebac73cb6e541f73c1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/PingWebhook.php","hash":"c4c29a7f056b4266b882dd90e6a37699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/PingWebhookTest.php","hash":"798da877a321a784a9808cc5e1827b20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetOrgInstallation.php","hash":"e13312505b58d979fb4e960e68f68982"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetOrgInstallation.php","hash":"5ec9c357e64281d9c587e812a64e0612"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetOrgInstallationTest.php","hash":"1595a0d1cd894ef4e91f8120f872d44a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListAppInstallations.php","hash":"daf6159b4c8f3b8e5716cc75b6c7950e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListAppInstallations.php","hash":"554d7265ad88fe63e1f187a827fd5645"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListAppInstallationsTest.php","hash":"8fea128f3e22eaf449d33b7a36ee4552"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/GetRestrictionsForOrg.php","hash":"600985b25a4d3e8d11ee9ebb4aba0404"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/GetRestrictionsForOrg.php","hash":"a25b82e65b8b6670a3a52955f21875ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/GetRestrictionsForOrgTest.php","hash":"f1e198f60da48ec5e0bac76be1d938b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/SetRestrictionsForOrg.php","hash":"8cfa7a5a52b5f0676a2206fba66c9118"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/SetRestrictionsForOrg.php","hash":"694fc0bc9bef2fdbeb183176cdb91609"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/SetRestrictionsForOrgTest.php","hash":"9d3c55e5482635a94c763c84576d3450"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/RemoveRestrictionsForOrg.php","hash":"9687edc1cc198624d718d55a6276743f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/RemoveRestrictionsForOrg.php","hash":"639ef9de5a4e7c6f7a483204617b1be8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPendingInvitations.php","hash":"99661df0980c7ce29e41443250b15fcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPendingInvitations.php","hash":"d35fc7a878ade5de468f1d402225c237"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPendingInvitationsTest.php","hash":"ab0331c7c786320941628a3cd44715a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CreateInvitation.php","hash":"374cbbce56bc70f5274a5d614405a575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CreateInvitation.php","hash":"ffdbad96ea748d0fbcbd9de97315b2b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CreateInvitationTest.php","hash":"637a130fc7353bd555f7ddc63591ac13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CancelInvitation.php","hash":"9406075c4f6e11f094f2fd2c11c9faed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CancelInvitation.php","hash":"fc44633a6a80f5aaaf8757782ac1e4a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/CancelInvitationTest.php","hash":"395ae0e147441e20fcbdde0d92a2a3ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListInvitationTeams.php","hash":"5aef1fd906bc17e9bde3413fc0a8cd3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListInvitationTeams.php","hash":"f65433003e8260b2efeb192607feacd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListInvitationTeamsTest.php","hash":"8e849fcb55e439a5dc9aed257540bcd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListForOrg.php","hash":"9891ed720fa1638918158ba8cbe16ab6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListForOrg.php","hash":"b9555f22508c253c9fcbea03684e4f14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListForOrgTest.php","hash":"a03b601e13197581f183ef8b2881f77f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListMembers.php","hash":"a0f924dc9e4dace6226ef1b3b2aea911"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListMembers.php","hash":"19f5a5096d159260c00ab8f57ca09627"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListMembersTest.php","hash":"67beec17073520a02eb6fe5e7e2919b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CheckMembershipForUser.php","hash":"85b48afa8ebdc8c16f88d7cc14a243e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CheckMembershipForUser.php","hash":"375595a3e17af56531429592b4b0997e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveMember.php","hash":"960365a5a3f47d82a25c8926c60c12e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveMember.php","hash":"88fe3c790144b210c3d429720ffc9f56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveMemberTest.php","hash":"3908653a9555d3b49188f70ba805cd0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetCodespacesForUserInOrg.php","hash":"381f99d76d9bb472f99b81c0b9f8d076"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetCodespacesForUserInOrg.php","hash":"25b5d5e1df68d2a884420ff3f9e8db7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetCodespacesForUserInOrgTest.php","hash":"a279bcba1aa03b6b018a5c9e7ae6c1d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteFromOrganization.php","hash":"42aa5befbf77db2d48c3510647b34199"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteFromOrganization.php","hash":"81232ea4d13c68a7753072e595fe5c7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteFromOrganizationTest.php","hash":"aa5b85aefa672b0e3e232ad24a8ecdff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/StopInOrganization.php","hash":"01fc19575466b0e1e9c166e57b5d4657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/StopInOrganization.php","hash":"8ea9cadf14f92a3a482338925cbef82f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/StopInOrganizationTest.php","hash":"72d2e6e269cc7b8e896aab7a99eb0cb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetMembershipForUser.php","hash":"d1bd272b3d5c7bac6754b99235249a84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetMembershipForUser.php","hash":"3cb466c8e20bb1467819e899ec937388"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetMembershipForUserTest.php","hash":"eea347c5cf5dcb101d780d159d90b8ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/SetMembershipForUser.php","hash":"d76daf361bf52f966b97cea412fca159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/SetMembershipForUser.php","hash":"2eaa0cf68752935340cf22031da17116"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/SetMembershipForUserTest.php","hash":"15d0152a6079a945bac5419fba3a6a09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveMembershipForUser.php","hash":"868e6e328ab1c3da6dd67d6fbc3bd21d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveMembershipForUser.php","hash":"27e2bdae010402950831e7421db0d7a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveMembershipForUserTest.php","hash":"c1cba8ebf89d9c7ff7a73c502e9d49c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListForOrg.php","hash":"d9ec76c11b3bfc7188f883db5abfa5bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListForOrg.php","hash":"b1c435ba75f4139abd635577a3e6767a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListForOrgTest.php","hash":"0483ba14ca16e96e02ee3bf1079ae46e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/StartForOrg.php","hash":"15b97d53df5fb28d14705ccc0157a193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/StartForOrg.php","hash":"c57d4814432e2937ae7129c0a9f9373c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/StartForOrgTest.php","hash":"45d5ef06c73b06f8fd6f43529eb54d47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetStatusForOrg.php","hash":"03d31ff0110da0cdfbbad217548787e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetStatusForOrg.php","hash":"d3b8933744abc48451a29d3d7e12020e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetStatusForOrgTest.php","hash":"23fd984850f4eaaf9cc86a16d133cd19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DownloadArchiveForOrg.php","hash":"7e470976a14c07d198d65baa115f6793"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DownloadArchiveForOrg.php","hash":"fe6333028e34fd22659cf9872fac5d95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DownloadArchiveForOrgTest.php","hash":"eac0152a20e076bd3558049a78562ae2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DownloadArchiveForOrgStreaming.php","hash":"dc7cc5f18889e886fc43d5ba02d6c98b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DownloadArchiveForOrgStreaming.php","hash":"43cac9a1562764dabfc1f12d9f2972a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DownloadArchiveForOrgStreamingTest.php","hash":"be14a7ebf4c301865da1c732e536226c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DeleteArchiveForOrg.php","hash":"9c6456f751b987baeb77ac605217c7ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DeleteArchiveForOrg.php","hash":"8870cc1e079b775aa953eaf58ac379ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DeleteArchiveForOrgTest.php","hash":"1b28c852cf338475a42debae219e7b26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/UnlockRepoForOrg.php","hash":"7fe887179eb6247b47bdab9049b82b5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/UnlockRepoForOrg.php","hash":"cdbdc287390ef630a6abde730f1c36a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/UnlockRepoForOrgTest.php","hash":"4ebdc6af01f942fc1cf6ca67e64d7478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListReposForOrg.php","hash":"1ea77478eefd3051abd5bc793f36a91e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListReposForOrg.php","hash":"e4cbae3e6648d3acddb60fbde1019c85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListReposForOrgTest.php","hash":"26805038412a3c1768266e065620074e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListOutsideCollaborators.php","hash":"afe04a78d99d0fe1ee81cb9531a091e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListOutsideCollaborators.php","hash":"04231e49e52eedd6f76ace0f2bee5bed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListOutsideCollaboratorsTest.php","hash":"feac3b9ded8842d0477f99237a779d10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ConvertMemberToOutsideCollaborator.php","hash":"7541ba2ecbadba667eb022cc56c3690c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ConvertMemberToOutsideCollaborator.php","hash":"62d4dc335fb94b57a1204773bc100b7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ConvertMemberToOutsideCollaboratorTest.php","hash":"5f756075d911605ed13583f7bf473a83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveOutsideCollaborator.php","hash":"b0eaf00775636aea7a04ea05dfeac1f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveOutsideCollaborator.php","hash":"f68689ada9b3cf166843dcd842ffd15d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/RemoveOutsideCollaboratorTest.php","hash":"299da542d1ec4c33091941e172b31cf8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListPackagesForOrganization.php","hash":"f6f15c1d18fa2b82f864fc8cce01ffe1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListPackagesForOrganization.php","hash":"cbbcfa3798a8ecb4db53a3a34364fd5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListPackagesForOrganizationTest.php","hash":"bee50f0ece8d77d67b890d44de37b696"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageForOrganization.php","hash":"af51bb1c3c6b2180840655d047ce8757"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageForOrganization.php","hash":"23b61c54a6003520796a5f9d368d3cec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageForOrganizationTest.php","hash":"f613f6d972975dba65d401d902b0b791"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageForOrg.php","hash":"90756372e10d02b8600766f3e084b2ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageForOrg.php","hash":"aa9c099070a91d69239c20f478d4a0cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageForOrgTest.php","hash":"721a8be833f598083768d61e3c892258"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageForOrg.php","hash":"89dda07af0943f66fbd9b1959b30fc93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageForOrg.php","hash":"a3e69890c8208d941ecc6f57d12bf12a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageForOrgTest.php","hash":"7133454bdb161720c88ff4eeba7c046b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByOrg.php","hash":"db261ebfbba528ebf27ce9ba6dfa9944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetAllPackageVersionsForPackageOwnedByOrg.php","hash":"becb1aedea37a006ee86739bb6f47d9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByOrgTest.php","hash":"cbc3d1b43f1f394669ca1a044af07bb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageVersionForOrganization.php","hash":"473a2ee84c3f63e6034807a6a881b6fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageVersionForOrganization.php","hash":"53be9a1b275521cd6d1b7d063bad4592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageVersionForOrganizationTest.php","hash":"aaaade5c27861bb0c9bc427ffb9f54d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageVersionForOrg.php","hash":"3e106c54dd5d4254cfaa188eff71bc8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageVersionForOrg.php","hash":"ada0d2122ce4ce1b94455f149559e114"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageVersionForOrgTest.php","hash":"a8adf9e2935300703562c7da4b4ac1d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageVersionForOrg.php","hash":"14985d259134f0c176beaeac25fbead8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageVersionForOrg.php","hash":"15ca37877ab22b6afa651da5ad823dfe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageVersionForOrgTest.php","hash":"bc8b2ee44314d36a3e178917453500ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListForOrg.php","hash":"aa6c57d0de5df98f85c615ce99078763"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListForOrg.php","hash":"106470af84b0277d9c7a4e045f331810"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListForOrgTest.php","hash":"3577369cc22a2f3731194cda9bf4a82e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateForOrg.php","hash":"6c8fd332409ea371c5727ba04aa24667"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateForOrg.php","hash":"19143637fddae0eff4be551adf770adb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateForOrgTest.php","hash":"0100db2030f25fc37897b2a2eddc41dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListPublicMembers.php","hash":"ace3b5081c7404208dea58dda834c758"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListPublicMembers.php","hash":"22f15489b6379ff5939cdee3d4ffeef0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListPublicMembersTest.php","hash":"e202571835302b9e243663b667b609b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/CheckPublicMembershipForUser.php","hash":"c83f31b9c2516208140459153c8cae87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/CheckPublicMembershipForUser.php","hash":"8b4bac1ef80700d3ba561d6ddb1b8e02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/SetPublicMembershipForAuthenticatedUser.php","hash":"da9514d39e6aa89d49bc5069cd7e7e4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/SetPublicMembershipForAuthenticatedUser.php","hash":"462dced94839c88c33d328d65da0b785"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/SetPublicMembershipForAuthenticatedUserTest.php","hash":"64992a748c44ffb27e059c2ce1ff89a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemovePublicMembershipForAuthenticatedUser.php","hash":"1f4a71dbb5a024bbcbc5a95619ddd5b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemovePublicMembershipForAuthenticatedUser.php","hash":"e3ed37fefa64003c2db9a69e40144605"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForOrg.php","hash":"ea20b5ec2311076493f3fb8b3d3df2c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForOrg.php","hash":"c4004600a68e580cfa4dc4db07f83d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForOrgTest.php","hash":"238049ad97e0e3297a601f6718ca4bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateInOrg.php","hash":"8020acaf0af7609fb4cd90e9a927eadd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateInOrg.php","hash":"c0c936d50e3c9e5f6b02eeaa87dd8e48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateInOrgTest.php","hash":"2112bf55574321dc9ce49d65bf270922"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListRepoFineGrainedPermissions.php","hash":"3e5ff20e13aa274359a49584de19eb93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListRepoFineGrainedPermissions.php","hash":"59ad090101bc37b0f62266211085775a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListRepoFineGrainedPermissionsTest.php","hash":"bedfde05c83d325751649fd820da31ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetOrgRulesets.php","hash":"7f8adf10fce1e9b778a2264d3e987268"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetOrgRulesets.php","hash":"02730a1c2518a5b959c2c5961989d52c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetOrgRulesetsTest.php","hash":"0d878a5123a6e606612b89afdce2c4db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateOrgRuleset.php","hash":"401899114099d3871e6950e3fa5065cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateOrgRuleset.php","hash":"1e9fb9638d044d984da17b70c25a33e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateOrgRulesetTest.php","hash":"7c7856c900e4fee72d07816467267658"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetOrgRuleset.php","hash":"9e126fd0f65903a02bdf7b0d671421f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetOrgRuleset.php","hash":"cc849cc525c762039436b37d19ba7ef8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetOrgRulesetTest.php","hash":"68c45620610f649adbec0ebdb84c9c99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateOrgRuleset.php","hash":"25f386ae50b56469b9fb63effffe8a8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateOrgRuleset.php","hash":"e2711c22295f74913bb0e59e176cf61e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateOrgRulesetTest.php","hash":"d3e5e6b7b0b3fcbc60d7ccf681999077"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteOrgRuleset.php","hash":"09a601b9915012f53e2646cef81f4f84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteOrgRuleset.php","hash":"472bdd7d79b0b71b1d5e6eb3e3c60fd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteOrgRulesetTest.php","hash":"21626a2e36a6877cf5557b300ebf1904"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListAlertsForOrg.php","hash":"ce707ae16fd3df7a6829b86c165aa9f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListAlertsForOrg.php","hash":"7bfce33a1b2473524f15060472634022"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListAlertsForOrgTest.php","hash":"f4452d0ec8b1d64428c6e6dcdb9c3aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListSecurityManagerTeams.php","hash":"3690d21e660776d6804de000855bac18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListSecurityManagerTeams.php","hash":"d7c6fc2e2774fdc8312fccce405fffec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListSecurityManagerTeamsTest.php","hash":"e21e4cc73aa98734aea80ee496534a10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/AddSecurityManagerTeam.php","hash":"e454ef2fc62dd15321bfc3219730ad8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/AddSecurityManagerTeam.php","hash":"65106214611d39433a498b912d61fe70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/RemoveSecurityManagerTeam.php","hash":"b98e489769995e1aa10172fbfa269ff3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/RemoveSecurityManagerTeam.php","hash":"da4df80591d0cf7247eca414f58950d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubActionsBillingOrg.php","hash":"a9491442fab02e6610019fdf1ad670b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubActionsBillingOrg.php","hash":"42401803d7efa1ef4d0392fd1ab0400f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubActionsBillingOrgTest.php","hash":"0c17fb22f2668463f78de9e87cfa913e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingOrg.php","hash":"a81ec191b80754e6e705d0d9be4feaf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubAdvancedSecurityBillingOrg.php","hash":"e251f92b766e3f82dc8046b5123f7ce0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubAdvancedSecurityBillingOrgTest.php","hash":"646cb6f3aba70b390fc8706d2b0e5cf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubPackagesBillingOrg.php","hash":"6ecf8f7d86f478bf5655c193cb1f3eaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubPackagesBillingOrg.php","hash":"a92a69dcba3c952e264a9e75419b9a0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubPackagesBillingOrgTest.php","hash":"f3a77988e9958e49a5020034d89b319b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetSharedStorageBillingOrg.php","hash":"80b3796ef0e1f0c3e3814d1708bae49e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetSharedStorageBillingOrg.php","hash":"94d881f7ab6a220513a601741ca50f3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetSharedStorageBillingOrgTest.php","hash":"4360cc8565232a08bb7db5bd026d4927"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListIdpGroupsForOrg.php","hash":"6633e9bc9647a02a4e3d2a98b928a493"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListIdpGroupsForOrg.php","hash":"64cedefeb1e87e148b7b7a3416e816ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListIdpGroupsForOrgTest.php","hash":"a7a3e3f6676ee677f01c8c727bcdd9e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/List_.php","hash":"70a340d3b6db13ed992dc8b4d2dd8131"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/List_.php","hash":"bdca28a720ee4474da6bcef7f8a52de8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/List_Test.php","hash":"ba8bb2bff1573b94b6aa9e06a3f86570"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/Create.php","hash":"81f0e63eaab18fa1fa97586a58336b57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/Create.php","hash":"845c3548aa8d0104fc758b4519bbd40a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateTest.php","hash":"353d3a07527ae8e25397394f2aa1bc75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetByName.php","hash":"b79556779f558bf568da068ce79098b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetByName.php","hash":"09b68dfb952c96a7169f5115d8068d72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetByNameTest.php","hash":"65da6c667c7c458d978951967731ac46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteInOrg.php","hash":"a89c57943d3b648339407eada786f90f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteInOrg.php","hash":"a4a226570a96aa43661ac19fc3b327b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateInOrg.php","hash":"645d15eb8a8616b52b77afaebbb9fa1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateInOrg.php","hash":"1f7d089ac96db1e62e286d0b2c250d1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateInOrgTest.php","hash":"a3c2f64e971597b2d59dfde840fb2a35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionsInOrg.php","hash":"6ab85578406220080b06983a1950f940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionsInOrg.php","hash":"fc98f33beb5b8826b46ee76a3312b4d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionsInOrgTest.php","hash":"7bf0833cbfd279947f89cf89248b898d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionInOrg.php","hash":"e6158c3ba24e39f7d0c7001cf7df5e18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionInOrg.php","hash":"4a8eda172f4a8bfdbda5dcc6926c9374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionInOrgTest.php","hash":"a5af710f61b9491e49d502b5682d6032"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionInOrg.php","hash":"712eaf7ad11b67a4fb4f362f494ec333"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionInOrg.php","hash":"351481c9cb8142f19d599e7035e2bd9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionInOrgTest.php","hash":"b63d3f26e6aa3afc0733839fc87b42c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionInOrg.php","hash":"9dd46bb28c00b926369d929dcae4ab08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionInOrg.php","hash":"0766a932c235de85a41b4ae30dc06c89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionInOrg.php","hash":"ccd3928aaa7ba9d4072422c953b291b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionInOrg.php","hash":"49090573dec427277b803b7a2702ef86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionInOrgTest.php","hash":"73bf33a1bc56be64208760b5fc1529bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionCommentsInOrg.php","hash":"a944338e7c67295dd340025222fd4765"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionCommentsInOrg.php","hash":"7088ea5e391e7357f38932cb5750d979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionCommentsInOrgTest.php","hash":"b8904cdcbd488861e724f06642f9c09e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionCommentInOrg.php","hash":"39006a83120a43f48f1ba5d410234d14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionCommentInOrg.php","hash":"b625aaa7e5af7233d0bcded0e9f370c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionCommentInOrgTest.php","hash":"30575719726330888f3b85f046a11010"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionCommentInOrg.php","hash":"ddde39ad78766fe9ebd63d91aed808e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionCommentInOrg.php","hash":"d3f09006cec3f8eed2c8efe79e887308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionCommentInOrgTest.php","hash":"7bada7629e3a8573f6ea509d24d1a609"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionCommentInOrg.php","hash":"211f4f0f752882e5a2921f1c4e4cfe57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionCommentInOrg.php","hash":"2cac7aefa7fced9e5c580a1c1a34e6db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionCommentInOrg.php","hash":"69b222f5d2df1baf388292afaa0b9219"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionCommentInOrg.php","hash":"47400ed48a25e3a47be6737b8e645af3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionCommentInOrgTest.php","hash":"7a6f095f076846364b5ef257d4ebb789"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionCommentInOrg.php","hash":"e986e6e0ca12bc3615143c907737ecfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionCommentInOrg.php","hash":"b4e8040294daaa8bd0dcb728fc671cec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionCommentInOrgTest.php","hash":"d755d2b68e3d0cf443c999c4fbe92cd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentInOrg.php","hash":"cb38dec306f7224f48a14cd904596e03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionCommentInOrg.php","hash":"4c899de6b881a8bfb90aadafe6e36d49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentInOrgTest.php","hash":"1d06442a2a453ccfdb380a3377a7aaa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForTeamDiscussionComment.php","hash":"1b79f42a15e88b3ac8d5c8b2f9e04b5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForTeamDiscussionComment.php","hash":"0706b63ba5e8b12a62341fdf270faa62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionInOrg.php","hash":"f2dbc9b1e27ba8d95c7ee891c9ec7263"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionInOrg.php","hash":"81226ce46af6b91b703364f211996154"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionInOrgTest.php","hash":"267cbd4a29f69805c6f0aa42764a5492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionInOrg.php","hash":"5a43a592ce214cf9e0dfc200da7a4a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionInOrg.php","hash":"9001750c77196bfbb9113fe46f339e9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionInOrgTest.php","hash":"76394b7d4b6d7cbb1964e991051c823f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForTeamDiscussion.php","hash":"a7d55b568d8bab5c5e30281d85b0cf4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForTeamDiscussion.php","hash":"1f22fc0493c47caf80c2b5ff96cb1680"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListLinkedExternalIdpGroupsToTeamForOrg.php","hash":"bb62b60e77cf1ca2ff3f5037b8a2be3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListLinkedExternalIdpGroupsToTeamForOrg.php","hash":"bf4ddef284928845c90c7237a6affad7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListLinkedExternalIdpGroupsToTeamForOrgTest.php","hash":"a6b6a87a74e3a9714173f7f7984cad9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UnlinkExternalIdpGroupFromTeamForOrg.php","hash":"af94d434c335694cd82e2fecb546b1c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UnlinkExternalIdpGroupFromTeamForOrg.php","hash":"ecfcf5b744d0ed3d540a0fbd71a1029d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/LinkExternalIdpGroupToTeamForOrg.php","hash":"de3a6eb131f53d6c8edca5f8f814d077"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/LinkExternalIdpGroupToTeamForOrg.php","hash":"322594910f3a10bdf154d234787314b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/LinkExternalIdpGroupToTeamForOrgTest.php","hash":"e210dce0acd6ca491ce8bce58a0d80e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListPendingInvitationsInOrg.php","hash":"df30b1cc6aab3791003c94cdc4734019"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListPendingInvitationsInOrg.php","hash":"789b644b510823f1e33e76204e4dcef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListPendingInvitationsInOrgTest.php","hash":"6af21a749d80829d9df102db4cc1e285"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListMembersInOrg.php","hash":"778dca3fed9b5825742e632a9c36082e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListMembersInOrg.php","hash":"3002726c1d909344111249746317e86f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListMembersInOrgTest.php","hash":"ad64aae21f25367ab29328c771c614df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetMembershipForUserInOrg.php","hash":"7937d305f1d9420daf8b0c502b442426"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetMembershipForUserInOrg.php","hash":"7f4ecdefab607375c59c767146a83413"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetMembershipForUserInOrgTest.php","hash":"eed55dedf5a0d150d8e779b74d485547"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateMembershipForUserInOrg.php","hash":"36ff99de5bead02950a5f5ee32f6921b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateMembershipForUserInOrg.php","hash":"324de4f0ea51b8235100769b205038e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateMembershipForUserInOrgTest.php","hash":"a0f9bbaa56cad2b2737797711385d496"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveMembershipForUserInOrg.php","hash":"fb69df245441477c9945f247b57c8b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveMembershipForUserInOrg.php","hash":"d8725a2089c0203a436b901e96e2a000"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListProjectsInOrg.php","hash":"3d603d9b204368dd73e555429f5549b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListProjectsInOrg.php","hash":"476b276372cf96da8df03c3bb314219c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListProjectsInOrgTest.php","hash":"2bf9561e6d32b1c77d014a5b02882392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForProjectInOrg.php","hash":"5df28f5a49288422dfe4dd8eecb9a5df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForProjectInOrg.php","hash":"13dc0aeed5efefe0b54b7187d9e12d4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForProjectInOrgTest.php","hash":"0e9a802342eeccb3f1433d762e178bc6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsInOrg.php","hash":"524854c58de4ff2ac895dbaf11cb2556"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateProjectPermissionsInOrg.php","hash":"8e72b6122d65ecb50dabd4681a0fb04f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsInOrgTest.php","hash":"6ca7fb1dc0b15e22b65587b2ac346ea1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveProjectInOrg.php","hash":"75c55ea98030880d2d677309c5d21357"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveProjectInOrg.php","hash":"c3e5274e15fae6b13f7ba1046707879e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListReposInOrg.php","hash":"a33cd1a465f700b4e6fc00df2743be1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListReposInOrg.php","hash":"207d21ea1c0d3f52a0628bc5a2aff722"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListReposInOrgTest.php","hash":"b9bbccf93b002c16394c12f2dc1ab8a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForRepoInOrg.php","hash":"9db380836a7a55dd459c1bd65a1b4e32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForRepoInOrg.php","hash":"9d26ea32db8c53ce25b908af729fd824"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForRepoInOrgTest.php","hash":"46a012716878e5cea7a185fccf22f7ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateRepoPermissionsInOrg.php","hash":"b2191b02b3ac45e3b8aee34932b33167"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateRepoPermissionsInOrg.php","hash":"8de06e2e48510fd286d0ed1da27ccc9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveRepoInOrg.php","hash":"5373921e8c3ecf333cc3ae9d9a55637c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveRepoInOrg.php","hash":"979c84a65518dbb3f4c887af23df8fe8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListIdpGroupsInOrg.php","hash":"7740ab204e56d0432a0b46a9d228fb78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListIdpGroupsInOrg.php","hash":"db689383261e8dc6a9bf220aa0350661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListIdpGroupsInOrgTest.php","hash":"65910a5181d506e4ae7e7bbbc339fe38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg.php","hash":"65387ef9b96b655ab048665ac1af5beb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg.php","hash":"71a172afe4c1db2d19cba1f060afd31d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrgTest.php","hash":"9fb538e0701367de9fdd73f73b884369"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListChildInOrg.php","hash":"62ae61f71978a2017c716927da813e79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListChildInOrg.php","hash":"a6e378437e6ac96cdd811ca1f89ee768"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListChildInOrgTest.php","hash":"9be3ba6d1552e468334a36e7dd8ca05f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/EnableOrDisableSecurityProductOnAllOrgRepos.php","hash":"20d3bd6141fc4c517f47e305811597a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/EnableOrDisableSecurityProductOnAllOrgRepos.php","hash":"44d893fd43d6342b844042e32d466cba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/GetCard.php","hash":"224c7aad7f75b73ce66bb763e22f18aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/GetCard.php","hash":"d99708b44b8b11be01e1e26f7406136e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetCardTest.php","hash":"e147ea2f5e1ab99902b659572ecea7fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/DeleteCard.php","hash":"a7ff93e77f1f17ceca8ee96f5fed22f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/DeleteCard.php","hash":"432a4aadce83c883dfa01a0dd14ca992"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/DeleteCardTest.php","hash":"4a32a1b910be6f18c6401c58a2830638"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/UpdateCard.php","hash":"2058dc32d0f53e3fad5986539c4baf06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/UpdateCard.php","hash":"29b989f498b120deede3053f143378e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/UpdateCardTest.php","hash":"c7e0cf80aa9a250590ea503527562eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/MoveCard.php","hash":"7ea7c3960868c145f48d99b92bc85972"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/MoveCard.php","hash":"e0e76d9a31f50ecaad471643f235d10d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/MoveCardTest.php","hash":"802f9b851e02cc7e6503413c289e19ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/GetColumn.php","hash":"a75ed9d6bb76774ef25fe40271d36d08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/GetColumn.php","hash":"15790f0b7219f8827e49e536275c5da8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetColumnTest.php","hash":"686c80fe3d8b9b9405426401fd2da117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/DeleteColumn.php","hash":"8909b61f4a7969b687e8ac4a275b24cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/DeleteColumn.php","hash":"aa346c7e81086154d778369d6036eb67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/DeleteColumnTest.php","hash":"069829c18bc6ae2ffab60bc1eea7b33f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/UpdateColumn.php","hash":"9c38f1386921939e29f7c1710f31110c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/UpdateColumn.php","hash":"ee149b71ac56cf554899273c399f958d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/UpdateColumnTest.php","hash":"8604ee4cf59c96e6ff2325f25fd6da0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListCards.php","hash":"f9d017ef3fba9ac83c605cb45e900311"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListCards.php","hash":"ee135e452dcd2cbf76b64419a6b9856a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListCardsTest.php","hash":"51266bb9c303394c2602e0f764524897"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateCard.php","hash":"192d165ab51aec32312b2554f8331d93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateCard.php","hash":"64b94051463a6fd8dc603639f5ddaca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateCardTest.php","hash":"a27d1e9fabce1730cdd7dd107751a0e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/MoveColumn.php","hash":"8169cdd6a837b2ab0236b4c6d04f0538"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/MoveColumn.php","hash":"489a4efb67a59c4812cf5b0f0ba8598e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/MoveColumnTest.php","hash":"8443c3f5a0aa1ec575f5ff7a2aab5a28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/Get.php","hash":"049e6bc9a766157774bae5a72e1308e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/Get.php","hash":"3eff7317490fa00918079afa8fa7e58f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetTest.php","hash":"188139173e37e82f47a0cc37b695602d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/Delete.php","hash":"3a07d4951e5f087a64fd22265fac48e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/Delete.php","hash":"e0c5231184eeeb70257cd0e80e4c51f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/DeleteTest.php","hash":"2e7606f6eb1fb00eed5f4eb7e10ea681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/Update.php","hash":"77bec03d4786f4d14909463fa1023aab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/Update.php","hash":"ca38954ef5b9e3e0178c36c2fe95af50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/UpdateTest.php","hash":"2ed59ee305dae832288f895586e68030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListCollaborators.php","hash":"9e7d7e58a63b2d82e896a5c3b161283e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListCollaborators.php","hash":"82b43a227172e7fbe699f37e9972dbf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListCollaboratorsTest.php","hash":"f2dab29d5c764528f91c04fca1fb87f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/AddCollaborator.php","hash":"faa9ff524556ce893b23c9d6b2c919b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/AddCollaborator.php","hash":"2e032189897474e86689944a354f5907"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/AddCollaboratorTest.php","hash":"942583b6c40511a24be550398353c44c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/RemoveCollaborator.php","hash":"566a6b66a486a160876429c7c53f57d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/RemoveCollaborator.php","hash":"748951aadf64bce0540442c9defc439f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/RemoveCollaboratorTest.php","hash":"ad3193ed0f450b4eab2c8319d7d4a48e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/GetPermissionForUser.php","hash":"3ebef2c27403b82bd1a0239538045dd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/GetPermissionForUser.php","hash":"ff3df019937276a7776366b0915d042c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/GetPermissionForUserTest.php","hash":"63b27f1f57307e2ebec9431657f697fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListColumns.php","hash":"069ce3da5f3c1d15877404b8fbd1103d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListColumns.php","hash":"d49f5b4c5c1ca89696a1cb02afa4465b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListColumnsTest.php","hash":"4c30a4aecbcfe6c9449981dd6e79b519"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateColumn.php","hash":"f45703a30016d9dae37cf16a002e67e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateColumn.php","hash":"5d9310bfe2cd64fd40c1d6acd1236f7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateColumnTest.php","hash":"e7056bd90a2ce51ce0d9654f395ed67f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/RateLimit\/Get.php","hash":"1d9543c62d7d36e8551e4bc0c8dc60db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/RateLimit\/Get.php","hash":"0e3d7bdeee3b80bb20bf6dd105b0ef61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/RateLimit\/GetTest.php","hash":"6145166d659813ecb5cad97fab531039"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Get.php","hash":"011e16f05192f3c4b2798ad8fe48e448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Get.php","hash":"e0444dd90c5e37f85ae5b6f1cf86b11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTest.php","hash":"b7db0f96c03c80ca36b0d08cbcbf4e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Delete.php","hash":"449f01c48137d297b71b428e7d22c6e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Delete.php","hash":"ce04215f6552a34dd079815958cb81fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteTest.php","hash":"60fc16178f7a75cdcc0a7403ddbfc99d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Update.php","hash":"045f1e07316e212fa611e1cb22213621"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Update.php","hash":"90837acd61d3d67d6a391a716198ccb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateTest.php","hash":"48e1e2e62c18131d8dd8241620d69adc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListArtifactsForRepo.php","hash":"3263c1a5e7b9971d29ce8206e0f28cb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListArtifactsForRepo.php","hash":"dfda464596f8bb6ff12e8a28dbc9d3ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListArtifactsForRepoTest.php","hash":"4f45a8b8d545cd51f8dd7df7d440ebaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetArtifact.php","hash":"77a0f1457ce4764afb19b9097cd5131b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetArtifact.php","hash":"0968490c91574e42c942a8565bc6f130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetArtifactTest.php","hash":"65c92b2e129bd890e9296a19bcae3f97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteArtifact.php","hash":"87ba5ffadedbdde9c962d3518e89799c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteArtifact.php","hash":"8783eae3a85a578bac77472e588459a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadArtifact.php","hash":"062be58770a218743ab2420024c4593a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadArtifact.php","hash":"74317c8833b0a7405bc6031136c05bcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DownloadArtifactTest.php","hash":"3d0d37308a25c5fdf59c9402814cf71c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadArtifactStreaming.php","hash":"582a9923faf3297974021f9ead2bd240"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadArtifactStreaming.php","hash":"b1aac78e5c4db00a4482d282f666ebc4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DownloadArtifactStreamingTest.php","hash":"d729f0fff8be93f777e7c64ebbca77cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheUsage.php","hash":"d922a251bc40dbe3af9573ea2bd33449"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheUsage.php","hash":"a0293a3edd2d1f305f20236ca8fbf7aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheUsageTest.php","hash":"c947c5c1f8b261102a1a398e0145c24e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetActionsCacheList.php","hash":"5dbd9713a4b2078a64ce22cbb3db300f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetActionsCacheList.php","hash":"b2b2db14f97a367db7e7b6d2457c321c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetActionsCacheListTest.php","hash":"d4f657a9ac61a393bc908eaaee495088"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteActionsCacheByKey.php","hash":"4a7075f7b7447c1588cf99bac23f8f47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteActionsCacheByKey.php","hash":"502915925ccc6264614e41b03defc1ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DeleteActionsCacheByKeyTest.php","hash":"9fbc3720219b067fc7431470699903de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteActionsCacheById.php","hash":"6cd816a90a17e028e42758b17c99d15f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteActionsCacheById.php","hash":"cc02eb0af1892ea49cafab4bc305237e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetJobForWorkflowRun.php","hash":"407b12f32abadc2f11de0ea28e5e962e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetJobForWorkflowRun.php","hash":"867005a1bb0bb648cbcabaeea5709be3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetJobForWorkflowRunTest.php","hash":"e1a405db5b4eee63d77abe5846b28f64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadJobLogsForWorkflowRun.php","hash":"9781c437fdf156642dc9b8b21b6d8654"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadJobLogsForWorkflowRun.php","hash":"c7f72eca47a6d14e81411d1d535d5922"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadJobLogsForWorkflowRunStreaming.php","hash":"14e37cccc1efae4208a780a47af2bf16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadJobLogsForWorkflowRunStreaming.php","hash":"1f7fc4adaacbbba89b234e803ec620bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReRunJobForWorkflowRun.php","hash":"7643a6fbbd83ba7d1ccbd25feccf2c8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReRunJobForWorkflowRun.php","hash":"2b21df46a382f220bf70a147ef8de299"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReRunJobForWorkflowRunTest.php","hash":"4f64a3c0a839d001683a8d04166d4e85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetCustomOidcSubClaimForRepo.php","hash":"5d5694ac774308884eaba8fda79d91e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetCustomOidcSubClaimForRepo.php","hash":"c00518f5fe195a88ec50f9a4533a202e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetCustomOidcSubClaimForRepoTest.php","hash":"1f2fddfb4b1c8360fc592e132518650b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetCustomOidcSubClaimForRepo.php","hash":"3295a9d5606c6903336e709075b621fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetCustomOidcSubClaimForRepo.php","hash":"046da21e6db4c0d6412b10133d34bdab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/SetCustomOidcSubClaimForRepoTest.php","hash":"1ee0116cbe377dfb758d9002feb27520"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoOrganizationSecrets.php","hash":"abf34307a1b33d7cd34206755d100eeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoOrganizationSecrets.php","hash":"034e5dba4612c8ceefc73f63800b9e7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoOrganizationSecretsTest.php","hash":"44914742d28640e456f5c0643d2ba0cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoOrganizationVariables.php","hash":"2d288b22aaa1f6aaa9cac86c3af57169"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoOrganizationVariables.php","hash":"fb36835fc3d0eb5bf476068a637547ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoOrganizationVariablesTest.php","hash":"2fe928af4128727922163745d30047b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsPermissionsRepository.php","hash":"5e10760cd79b157d319a0e644eb64b43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsPermissionsRepository.php","hash":"89e25ae97788fc296116751ed8b3848d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsPermissionsRepositoryTest.php","hash":"b9cf626af3f6d8aae93cf2ebfbcaeded"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsPermissionsRepository.php","hash":"62d60992a8a35a30839d0f9399a7d701"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsPermissionsRepository.php","hash":"061221ead086d43018b66d2f0dbe2fab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowAccessToRepository.php","hash":"2b21d86f49325e9c222d97a9ce142aef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowAccessToRepository.php","hash":"b8ba3c6e8068f9d01c40ac93a36749dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowAccessToRepositoryTest.php","hash":"26a0b0fd571b9eb27ee507619a321e86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetWorkflowAccessToRepository.php","hash":"89e719fb72119df53ea6fd7ce6ac36a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetWorkflowAccessToRepository.php","hash":"50b6b238d7c8a0f665587c1357b6d2c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetAllowedActionsRepository.php","hash":"97f1adaf6352443f3cd514fe24ccce91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetAllowedActionsRepository.php","hash":"7d93329f9d9763eadf2ccef97b560a6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetAllowedActionsRepositoryTest.php","hash":"b309d75543f41f2951896a94fbef0434"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetAllowedActionsRepository.php","hash":"6af878302e957957dc5eaacdbd754e59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetAllowedActionsRepository.php","hash":"3633d2e91ab3140d174bee6557af0392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"0c28b398c662fb897e865ff002bbfe9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"b996f009cb4b8856fdd011ae650bcbde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetGithubActionsDefaultWorkflowPermissionsRepositoryTest.php","hash":"d4f6a9b72c7585f039af1f793cd4f979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"bf944d14fe444281dc5eb5e7e06f0713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetGithubActionsDefaultWorkflowPermissionsRepository.php","hash":"96dd70c0a94af1b23968d77767ca6e83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListSelfHostedRunnersForRepo.php","hash":"b4c017fe1ca027906f3e658de9070a67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListSelfHostedRunnersForRepo.php","hash":"439e5a2a1ef67b31ec05a657b51bfd0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListSelfHostedRunnersForRepoTest.php","hash":"7b3f066d8bd606678a56b604f2958d29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRunnerApplicationsForRepo.php","hash":"36c7007b30a439fc0962e11abf7e2e31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRunnerApplicationsForRepo.php","hash":"4284dbfdc0357eace79d4feddabf5545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRunnerApplicationsForRepoTest.php","hash":"7ded5676d0d17dcf5dcc52b23627ead7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRegistrationTokenForRepo.php","hash":"80acdf37fca43cda23f46a1bb2b07cca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRegistrationTokenForRepo.php","hash":"d24a5a261e5156a7c58d624d5aa59e8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRegistrationTokenForRepoTest.php","hash":"8210ea920bab36fd5908b48293be1283"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRemoveTokenForRepo.php","hash":"3309974a5d1ec91fed929cc3ae38e271"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRemoveTokenForRepo.php","hash":"43f2cc535bfcaee591165109f2e5d852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRemoveTokenForRepoTest.php","hash":"e72a69997e75a56e1d230212d8bb1f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetSelfHostedRunnerForRepo.php","hash":"7ec0ef8c8c9fdf262fd289db899f7ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetSelfHostedRunnerForRepo.php","hash":"2b55e38ec4a5c0e4b6eb805b38d93c29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetSelfHostedRunnerForRepoTest.php","hash":"c84c22c0a05e9d6de3d35c97cfdf7b65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteSelfHostedRunnerFromRepo.php","hash":"a260e8c1ba9008be167f4e4a0427b336"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteSelfHostedRunnerFromRepo.php","hash":"bdaba1ebbe512ddab58e5419d72299eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForRepo.php","hash":"2b1cfb6299afb2ca4fcda16412c5b91b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListLabelsForSelfHostedRunnerForRepo.php","hash":"3e72c6b374e3a65d9e8f0b10802ab4ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListLabelsForSelfHostedRunnerForRepoTest.php","hash":"4e8c1144df489ed8892f6c466825e1fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepo.php","hash":"71f25344a31bffa63f825f1b21de129a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepo.php","hash":"dbab82648eec9327fef1ba1a7ab4a78f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepoTest.php","hash":"fe3e1ab42a0a6ba6173c1dc19a85664d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepo.php","hash":"63bb2918057cdaeb5493bbe903ea25fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepo.php","hash":"e4653b6ceddbf4cf3cd38e1b6b3847ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepoTest.php","hash":"a9f19efe7a273c416d477ea0ad4e4f3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo.php","hash":"59b1b14857f821ed4dbae6813f599d97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo.php","hash":"e05c3ea1bfc89534f698965da677ba72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepoTest.php","hash":"4125c7d7273feb797cf1d4c44ee37afc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForRepo.php","hash":"635d860106cfd2514c780c8adfc58b1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForRepo.php","hash":"8b5d7d4396eac4fd03a8a93c59160dc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/RemoveCustomLabelFromSelfHostedRunnerForRepoTest.php","hash":"4663d96747100489c18428fbd002a96d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListWorkflowRunsForRepo.php","hash":"3ab17acb1b484873df8ba047a04ff9da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListWorkflowRunsForRepo.php","hash":"0f7151e0ad2c9e6ae5fc127c32e2e93e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListWorkflowRunsForRepoTest.php","hash":"3886973d3984e190ed419eac03df5225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowRun.php","hash":"719d259b1d808b5f898a40f4234ccf08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowRun.php","hash":"f3c13cdc5953e05b9008a88264567ec3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowRunTest.php","hash":"b700d16c334f9e5e161a8e7c773c0eb5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteWorkflowRun.php","hash":"0ccc4956cce5ea8c9818a61257bc55bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteWorkflowRun.php","hash":"ad7666213680d94d2565a4eb9c6ee173"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetReviewsForRun.php","hash":"20a26bc522555b693284002e0ca488ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetReviewsForRun.php","hash":"165b9713400d15f3cc3f626aaae63a45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetReviewsForRunTest.php","hash":"210cad8a2204ea9f4d91d9f59565eb8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ApproveWorkflowRun.php","hash":"2e5f0f610914901df08269a8234053e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ApproveWorkflowRun.php","hash":"240e853e65abd5ff3a84653d398b7193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ApproveWorkflowRunTest.php","hash":"9fc9ac1fea597d094cba50a699dc6952"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListWorkflowRunArtifacts.php","hash":"0b3486924e43b06006a061339a909726"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListWorkflowRunArtifacts.php","hash":"b4e76511d07c39ca8cfb97de7705f05b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListWorkflowRunArtifactsTest.php","hash":"3901cd060b43e89eafa787725cb95198"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowRunAttempt.php","hash":"aad94a9e651a4695e4d1eb39279da630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowRunAttempt.php","hash":"5b737c6f2c00854114142aee100291b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowRunAttemptTest.php","hash":"f5311147ccc6729f6a9eda19ba9d9040"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListJobsForWorkflowRunAttempt.php","hash":"b406e61d5cff3d8a39e50629b815f016"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListJobsForWorkflowRunAttempt.php","hash":"5fdcbe5d6707ec15ce2338d3d636b8f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListJobsForWorkflowRunAttemptTest.php","hash":"b8b4f70a4a875f28df52f2815f67595d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunAttemptLogs.php","hash":"bf3d19dd71107f2d6f3b8cff937b6866"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunAttemptLogs.php","hash":"d732d03aa7427660c28b91f1ebc14abd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunAttemptLogsStreaming.php","hash":"fad72b8daf4fadeffdc15f41d056d173"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunAttemptLogsStreaming.php","hash":"5edc3b938e7a937bab0e71a86c2bb30e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CancelWorkflowRun.php","hash":"f697b29e5a0d60149f98b9189560b2c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CancelWorkflowRun.php","hash":"a38f80be4a43cf7a3e9132beb9654e78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CancelWorkflowRunTest.php","hash":"44d4b613d881920fa84f874ccaef1852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReviewCustomGatesForRun.php","hash":"2675fd7eb001fcc8c7e7f2172c3af932"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReviewCustomGatesForRun.php","hash":"e032a4c2fabb74cbf23091ecf12494c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListJobsForWorkflowRun.php","hash":"d903b412c58b09a37039f6b33f5f5b6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListJobsForWorkflowRun.php","hash":"a53b98c22baa1fe3ec1462dbdfc29830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListJobsForWorkflowRunTest.php","hash":"bf8a0998d08e8bee64fde14d348e07f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunLogs.php","hash":"fdb9bfa14ddad72efa3f9ebf8570790b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunLogs.php","hash":"3bd0f4e51e8fe422030afd85573bc432"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DownloadWorkflowRunLogsStreaming.php","hash":"66fcb8f542c68865af0da53faadfdabf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DownloadWorkflowRunLogsStreaming.php","hash":"01a2112c5ae54bccfb89e6a2557c86f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteWorkflowRunLogs.php","hash":"126991497e2a1b24f963c0d59cc9e5a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteWorkflowRunLogs.php","hash":"e4d5a7c48da40bccb6e2ad943be6fbbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/DeleteWorkflowRunLogsTest.php","hash":"ae685e05f5915babefe2c137918e55bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetPendingDeploymentsForRun.php","hash":"3aeaa5c97423932bcdeefde735feace7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetPendingDeploymentsForRun.php","hash":"38f1938f7d7fdf28fcd5d1eba64cbf7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetPendingDeploymentsForRunTest.php","hash":"497ad6b3c056f69d6a0fd814a7c78ae2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReviewPendingDeploymentsForRun.php","hash":"a4d5ac262b035de8f42a1d1892b8da66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReviewPendingDeploymentsForRun.php","hash":"5a7f47c72fb883db8f4adc06a1852e4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReviewPendingDeploymentsForRunTest.php","hash":"152bc768e12a7facd33b61282ee832de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReRunWorkflow.php","hash":"f0d07738f37a0ee389a12c995b55e369"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReRunWorkflow.php","hash":"ea1553580e0f69a39e77fc716ac24035"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReRunWorkflowTest.php","hash":"367d16c601ec4a9efe0d75aff538b40e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ReRunWorkflowFailedJobs.php","hash":"8bacb6b78efcc3288e80f6494c41d895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ReRunWorkflowFailedJobs.php","hash":"3a919511444e8b3d10b0bc0fab2fa9b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ReRunWorkflowFailedJobsTest.php","hash":"b02e10a2291c332936d809a5c8fafa72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowRunUsage.php","hash":"344a8980d17e3a29dfae6337782999e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowRunUsage.php","hash":"28ab4d732c90a9ae1a3310a4a794a231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowRunUsageTest.php","hash":"c6676edc0ed804f18f7e5bcac30e63cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoSecrets.php","hash":"b97d764153aa4f6bf30f98689d4b700e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoSecrets.php","hash":"48b525dd371a8d8684f1dac45a94609a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoSecretsTest.php","hash":"728f7fcbabae03c1a6f2eeaa29217224"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetRepoPublicKey.php","hash":"431188141eed63803b5a681c82065e94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetRepoPublicKey.php","hash":"52f1992fe5613987921423797921cdd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetRepoPublicKeyTest.php","hash":"dd1dfbb068d522e65b6d4fa2871be596"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetRepoSecret.php","hash":"d93ade26ed3820047b08c14311b3b219"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetRepoSecret.php","hash":"611e3a5b549aeaecb23f8f22f3ff2bc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetRepoSecretTest.php","hash":"af28b85b6b08cc209904bacc68655e1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrUpdateRepoSecret.php","hash":"8c814ac658ea50be86a065d21f2b8205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrUpdateRepoSecret.php","hash":"7cc622cebd743409c9e3468f3886483f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrUpdateRepoSecretTest.php","hash":"b160b097adf5ccb27d4103214a0e3bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteRepoSecret.php","hash":"24649f3d81d7e98c935bcf69b3ec9a42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteRepoSecret.php","hash":"7890147cca803235864c7c814133bbec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoVariables.php","hash":"f95e7fffb72ad356c5d92525c2616b93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoVariables.php","hash":"7d18bdc7cd827ef2d144f7ae801c70ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoVariablesTest.php","hash":"1b3ad92e873ad1a3380afc72b695335a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateRepoVariable.php","hash":"e916b0afa1a22ae30c386d4601dbdff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateRepoVariable.php","hash":"c2f3be0fb507c35b3c7c6e28671689d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateRepoVariableTest.php","hash":"4eb80a732fe75507e102027b083e1a60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetRepoVariable.php","hash":"308b73e1d5985482f15c72ce2045df21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetRepoVariable.php","hash":"019177abbbee9f40f76e6292676c20f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetRepoVariableTest.php","hash":"2b63aa6d8ff097086c70f950203d7fad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteRepoVariable.php","hash":"1a33a7ac582dd0a4e6f4ffd094f15f44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteRepoVariable.php","hash":"7b7b48b6e619e8b95b5500d009852032"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateRepoVariable.php","hash":"616bb2ee0a47bc7ecbefb1977d0f2fab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateRepoVariable.php","hash":"94bafad16f767f662f7401375a2ac5d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListRepoWorkflows.php","hash":"f7fc9a7f19f665ca4974aba1bd98bd3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListRepoWorkflows.php","hash":"8205a65ec09742b4a25c30c2bbc2681f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListRepoWorkflowsTest.php","hash":"585734ff8fcbe032cacf2afc7f168edb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflow.php","hash":"dc6412052b6cd6f3a9ef1fb8bfccab5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflow.php","hash":"5463d57526d267c626a14e73042206fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowTest.php","hash":"b027adfb4ccf1e8a30e123490396fba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DisableWorkflow.php","hash":"3691f13b4262f8f0ecf48baa5d1d6375"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DisableWorkflow.php","hash":"fce2c7ba610a8557106871551cbb23f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateWorkflowDispatch.php","hash":"3d39cd97f7641909a423c16a7ae89d40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateWorkflowDispatch.php","hash":"3aee1d464ccaba65a9035283f961f3f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/EnableWorkflow.php","hash":"4f38fcb7a2edb1d803f480b3dcc92380"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/EnableWorkflow.php","hash":"a92e67ec418861d89f02d4bd7e183ff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListWorkflowRuns.php","hash":"081d0b93db06310390606936f3d7211e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListWorkflowRuns.php","hash":"cbe3f141b952c5298a8f6b4647f31392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListWorkflowRunsTest.php","hash":"0250185d77ca140a48538a79d3c3ea6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetWorkflowUsage.php","hash":"cd8fc9f4f4e817948324fb64bffec8de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetWorkflowUsage.php","hash":"7fb085c4d9935f09237026468dc76eb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetWorkflowUsageTest.php","hash":"115c2c2620aa923b1691c944476318d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListAssignees.php","hash":"c242f9a7dd32b72e8e46eef72cd3eff1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListAssignees.php","hash":"2585449b380113ecce51c22537d6c052"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListAssigneesTest.php","hash":"99263a54aca41a7882f2ba6ff9ba21f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CheckUserCanBeAssigned.php","hash":"6a9d610d965a9d39af769fc14f4ac206"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CheckUserCanBeAssigned.php","hash":"c1f71f11ab69c14a7d79414cbcbbdc0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CheckUserCanBeAssignedTest.php","hash":"21473a50e2efedb73633e4c575200cf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListAutolinks.php","hash":"07eb797918858d860b900daac7b7e517"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListAutolinks.php","hash":"ff5391275ae464f2195ef6cee765ad30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListAutolinksTest.php","hash":"c78eff6017ac5e7827884fb1ef92f247"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateAutolink.php","hash":"942dcdbd8cc81adbd79ead5e86773ee7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateAutolink.php","hash":"a61bb0bcb26e73f789faec8dd903ef90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateAutolinkTest.php","hash":"619e4f08d2d01f6671234c878f5b36e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAutolink.php","hash":"8b43e55f57234a012ba36abf4fdd1ce7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAutolink.php","hash":"392b9aa4f32ff54914e3b2460d0bbd9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAutolinkTest.php","hash":"5fe03d2ec8ce67807af602714ef7db42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAutolink.php","hash":"688dee061ac955d3af19679b5f012295"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAutolink.php","hash":"2ed9d992a4b97335950aab67f21629c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteAutolinkTest.php","hash":"73607053807105dc2edd7f327658c7bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnableAutomatedSecurityFixes.php","hash":"f84d59d414441a63044fc7b8bb6a7f67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnableAutomatedSecurityFixes.php","hash":"e02f95495b02ce11657d93933cf1dc92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableAutomatedSecurityFixes.php","hash":"3439808f62f189b9ec5a6a9883444705"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableAutomatedSecurityFixes.php","hash":"671654bc809064e6d99489e27f77a4b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListBranches.php","hash":"59260e9b7ca542284bc4450c2662a83a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListBranches.php","hash":"616d86d9679505cc28e221e798a7d6a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListBranchesTest.php","hash":"068492453604f20b78194925272ee93b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetBranch.php","hash":"7eeb3830d240b1447d35574bc767a767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetBranch.php","hash":"a624610991d0e5c3bb7d4ca11a15837d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetBranchTest.php","hash":"c4588b6dfbc097aed7ad260cb7313a2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetBranchProtection.php","hash":"bac2c21642d7f11996a7b74ee92a248e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetBranchProtection.php","hash":"aeb147d11c9fa619c00ff7689a596aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetBranchProtectionTest.php","hash":"2db7e78dafd7e203de09d8043554dd55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateBranchProtection.php","hash":"b2d20b3010ed30780e482c3262a22156"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateBranchProtection.php","hash":"c6c84625db72680d51c54fb2e06407b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateBranchProtectionTest.php","hash":"47478c6b7b873aa74a40e6bf1d4dd7e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteBranchProtection.php","hash":"f9f1ea78269f9ed053c65ace9ad811de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteBranchProtection.php","hash":"546cdf00ac27676f940b247ca10bfdd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteBranchProtectionTest.php","hash":"5bc03331deed6b0e7aab91b9e18f7160"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAdminBranchProtection.php","hash":"c0c8172ae22abd961be32b0a45a00f15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAdminBranchProtection.php","hash":"e9fa42cbb5f1198f8a9d38ad52a83925"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAdminBranchProtectionTest.php","hash":"de1577b5856e7c405645ab7f889d8592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetAdminBranchProtection.php","hash":"25a5fa1938d73098fd56f214f15c6939"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetAdminBranchProtection.php","hash":"1df27d9577e74bb8158b69809b03fe4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetAdminBranchProtectionTest.php","hash":"4b0310b1b2b878be7e3c9651d38cbf01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAdminBranchProtection.php","hash":"7f98493da6538bcb95ddf8d0b0e24951"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAdminBranchProtection.php","hash":"2494deeeb59fd4bbbb0b1b860ad12d21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteAdminBranchProtectionTest.php","hash":"9e37674469c2e1d566c92e4bead8816d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPullRequestReviewProtection.php","hash":"ac0179515766caafed1872f97821d8bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPullRequestReviewProtection.php","hash":"d01423894827b3bd9769e6bb34bb9b77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPullRequestReviewProtectionTest.php","hash":"d558c570bd1e274a1aca0f3a975de89a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeletePullRequestReviewProtection.php","hash":"081520a9b87c031a0f9fcc60aba3d537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeletePullRequestReviewProtection.php","hash":"05bc8a69e4d9903c704a98c07239aea0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeletePullRequestReviewProtectionTest.php","hash":"f321f1efc4be9c48b9329eded817dd56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdatePullRequestReviewProtection.php","hash":"35c43f1560dc38003ce3341b9f1ad4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdatePullRequestReviewProtection.php","hash":"f0b5bc23df1242490735978ba7022580"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdatePullRequestReviewProtectionTest.php","hash":"7e5c8844e74e7e02ae7f81fdf154e99e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommitSignatureProtection.php","hash":"2f9fc4691a85d16645e3979a31721d7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommitSignatureProtection.php","hash":"d768548a5356c3c353b672b895186758"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitSignatureProtectionTest.php","hash":"f12c612748a7df105f6618152ed975f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateCommitSignatureProtection.php","hash":"84b2f9ac37c353dbab8cc4daf0cc472f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateCommitSignatureProtection.php","hash":"d0398f617481d43af5799a54df5aab6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateCommitSignatureProtectionTest.php","hash":"1af6db454cb7d71a06bb15312cee3e6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteCommitSignatureProtection.php","hash":"88b3694673d3712db8c9a15d143678e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteCommitSignatureProtection.php","hash":"694e05d42b50168999b97c89b6945713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteCommitSignatureProtectionTest.php","hash":"a804e39ee4ae600b2001569408c85fe0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetStatusChecksProtection.php","hash":"2533e6118fd200d12322139094d4a8db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetStatusChecksProtection.php","hash":"21ec96a98ad81a20fa845f3f5b1c4eae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetStatusChecksProtectionTest.php","hash":"dcc8914e0ccfb7c6ab8d04c22f06dadd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveStatusCheckProtection.php","hash":"d3d18018225feca61740376ff39d82a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveStatusCheckProtection.php","hash":"b0e96668dc8797d773897beab74ebde1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateStatusCheckProtection.php","hash":"7cf6c05b4d88c5df0dbb4274de09f797"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateStatusCheckProtection.php","hash":"0080483e829a0ed316aa1d6b03743b76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateStatusCheckProtectionTest.php","hash":"40bea62efeb1754d8c90fd51b74ec5a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllStatusCheckContexts.php","hash":"74f80879d51127ac597cbe066c07d7ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllStatusCheckContexts.php","hash":"75606935fd6d13024ca87678f7dfdaff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllStatusCheckContextsTest.php","hash":"79117c07a8fc3ec5564c097dc4e2425b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetStatusCheckContexts.php","hash":"601c17d152bdc5e44f29df176cc856d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetStatusCheckContexts.php","hash":"a044f40b09751e628117bcad26ca902a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetStatusCheckContextsTest.php","hash":"8cb0af0311c742ee1695abff52550216"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddStatusCheckContexts.php","hash":"5839443cf14ee016ef9b6a2caf016ab9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddStatusCheckContexts.php","hash":"7bacbcf6aebdcfd7918b6a9ea1d3b546"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddStatusCheckContextsTest.php","hash":"b478374400ec0c5b1a365b531e82a78a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveStatusCheckContexts.php","hash":"3fedce38e15bcde242a33ac45cd925a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveStatusCheckContexts.php","hash":"3b0b558a2ce280770713cba3eb5a580c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveStatusCheckContextsTest.php","hash":"84cebd15fdb99d5a218e31bf954f0346"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAccessRestrictions.php","hash":"2eda9f1828c4f489ebc379dc379d3977"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAccessRestrictions.php","hash":"f22afc1634f3b5cabf3d850670380113"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAccessRestrictionsTest.php","hash":"78b0b085b4ac7744bef915f770a78c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAccessRestrictions.php","hash":"007b39be775d34d9809fc2de709d1f6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAccessRestrictions.php","hash":"f739225da86595a7e01e6b2f156358d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAppsWithAccessToProtectedBranch.php","hash":"8c63d1a7cd8a2b1e3443379e57364ffb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAppsWithAccessToProtectedBranch.php","hash":"57036cd74f0113ae6ec263ac74ef17eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAppsWithAccessToProtectedBranchTest.php","hash":"1335916d0a16a2074dd365a98ad116a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetAppAccessRestrictions.php","hash":"c1a2d5484ec4e66f8a9792a42b7372e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetAppAccessRestrictions.php","hash":"a8555b58e53d3094de4db40dadb7947d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetAppAccessRestrictionsTest.php","hash":"bcbcfd148a2ec886cc69fd7f67573707"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddAppAccessRestrictions.php","hash":"6a7ba1f96e263ebfbad32bd93b056226"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddAppAccessRestrictions.php","hash":"94f7b13378071ab680c677a1cb8d6ae7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddAppAccessRestrictionsTest.php","hash":"c26901261157ff30f5e4a8b0e5729b4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveAppAccessRestrictions.php","hash":"04e710edc14866863d2599eeade2383e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveAppAccessRestrictions.php","hash":"da029b050580450b6566fc6ac1e507f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveAppAccessRestrictionsTest.php","hash":"3b5e2fe4b4a4e39fe47e7b74cace558a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetTeamsWithAccessToProtectedBranch.php","hash":"39ce79059ee476e873fab1381b5da465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetTeamsWithAccessToProtectedBranch.php","hash":"f2a271c2baa39876d53bac558e6cc971"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTeamsWithAccessToProtectedBranchTest.php","hash":"972fff818fd6b4a1e41efafe6b996b89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetTeamAccessRestrictions.php","hash":"3c4d0c4b134a17453126bb225057a6a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetTeamAccessRestrictions.php","hash":"cfab2e3cb970be3916fd9b992e3b6424"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetTeamAccessRestrictionsTest.php","hash":"0dffc8d9212616fd3ef591a10256aba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddTeamAccessRestrictions.php","hash":"952bcf2be20f5b21c145cf94b03f9c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddTeamAccessRestrictions.php","hash":"cea7bc18904b64dd9963e45dd41e10e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddTeamAccessRestrictionsTest.php","hash":"abd8b8bd26c34f514a8391005ea29a96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveTeamAccessRestrictions.php","hash":"4fdc65608fad53d6f9e94304cb9cad45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveTeamAccessRestrictions.php","hash":"cc99a48d57da054bdf87909b99315e21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveTeamAccessRestrictionsTest.php","hash":"dfa65d58256c5353953e3d53ac3012de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetUsersWithAccessToProtectedBranch.php","hash":"e5ecf287a3ef1580a8301f8f34ae24ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetUsersWithAccessToProtectedBranch.php","hash":"7801153c3a8436a5b039b9e31b06fd4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetUsersWithAccessToProtectedBranchTest.php","hash":"caea0d7664ef04612b421af7e7370d9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/SetUserAccessRestrictions.php","hash":"1d38838c40c6f5f7dbb79c44021799da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/SetUserAccessRestrictions.php","hash":"dfa9f74296a77000dede4935bc12b5de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/SetUserAccessRestrictionsTest.php","hash":"c409446c6ed6505dd23a4b58b2032c6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddUserAccessRestrictions.php","hash":"988cde84845890abd1dd3525d257db1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddUserAccessRestrictions.php","hash":"fa226476395b1a9278f2c1b3d19346e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddUserAccessRestrictionsTest.php","hash":"70f100d9b50114a42d29b05a19559f02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveUserAccessRestrictions.php","hash":"7c46576c8f1a1fa729d30ead14bbab21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveUserAccessRestrictions.php","hash":"65b3c0200aa09f61a3d0cf6afe147da8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveUserAccessRestrictionsTest.php","hash":"28efdd5b47e59f1bb04d6aa64e989e3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RenameBranch.php","hash":"c23b32eecd00cdd23e837d4d9281f953"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RenameBranch.php","hash":"289dd3ea697ee433896a46ccfb38a002"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RenameBranchTest.php","hash":"9bfa05ebe596679e9e1b3c1bcdf3adcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/Create.php","hash":"0ae2e13f8eb4d4f57dbb23f502470798"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/Create.php","hash":"a200f77d92b6940dec99322ec3f88673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/CreateTest.php","hash":"3302ef13643a1358711db9268db2cc17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/Get.php","hash":"d58456f97fce8deeac9dc1dfc77fd7c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/Get.php","hash":"4e376c697a165157955683f9a4988f37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/GetTest.php","hash":"8893bc13a0c38760d3bd5e0d0f84ec59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/Update.php","hash":"674899f04bbd84c0d43e48ea08299021"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/Update.php","hash":"b8ec184ac1ccb4d8b6029222ac32b248"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/UpdateTest.php","hash":"8dcfc18f24afb7d803be475a8327bbd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListAnnotations.php","hash":"55c85cb0541eac5989797ef108dcd661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListAnnotations.php","hash":"59aca505d207668ecc1b940235e0418b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListAnnotationsTest.php","hash":"880f8e96d18af0b55fd3f42f7440fa6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/RerequestRun.php","hash":"c0f8abe6917bd5983dc6a522de76f061"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/RerequestRun.php","hash":"66095799a342c340716780f72b450d24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/RerequestRunTest.php","hash":"65d76acbdba8b9146f3cceaa9333c014"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/CreateSuite.php","hash":"8fef82f15726c41ddbc8bc1a921c5b70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/CreateSuite.php","hash":"f53ca59bd39706bbadd8b18e3b7d9d4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/CreateSuiteTest.php","hash":"a47248333ff6ccb985eff7ccbc6bef71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/SetSuitesPreferences.php","hash":"4b2b56d42135b709131734d989e41862"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/SetSuitesPreferences.php","hash":"703320e09ffac6bd70041d09e9556589"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/SetSuitesPreferencesTest.php","hash":"0632e920d1d1808e4c857294acaee43d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/GetSuite.php","hash":"4205d1004b3ca4e3ce1b30bedadf481f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/GetSuite.php","hash":"34b14c810a721e78d26fd103813d68b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/GetSuiteTest.php","hash":"dd32138aa57b64c0155c181f529f7b44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListForSuite.php","hash":"ef04e5c7ae6b6852de1eb8cff887ccc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListForSuite.php","hash":"afa1ebded972c393de16d0dfdb8d630d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListForSuiteTest.php","hash":"98d5ff4c7b5306fc6134422809961371"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/RerequestSuite.php","hash":"bb2006aff2c547d601169e80ef524a70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/RerequestSuite.php","hash":"144c52f2455ce45d22fdf3fc5c80efb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/RerequestSuiteTest.php","hash":"4d091d8a7d6ea6cafd8b21e4a4d3fab2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertsForRepo.php","hash":"1f9aaf769449e76075ca9ae76d8a02aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertsForRepo.php","hash":"4c8f32a956c2d182adfe9d1014db850f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertsForRepoTest.php","hash":"a2800d4e4582cc9c35f9f8d593dacbb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetAlert.php","hash":"b3934c4970ee99212ef4f4db377ded2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetAlert.php","hash":"d0fd901a40f07bf8469f4f9b47426fd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetAlertTest.php","hash":"9cf4ba273dab8f4a779451b8c79e127d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/UpdateAlert.php","hash":"df0d537dd2e6263564ed53743452380b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/UpdateAlert.php","hash":"c011577ef449a98bdbd083574e624977"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/UpdateAlertTest.php","hash":"8b7048ae6d1453b5539fa8ae49a17c90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListAlertInstances.php","hash":"27ea83c44fd5b3f4cbbde92711787602"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListAlertInstances.php","hash":"8538917a51d35f5150c720f4252acf61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListAlertInstancesTest.php","hash":"29097b0634af63e48c7c7da74a11c270"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListRecentAnalyses.php","hash":"9bfed80e92bcc6de92fc0b501e4ddf4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListRecentAnalyses.php","hash":"65040848e8249a043d7fd03851c6d8c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListRecentAnalysesTest.php","hash":"88249ec4329548f9fea088419830f0ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetAnalysis.php","hash":"6cc9865221d0f8b794f7ebabb5a83af3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetAnalysis.php","hash":"6605ef3b1477bffc24dceb448b40b834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetAnalysisTest.php","hash":"3e6c5dbdd6ecb44ce6890aee804602e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/DeleteAnalysis.php","hash":"9cb18a57d2a52779fe9584ba6302b194"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/DeleteAnalysis.php","hash":"c18b1f15802b7af0c4f9c5080f469af7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/DeleteAnalysisTest.php","hash":"14587e30b37ce58c2b7282da92fefc6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/ListCodeqlDatabases.php","hash":"ed62e9a4742910ee1507ba9e5c0e992b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/ListCodeqlDatabases.php","hash":"5a326b936fcfe8ade28a302fe344d5f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/ListCodeqlDatabasesTest.php","hash":"4244a232df2a7be80b0e8a2e2a0dcd4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetCodeqlDatabase.php","hash":"3652cbdf5d9d8738c92ec37fea67ec33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetCodeqlDatabase.php","hash":"2bd6d0ed9df1b908e0f9a2c711bb52a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetCodeqlDatabaseTest.php","hash":"abd170e839a29e33d72e798a97810141"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetDefaultSetup.php","hash":"66d59c152c655854cb2200b650918ce7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetDefaultSetup.php","hash":"778912432573f0c1ccc11e7f596ef5f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetDefaultSetupTest.php","hash":"21116ca16138334d361f0495145451c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/UpdateDefaultSetup.php","hash":"b5fd55d3dcff5c51bc0060be5b960b4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/UpdateDefaultSetup.php","hash":"4322e0dc731badc93dc7345ffa3e0f28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/UpdateDefaultSetupTest.php","hash":"9b260a097ae3c431a5d74ecfce82583e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/UploadSarif.php","hash":"b0c4e8d0ba4cabc8ae52a4ff59079bae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/UploadSarif.php","hash":"ee3855049e6a53284be3fff92824ebd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/UploadSarifTest.php","hash":"cdcca5ff1c1afe41253c600bf37635c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning\/GetSarif.php","hash":"5271d6f694e98c1161091beb46d2d72b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/CodeScanning\/GetSarif.php","hash":"8791fc8b9cdf802e4542b2a4cdc469e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/CodeScanning\/GetSarifTest.php","hash":"858d077a5bc7465d68f743ccb330a9d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CodeownersErrors.php","hash":"c172ddcbe6589a977b610190a735bd24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CodeownersErrors.php","hash":"f5b4597dcbc8bc03ccb2ca54cd5ab1e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CodeownersErrorsTest.php","hash":"a71e9033d9e966575bceab230a0d756c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListInRepositoryForAuthenticatedUser.php","hash":"6450bc74f6477cc35308350032ff1ccc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListInRepositoryForAuthenticatedUser.php","hash":"b419146dbbe1f3a68598814ad26c7cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListInRepositoryForAuthenticatedUserTest.php","hash":"16884afefb701781ea24831382bbdf8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateWithRepoForAuthenticatedUser.php","hash":"38025c842bdd2bd56127244525b8edcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateWithRepoForAuthenticatedUser.php","hash":"0e0cd302f832a4e7b4b272504878b410"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateWithRepoForAuthenticatedUserTest.php","hash":"a24a17be46b90c0f45bc50db8e0e3b6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser.php","hash":"8000d9512b3e7aa3f89b3634c0bf5117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser.php","hash":"8157c396d805f1b110358722b498c186"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUserTest.php","hash":"60271c3fb1596a03fc28d76a307f25bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/RepoMachinesForAuthenticatedUser.php","hash":"f7a7025542815f0075de6e64cd267a42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/RepoMachinesForAuthenticatedUser.php","hash":"9ae5285ddc5d8711d1891b49414ea197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/RepoMachinesForAuthenticatedUserTest.php","hash":"caefe90e749e0bcc37ca869a0b0ec944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/PreFlightWithRepoForAuthenticatedUser.php","hash":"9b6e65b1d69d3cc6f982211c07942fef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/PreFlightWithRepoForAuthenticatedUser.php","hash":"dfc18b386d89e91e0038fba458c7e6c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/PreFlightWithRepoForAuthenticatedUserTest.php","hash":"1fff68753304710ca71bcdf382a8c4f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListRepoSecrets.php","hash":"b44b9f75de3dda61620405f0ee64552f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListRepoSecrets.php","hash":"8f8c71627883d06ce02a796a53c5a147"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListRepoSecretsTest.php","hash":"a2ce6ba7d73efbfe9adb76582634d790"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetRepoPublicKey.php","hash":"ec0318fa178ff6f147c7cdf63f76eba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetRepoPublicKey.php","hash":"102cf8410aa85de0c3cc7f6efd6d1958"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetRepoPublicKeyTest.php","hash":"361b259822179ba5a7281d2c70c5df22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetRepoSecret.php","hash":"258f7f76ff1af81e88f903b04007b68d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetRepoSecret.php","hash":"1ff0ea5569bfb96831a70fc1733eebd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetRepoSecretTest.php","hash":"7ef15b283876ee003c408124fa09829b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateOrUpdateRepoSecret.php","hash":"00dd28fa5b7c601a5e70d1514a2e87cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateOrUpdateRepoSecret.php","hash":"ecbc4dfaac7076af7cc15521cf35acfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateOrUpdateRepoSecretTest.php","hash":"c950a9154892d91dc469c05a4725275a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteRepoSecret.php","hash":"a00e0d4218ad5837354791ec2982f926"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteRepoSecret.php","hash":"c27bffecf76c75e257c2c3bbb5535ce6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCollaborators.php","hash":"f782a02ff2bb5e22f93d47a3986d61d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCollaborators.php","hash":"d0f98634beeb711a7b248625992a25c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCollaboratorsTest.php","hash":"7885201bf2e4514007d2acfa0194c3f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CheckCollaborator.php","hash":"ead5cbf5d53fd2601a8bde85c2019681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CheckCollaborator.php","hash":"99768e14d5ce33c22c0f621e09dbc0e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AddCollaborator.php","hash":"54863cc3c56641170d78cf627d51c04f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AddCollaborator.php","hash":"b80a176eca7791de8dcfee31716de464"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AddCollaboratorTest.php","hash":"f6b295a5222f93b52f7e788948660999"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RemoveCollaborator.php","hash":"c32ff89e22c605cb65ef2db1eb01f7af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RemoveCollaborator.php","hash":"4d7ba010022e7e08de0d943629b79e40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCollaboratorPermissionLevel.php","hash":"9c45452e8951ff41d7134425034c7c27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCollaboratorPermissionLevel.php","hash":"40844252f559d5fa1970ac4cede99861"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCollaboratorPermissionLevelTest.php","hash":"976f84dbaeda7e92b26a7bcd77389b02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommitCommentsForRepo.php","hash":"49794c5a9edc200398478c8dd13f7700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommitCommentsForRepo.php","hash":"709f1984938e8efae67686fd6e31c716"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommitCommentsForRepoTest.php","hash":"e37770e711332c11d747a63df8fb7d5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommitComment.php","hash":"9a9ba3a0554e9d6fed98c2b32f628ac3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommitComment.php","hash":"1aa2530d72fc748ad88c464a6fd71ca1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitCommentTest.php","hash":"ca79c6fb26f6af18aceeb810aac180a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteCommitComment.php","hash":"cdb44317970dc8dad08c7b77750351cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteCommitComment.php","hash":"ffa1c0589e46ebc486cc5ff49800914a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteCommitCommentTest.php","hash":"de808563a11b51cdea9c51e02a8c8307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateCommitComment.php","hash":"cce4b9a72dd8b5c64ff18a6e2b077229"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateCommitComment.php","hash":"3068af55f16fd9756be916379b149c23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateCommitCommentTest.php","hash":"468621e9d8a65dabf3df0f46e2cbf43f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForCommitComment.php","hash":"aacf509d159e297300218e7a0b19e298"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForCommitComment.php","hash":"d789d6da399bd5b93469a54a437542c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForCommitCommentTest.php","hash":"32bffcd9be80ca7dff432fa5b65d47d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForCommitComment.php","hash":"22f367db480af84a106a02e29437a103"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForCommitComment.php","hash":"003105bec5047c0cd135730a61d30fc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForCommitCommentTest.php","hash":"030c64486f9f7e40bbdaee0f75054ee6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForCommitComment.php","hash":"b389ab2bb2c977f75fefed666b8f4466"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForCommitComment.php","hash":"37e65f0b4a8cf07212dcfccb0193ae2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommits.php","hash":"40102e27aa5c3b425a52c3e072f63c95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommits.php","hash":"a50c1116a39c5d3ddd1c443d24e4d0fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommitsTest.php","hash":"99ff03c1fbe870e2af5fc8d796350aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListBranchesForHeadCommit.php","hash":"50c9b87396af4dfd0c57938b45946e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListBranchesForHeadCommit.php","hash":"b62b4a6683bb84470d11a06222173e56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListBranchesForHeadCommitTest.php","hash":"6318b67285f6cc9ec76d88dcab7e22ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommentsForCommit.php","hash":"40dc65c8153a4d5d8a1326e1bf244807"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommentsForCommit.php","hash":"acfc835ebc9d90423d8ce9ec62579afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommentsForCommitTest.php","hash":"aa2df63fa1cefee02bbfbe8f01795083"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateCommitComment.php","hash":"b4a0956106778aedc8ccdfd00f9be293"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateCommitComment.php","hash":"e15c2b47f84e02d034f0d995c1419c8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateCommitCommentTest.php","hash":"42cd83102a8531074d111fa12016cd5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListPullRequestsAssociatedWithCommit.php","hash":"306988c222dc27b55afc9b437672f8fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListPullRequestsAssociatedWithCommit.php","hash":"ebf5c8408dad46dfdc4e99bf9e7bf1ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListPullRequestsAssociatedWithCommitTest.php","hash":"0a7da8ccf839ad5def0dba06b141bdab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommit.php","hash":"c1ff64662b2931f93c970b89f4b0f5de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommit.php","hash":"e56c8d7056ad8b36f31abab859ee06ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitTest.php","hash":"91acc406704566602882c935ca06a975"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListForRef.php","hash":"82d09fe6bda5701f3c712f83f3b88ce4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListForRef.php","hash":"ec76d2724ff978534de61b3c6d2ea9d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListForRefTest.php","hash":"ab6fb0e6fb666fe95faadfcf45996317"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks\/ListSuitesForRef.php","hash":"eba4a4485bef742bf122ef3828dd3224"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Checks\/ListSuitesForRef.php","hash":"fe924970a1dbb75148d582cf338d7a6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Checks\/ListSuitesForRefTest.php","hash":"3e775105d79ad4ee7664efc2713ed3b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCombinedStatusForRef.php","hash":"e6f7f0807056accab967ef7e2c904b72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCombinedStatusForRef.php","hash":"c6eedb4f98a39d0d494c9c34ab58e067"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCombinedStatusForRefTest.php","hash":"ed6d9358389260b1c4e6e9bdf5af7928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCommitStatusesForRef.php","hash":"2fe4adb69a779eaf2621931e96ccbd11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCommitStatusesForRef.php","hash":"c0bc3d7d4897a741da952098c89ad7d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCommitStatusesForRefTest.php","hash":"baf0f5f54e01264bbcb35ce4b0a64872"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommunityProfileMetrics.php","hash":"5994c81fcec3a5ec86d5b79ac136fd0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommunityProfileMetrics.php","hash":"bc87e4a1e3ee8cd431671c8e23179ceb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommunityProfileMetricsTest.php","hash":"829a424bc0112ce041d265862ebd4929"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CompareCommits.php","hash":"784a0964672ac9eec2bd72ee54c65ec8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CompareCommits.php","hash":"c406bcb7f86718d93759fb09fceefdf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CompareCommitsTest.php","hash":"45ab138ed331ed521e1519cd271cf3f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetContent.php","hash":"685086d0b17e310475ff5d1fdd2ce2c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetContent.php","hash":"79e540dcde098bc0aaf087cf80effed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetContentTest.php","hash":"ba312fbcfa9e3302b20895c6f90487f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateOrUpdateFileContents.php","hash":"7d94c87c191651c3013019ef5bd45b59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateOrUpdateFileContents.php","hash":"126722d050afc3358198f9d1ce9cf5f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateOrUpdateFileContentsTest.php","hash":"fa127aecddf853c9c143a81547a6bf99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteFile.php","hash":"836a034596085c1e79bc7b0c26ffbe5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteFile.php","hash":"d373e33ef4d754eb70f2cf36e8996be4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteFileTest.php","hash":"0003ef6dad884950abf6748ae94f4ce5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListContributors.php","hash":"c64633f83e615deef7bfee025344e0a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListContributors.php","hash":"b716b0f6be38065ed8267c1a8d44a20d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListContributorsTest.php","hash":"c5bd42853cad7d171366ac98699bff85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListAlertsForRepo.php","hash":"ef2562275ec15198058d6c3048f5caed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListAlertsForRepo.php","hash":"93d9502bbc102f5eb610a418df96c5b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListAlertsForRepoTest.php","hash":"a50ac992e1ea9b7555f69eacce51c6ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetAlert.php","hash":"755ee86a9531d1e4a2ed4cd35e9c9211"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetAlert.php","hash":"79952c0f0ab62c28643135f18da55874"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetAlertTest.php","hash":"db985532adb828abf80964ce290eab6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/UpdateAlert.php","hash":"1b7b513d3087c6f5985791a32a267f50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/UpdateAlert.php","hash":"17e1b59c27a06f0c88724dd2b90fae97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/UpdateAlertTest.php","hash":"eaace051a495cadc8371f384d098a816"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/ListRepoSecrets.php","hash":"6aa552b54e45314ec5bdfe806c09984d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/ListRepoSecrets.php","hash":"d5dc592853255a167abe53faffd0d6c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/ListRepoSecretsTest.php","hash":"d7e8b180586bf011560149d796c9b223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetRepoPublicKey.php","hash":"ef5bf64db3953349ab403607f3467fed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetRepoPublicKey.php","hash":"f4e7c5b5460c7aaea5703beb18d6a22d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetRepoPublicKeyTest.php","hash":"4a575bcc190478a21c7c61209034af33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/GetRepoSecret.php","hash":"73fd1cca221eaab794b51d3d538b354b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/GetRepoSecret.php","hash":"5fd291018bc69ff1526e65638973a562"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/GetRepoSecretTest.php","hash":"84ed7041c0b985c825f6a63a4d14ea0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/CreateOrUpdateRepoSecret.php","hash":"b5725b5e3b451d180a003a3700f21a63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/CreateOrUpdateRepoSecret.php","hash":"064d1f7b7c6626f8cc45e6ef1f9342d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Dependabot\/CreateOrUpdateRepoSecretTest.php","hash":"c4e71a4ac82b50c870545e3a1e8cfb24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot\/DeleteRepoSecret.php","hash":"66fac7e6e79913e2358830d4dfefdbff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Dependabot\/DeleteRepoSecret.php","hash":"60325a187c592178007b0e984cdabe41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph\/DiffRange.php","hash":"5770ca058fe8fc7246b3eba8aa2268bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/DependencyGraph\/DiffRange.php","hash":"e06ee13cda76797e4ea9b5310c25d7aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/DependencyGraph\/DiffRangeTest.php","hash":"2291d82ba366a0e8b45f9d5592a26f1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph\/ExportSbom.php","hash":"af9ca969d84dc1d104ed47c2ad51569c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/DependencyGraph\/ExportSbom.php","hash":"af2dce268dcf88f832c2169c850a7207"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/DependencyGraph\/ExportSbomTest.php","hash":"7a0ea5606853b8bb3ac49f7039ccb937"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph\/CreateRepositorySnapshot.php","hash":"b185c4455e59eae54088388aede1101c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/DependencyGraph\/CreateRepositorySnapshot.php","hash":"f4a259ddd2b24cf6233ee193ad36e708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/DependencyGraph\/CreateRepositorySnapshotTest.php","hash":"5cae243156bc7628bbb858e0cc039b12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeployments.php","hash":"f7fc12402525e6894c05db3204f0b407"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeployments.php","hash":"b52ab7a0426f585f5c28ab021523ddb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeploymentsTest.php","hash":"78b273bb47aaaee077314a65f226693c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeployment.php","hash":"177216af157c2dd6661e49ed90acf255"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeployment.php","hash":"3e9a7c0746664ba53ab7f095cbfdd02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentTest.php","hash":"5214ece58e6360200776006724fdefae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeployment.php","hash":"59b09876b1a23eef4adb9aa6d6aa0ff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeployment.php","hash":"115a3537d324526667616ad7864f3626"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeploymentTest.php","hash":"db4a8a7cf3dc82250de6c22629a0d6ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteDeployment.php","hash":"5ede777ba6722946804ae909b0bfb48b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteDeployment.php","hash":"5e8af3a217efe6a49fd85932df457d69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteDeploymentTest.php","hash":"dc9bf673ed1ad1b12a37de5d3a3372f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeploymentStatuses.php","hash":"ee93f6db5881f86a82144b0a973bf8aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeploymentStatuses.php","hash":"71477a738b108f9a701ca2410284c64e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeploymentStatusesTest.php","hash":"466ab8da23d976f58f673bf1326db699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeploymentStatus.php","hash":"878b423ac4a4bc836da37bcf8193bea7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeploymentStatus.php","hash":"9debc0a4df9510e52f7dd856f9585ec9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentStatusTest.php","hash":"b85b28fd7c2a9dd5cfd49b5e93cd6aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeploymentStatus.php","hash":"c02361fedd6117fed35ffd1d2857da19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeploymentStatus.php","hash":"f60a7b5e06d22d7939cf2a999839ce78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeploymentStatusTest.php","hash":"ddac9f4cc44c3037a569866f452e204f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDispatchEvent.php","hash":"2d9fd3097793b71334d60c855c3ed999"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDispatchEvent.php","hash":"db1f25c8cd340fe35daad1a51264e307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDispatchEventTest.php","hash":"69f16a2b0c3b2af2574072f463883c7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllEnvironments.php","hash":"645fc737d60905dd0a1003c0bd19bbdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllEnvironments.php","hash":"31ded94aa414c6254aa643dc83b069d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllEnvironmentsTest.php","hash":"2117435cb3209c190d310e85914d9fbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetEnvironment.php","hash":"15834129702f8d1f58752e6a8417d176"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetEnvironment.php","hash":"0e1ef57ad7748772f73a3b3b05e585e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetEnvironmentTest.php","hash":"e60831fdba7776356131ad52c7c5b808"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateOrUpdateEnvironment.php","hash":"0694dedac0fdcfe746a80c92a5d18fc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateOrUpdateEnvironment.php","hash":"27b710f4af6eb6b59fbb89357fa2e4ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateOrUpdateEnvironmentTest.php","hash":"c4d8d775adb15317d18bb363254ba0d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteAnEnvironment.php","hash":"ab196ec33fb5816f6e905b8aaf23e5e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteAnEnvironment.php","hash":"62794f8d01f95a793e4966b1b96a1767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeploymentBranchPolicies.php","hash":"b8893a0b93099267152ef47f22d6bb56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeploymentBranchPolicies.php","hash":"5d964228eb0a70659cd1e615ec870ad8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeploymentBranchPoliciesTest.php","hash":"e83726dfcc52dd8eab1b47d33e3a5d43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeploymentBranchPolicy.php","hash":"a3acef92a902c50ee30bd80527799322"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeploymentBranchPolicy.php","hash":"114b67bd847d9d9d9b74150b4be35681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentBranchPolicyTest.php","hash":"af10528dd17480c70027a8779e862bd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeploymentBranchPolicy.php","hash":"941f14e66a5309a22c1ecfa84fba21d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeploymentBranchPolicy.php","hash":"15eac038d80d85e0e4b62ef4ff30ff8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeploymentBranchPolicyTest.php","hash":"3a1834f3c23d42a8c75223e50ff812a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateDeploymentBranchPolicy.php","hash":"cc34cc3677214f44fa95d292b87bc11e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateDeploymentBranchPolicy.php","hash":"af50983613466ee5a52a61015c644afb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateDeploymentBranchPolicyTest.php","hash":"d1402e261bcc106f6da5c174d4035e7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteDeploymentBranchPolicy.php","hash":"ad7aa0ce34ce27ef773ce1a3b7b34055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteDeploymentBranchPolicy.php","hash":"4ad2026f19c83ea242fddcb5ecb3ee17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllDeploymentProtectionRules.php","hash":"19bc074f4986ff87bcb76e4fb2c029fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllDeploymentProtectionRules.php","hash":"c51385609b30f1abd1733f7835176390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllDeploymentProtectionRulesTest.php","hash":"6d285fe2f7d1699d580faf5bed54b049"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeploymentProtectionRule.php","hash":"788c2b8cb693fefedf3774238e127868"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeploymentProtectionRule.php","hash":"859a395c5746425dec22d42b9d7fbd2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeploymentProtectionRuleTest.php","hash":"924406628033178877d7b98f99417b31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListCustomDeploymentRuleIntegrations.php","hash":"0b7608251cd1348ddeec1d60bb33c19e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListCustomDeploymentRuleIntegrations.php","hash":"1b77a7663e8169a5e44a72b19089f35f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListCustomDeploymentRuleIntegrationsTest.php","hash":"cd4b5dccbfa45298b7654d2ecbd4c08f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCustomDeploymentProtectionRule.php","hash":"4d100f6af7eef60c809ea33f5a109cde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCustomDeploymentProtectionRule.php","hash":"1ef8ffc270ae2572ae4ad811dca05ee1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCustomDeploymentProtectionRuleTest.php","hash":"6d0dcaffac0cedb4a9cec58cc10c6942"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableDeploymentProtectionRule.php","hash":"abf3bb1a846cd57dff8a9627b6cbd9ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableDeploymentProtectionRule.php","hash":"b810856ffce94f9999c62dc283b19a4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListRepoEvents.php","hash":"23645d2dedd5fe39a3281dccde257528"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListRepoEvents.php","hash":"d68f7e99b82b1f8702b3d96899e93f5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListRepoEventsTest.php","hash":"b88f5a100c0dabc5a5523fed2b1e1b0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForks.php","hash":"d80788ffd0ec5f2b393c139bc32a6234"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForks.php","hash":"59c9d2575b87a78b3bf539e563bd61b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForksTest.php","hash":"d13e788cf149dfdf734c23ac8adcfc70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateFork.php","hash":"de7cd800ffe8415400345dda2f3d987b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateFork.php","hash":"6a023b9faebfb48ae939b4f069fb2d59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateForkTest.php","hash":"5870c098fc71e0afba733143758eb6dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateBlob.php","hash":"4bf7afb72147f73d48856667fbddc719"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateBlob.php","hash":"299a8c8ebde6acc0cf403a11546e86cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateBlobTest.php","hash":"72412f1135717385481f83eaa4be69fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetBlob.php","hash":"6445b9653c296256250f610e5aa54d60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetBlob.php","hash":"0439e8e5ea83779b469aa0f4dd626be1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetBlobTest.php","hash":"40e78deac9da112855180bdbbc586f1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateCommit.php","hash":"4c84fa18558ecb1b56ea5e6af1b12ede"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateCommit.php","hash":"32e358f54bd877313ac97eb1d186a703"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateCommitTest.php","hash":"27e5f08aa29d07a9452ebfc0eaa14f54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetCommit.php","hash":"3a6df1ce1c3a988a300d6a8d75025055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetCommit.php","hash":"d651cc1ccd05d5fbe0644e56581e2a98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetCommitTest.php","hash":"91947eca086d3ae4fdde54c13d03ecdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/ListMatchingRefs.php","hash":"80103efa5db1657bb24cea8cd9666735"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/ListMatchingRefs.php","hash":"4ff58d306c86e4cd1a00ec297a0ae5cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/ListMatchingRefsTest.php","hash":"82525fbf8e94bb1a37e1dee22474701d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetRef.php","hash":"83b1e1c86afa1732174976a2619291c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetRef.php","hash":"206b4ee99d77e16f3aee0942a4951236"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetRefTest.php","hash":"0646b2571b3106329ef69beb01dbdb26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateRef.php","hash":"47205791baa92fcd43c54fe76d366886"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateRef.php","hash":"7aa627e7c77bc93e29dddc009346154f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateRefTest.php","hash":"a3430306e7e82b1dc608f32097fa7fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/DeleteRef.php","hash":"3cbb1b10474d81b2f6a2bb2461dbb660"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/DeleteRef.php","hash":"ca129db217c67a41fe82002cd6f8f37c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/DeleteRefTest.php","hash":"611b9552e289603bdab7a9864e6f90a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/UpdateRef.php","hash":"81ace4496c3acd7ab7e9f91575478908"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/UpdateRef.php","hash":"9adb3139d5f4c4aa44c88cd2592ca891"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/UpdateRefTest.php","hash":"41f11593d87dad62f87132eca1b9f93f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateTag.php","hash":"5acc1f07da2d8861b56773e057ab63b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateTag.php","hash":"000833566306385da3356325b9779c08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateTagTest.php","hash":"21ca4a26607ef5364df32cfb16ef46a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetTag.php","hash":"b4b6b3834d369f8fd50fadb1c0a6f642"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetTag.php","hash":"d2830a88e03dabe0d2403f14c9396034"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetTagTest.php","hash":"fcfd5cdd46150b085c278f0067539ce1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/CreateTree.php","hash":"3979deb36636937bfeafa99906988c32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/CreateTree.php","hash":"4ef439b1f51f75ad45351094d3d3ec88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/CreateTreeTest.php","hash":"22a81a1f577c7f08a026d410ab7c9e64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git\/GetTree.php","hash":"9418605f8a590f006696a8c6c66c1fba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Git\/GetTree.php","hash":"c2f7a75c4ba8ca5a63e2feefd66c0b0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Git\/GetTreeTest.php","hash":"7e705fda8788065c91206daef313f867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListWebhooks.php","hash":"58d2ef33f9ceb22815d468a324f3e216"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListWebhooks.php","hash":"08c9debecf749d5605944a3c28bfd769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListWebhooksTest.php","hash":"a261df6f5f3471e69d2ad67b6252a67f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateWebhook.php","hash":"614d0b5eace35aba81ae37c1c3f4d2b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateWebhook.php","hash":"41e11273a97f16b81e4aeb40b0009ca0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateWebhookTest.php","hash":"ab857fbec31953845b18f4adbf898ecb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetWebhook.php","hash":"da76c095c2755ae583e42cf653b0b051"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetWebhook.php","hash":"7818942053b1483fa8173f27586f1b09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetWebhookTest.php","hash":"165caecd146288c8b93844f5aa3112e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteWebhook.php","hash":"147adb3572dd2cbbf6c38fc65f91f4d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteWebhook.php","hash":"efc12b3bad57f4f985c63f683063cb82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteWebhookTest.php","hash":"cde607cf222a56030a27c7337a0bec72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateWebhook.php","hash":"7daa875feb412aded1e78e015181a7e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateWebhook.php","hash":"96b5eca33b30e4b421df3865d7fc5fe3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateWebhookTest.php","hash":"789654a9dddb41d1410f9e8278a14e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetWebhookConfigForRepo.php","hash":"9c6395554cb092fb08ccbd344f85c260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetWebhookConfigForRepo.php","hash":"bdb84c30c5642a5eb68f7c23185f6ee9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetWebhookConfigForRepoTest.php","hash":"c2a966e0d3087cec5629a932c082cafe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateWebhookConfigForRepo.php","hash":"52aa6c6e8d06d82054950eaffe040df8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateWebhookConfigForRepo.php","hash":"9a340448312fa86018de218aea3824f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateWebhookConfigForRepoTest.php","hash":"88001142ad2059af02b9cf0d4a153687"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListWebhookDeliveries.php","hash":"441521c662a105fca4bec301773e2b0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListWebhookDeliveries.php","hash":"c6ba39c2d6e761abd73128123b9e50eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListWebhookDeliveriesTest.php","hash":"08cddf3e7ca406118027b2a08efdf3ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetWebhookDelivery.php","hash":"ef961d7a0beccf244d625da22690e19c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetWebhookDelivery.php","hash":"998ff5ae2c2b86b4803eea990cbb3120"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetWebhookDeliveryTest.php","hash":"529b5d2f32a7e575e63a445586160514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RedeliverWebhookDelivery.php","hash":"eb611252d469646a6d8d9f155f4b83d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RedeliverWebhookDelivery.php","hash":"6b524d0b06aedd707e667bdf350d3601"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RedeliverWebhookDeliveryTest.php","hash":"82de58d98957e269f71c4ea08f29a2c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/PingWebhook.php","hash":"1231468c469a65aed9ea0dcf913b7315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/PingWebhook.php","hash":"bf76a3fccc1c886c5162a32a36886bb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/PingWebhookTest.php","hash":"b4ce13825df43190bb8ba2280aed0823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/TestPushWebhook.php","hash":"9801e779be82a54402651a0bd6498189"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/TestPushWebhook.php","hash":"a83f6a0aabac7d212008192032a9cdc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/TestPushWebhookTest.php","hash":"508d7f1111ccf6ab73e7286a7845c732"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetImportStatus.php","hash":"8820eb5d51962dc84e2e7e2934a57305"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetImportStatus.php","hash":"90770ee9050266b709aa839cf246c6c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetImportStatusTest.php","hash":"1e903a2bca66021d74a35e19d8dd02fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/StartImport.php","hash":"648d76fcd031001b9bac24821e09bb68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/StartImport.php","hash":"b5b9af2fb7e16892a2738a3f492ca32c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/StartImportTest.php","hash":"7c37d1d7932e795d6c55196024a3a6c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/CancelImport.php","hash":"a4a5f1162b5cf89ecf4dd2f1b5eb17c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/CancelImport.php","hash":"b8db32523c1f282a44d2c5829e183071"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/CancelImportTest.php","hash":"8622ee800fc1e1a60dca01926df9eab0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/UpdateImport.php","hash":"1a3dd00c681a0cc4787e1c15a4141dbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/UpdateImport.php","hash":"45ae7e34c3c1fed0eae441b87320ffa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/UpdateImportTest.php","hash":"588a210dcb829a500e14184e96d8826a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetCommitAuthors.php","hash":"23156ef42ddd0e70764c2d213f6413d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetCommitAuthors.php","hash":"bd885b6920ffe70c5e61d4d6551d9d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetCommitAuthorsTest.php","hash":"8035e0f4aa9ee5a36dde4dd53ba27102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/MapCommitAuthor.php","hash":"4ece684f93950c8acdf2a805c304eff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/MapCommitAuthor.php","hash":"9c903e135880507784ead3beff301f8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/MapCommitAuthorTest.php","hash":"8a4a321f891bde9adeff99fd91ee68c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetLargeFiles.php","hash":"5d77756a6667018aac99696a94134f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetLargeFiles.php","hash":"69b818ae5ce1d5a4f0786eec64f41246"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetLargeFilesTest.php","hash":"2eef13dd3591c4098153632b1ff7293a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/SetLfsPreference.php","hash":"0a9dd2dd6039bd3db7f5c1162af81bb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/SetLfsPreference.php","hash":"07c35fe00c53c90906ca96bc5c0c31af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/SetLfsPreferenceTest.php","hash":"198ba450287c3ff509bff81fae7426a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetRepoInstallation.php","hash":"e8c48137392dcf230f2f7e4ae3a2c388"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetRepoInstallation.php","hash":"d36ad63eaf99accb514f1e9ad15e7197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetRepoInstallationTest.php","hash":"d8046106462ddbe798212f194c68b0fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/GetRestrictionsForRepo.php","hash":"06089aa06083af5f58ba1530abe9e137"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/GetRestrictionsForRepo.php","hash":"fe674cc9c66e45731b7a9826f685f4ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/GetRestrictionsForRepoTest.php","hash":"be1cef46372b4725b6d21e5f93c464bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/SetRestrictionsForRepo.php","hash":"86941f0fb53fcc9fac6fda6060cf7fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/SetRestrictionsForRepo.php","hash":"c442d839cc4ce3618c089a0ab4ce72aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/SetRestrictionsForRepoTest.php","hash":"ba50b8b41822fdec3a13ef6e4e9c7aca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/RemoveRestrictionsForRepo.php","hash":"7b8f3b1caa5e13d9cd848f221c0c67a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/RemoveRestrictionsForRepo.php","hash":"b86404483bbb48c4b3917b3eafebc253"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListInvitations.php","hash":"fb2e3a87db43cc8c704c88d8af44b16f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListInvitations.php","hash":"3ffac925e7d9e37427593f22e61c5b09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListInvitationsTest.php","hash":"5f69102bedb6f38f23d94dc5eee9d8f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteInvitation.php","hash":"1752eae0cf70eb43be1dcb34ce13608f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteInvitation.php","hash":"ec616a877744b9b91cfbf213329e28fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateInvitation.php","hash":"114588d283fa01b9e86bd28ca9a71715"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateInvitation.php","hash":"ca799a135d19b532bdb05c83441a6700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateInvitationTest.php","hash":"afca7c0bd9e737762ad7da279a070163"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListForRepo.php","hash":"8ae9b8cb802849712c492a348ddfc5e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListForRepo.php","hash":"2933b35dbbfa577feb68817f59044e51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListForRepoTest.php","hash":"e7208694d4da1242b8707771e0aa4e0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Create.php","hash":"4ab067d220aa0fafd47f000912455738"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Create.php","hash":"2804713b9551d462c43facb202f6779c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateTest.php","hash":"9e903be2f26cc857ecb3a70546eec047"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListCommentsForRepo.php","hash":"d95d820f514e863733bd379f55e91f9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListCommentsForRepo.php","hash":"4c1f6d36cabf9ccf52c6898a337aacb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListCommentsForRepoTest.php","hash":"9ba82ffcc82eff07e9c9bf599810afea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetComment.php","hash":"46579ee59b81f27293068d4d5a7705d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetComment.php","hash":"bd921c426cb0a59bc01cea8cd6d710bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetCommentTest.php","hash":"e96d1a834cba6f581caca0ebcfaf8dbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/DeleteComment.php","hash":"1b4a160dbebfe5ee2e2272ce48406dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/DeleteComment.php","hash":"861d7fc59d06137ec38527ff565943e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/UpdateComment.php","hash":"3c5a0822c5e17ee90e16ecceafc98685"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/UpdateComment.php","hash":"e4867c4f625898cc38fde18477475145"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateCommentTest.php","hash":"15fa956fe8c64cf6b074682b9098cc6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForIssueComment.php","hash":"47633ab11a62d563888c5d7f17da4840"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForIssueComment.php","hash":"9499fa0a244ca3090a9547ac874f0e10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForIssueCommentTest.php","hash":"9aa242e6b9e813ce2fdc08a72fce6305"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForIssueComment.php","hash":"711ccb2e609380e17983492a54aae9ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForIssueComment.php","hash":"604bbe85dad8f99e8b4e75b322deaa90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForIssueCommentTest.php","hash":"6fca6a04b722c2ac40fb6664db175c7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForIssueComment.php","hash":"e7d9d780900a081bab2057f486a66455"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForIssueComment.php","hash":"7c22abaee692e61bbe2f1f35217c66b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListEventsForRepo.php","hash":"ad3460879e2ec74775883b7b2aad23b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListEventsForRepo.php","hash":"44f46928ab7067a5de2fe30ca35673c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListEventsForRepoTest.php","hash":"a269dc5c2891864681052e1762faebe3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetEvent.php","hash":"732f3dece2fc2bb952e8f47bee1095a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetEvent.php","hash":"e0b2b0052ccdbe56be2317d8afe3d874"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetEventTest.php","hash":"485d8931e64518162e4d6ab1cb26aea1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Get.php","hash":"99c3900fa65a854680119e6c7701b78c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Get.php","hash":"7e88815757d996acacc6a1fa2150bb84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetTest.php","hash":"36db2bc76553b2fb3d6bccaed1d536ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Update.php","hash":"6b43ef07f109b753495336650f0cda12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Update.php","hash":"1cb2a9c1f86b51ffd86d7ba024001da2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateTest.php","hash":"5a7d126553a35b9574aa43499f539817"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/AddAssignees.php","hash":"19a957e25d6fd199ec3dee202c038592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/AddAssignees.php","hash":"cd001594d75a3559c5690ebc3d176712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/AddAssigneesTest.php","hash":"6e7d86d2b527763790abdb28bec5a1a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/RemoveAssignees.php","hash":"ae2afa5827c38d033c86a0b684b05fba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/RemoveAssignees.php","hash":"781f4bf2627a251aab2c6da1ff22a6da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/RemoveAssigneesTest.php","hash":"fe96847c55c580f969bc403525326400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CheckUserCanBeAssignedToIssue.php","hash":"91fd6c8aef2022b544891f0e7d77a678"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CheckUserCanBeAssignedToIssue.php","hash":"060bae03416195978de157269e11d73f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CheckUserCanBeAssignedToIssueTest.php","hash":"fdb17f38036b3c1f89821023b8cef7fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListComments.php","hash":"091087a18223dcbfc0b6af79dc3390d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListComments.php","hash":"5674891e9e0cebc433aed5c6977462a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListCommentsTest.php","hash":"5ee772db3162913326e0f81cd63a4fed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CreateComment.php","hash":"1555a6dc8e9d9ce4688f00f19d871ea7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CreateComment.php","hash":"9fd23938bf212d356f952cbb9fc80e57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateCommentTest.php","hash":"34f47f60c53cd32874d5d55fe7f1670b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListEvents.php","hash":"7c9df656550fa8570d197d23743349c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListEvents.php","hash":"65a7871eac3bfc22688ddfa289397f2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListEventsTest.php","hash":"e32f68e8892c431573bdbdd77a05beb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListLabelsOnIssue.php","hash":"8f69c922fd3378d642c6b6770864b2a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListLabelsOnIssue.php","hash":"6c5db3fc81150445ab5091bbfe7757f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListLabelsOnIssueTest.php","hash":"692488dd1063eaf4f033aab44397c681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/SetLabels.php","hash":"48ca0999ecd83fff4f08be59331c2afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/SetLabels.php","hash":"40bdba0f303d33888df19b1d10a093f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/SetLabelsTest.php","hash":"c0de0d1c7fbf18cf69edb9715fd03861"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/AddLabels.php","hash":"f6bd621e930e6ad03bed3591421c0f9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/AddLabels.php","hash":"61e93983e5ca7268e4f1efd77fc38348"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/AddLabelsTest.php","hash":"dc2f01c4e48fa9ebe76682ed8b7c6e54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/RemoveAllLabels.php","hash":"096cb7ec43f4af99ece66df7bd1e1700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/RemoveAllLabels.php","hash":"b434d2b8f443ba8bdde5e0ad3d929f13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/RemoveAllLabelsTest.php","hash":"db3114865f56fb3c37552923675159a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/RemoveLabel.php","hash":"b6e8bbacca1dbb20320d9e963fd80c61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/RemoveLabel.php","hash":"a2b89da54819771715bc0e7396ffbef7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/RemoveLabelTest.php","hash":"3fcaad696979cc3bf431787817c75b04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Lock.php","hash":"d450d424a296cd4a854458c57037ab39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Lock.php","hash":"a25e9930ef7ca69b8fe533f2c3290a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/LockTest.php","hash":"f331dcaa87615b3f9702b7d9227a9b68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/Unlock.php","hash":"ebbd60ebce48d4063a765f47ca9432ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/Unlock.php","hash":"94aadf1dd3dc0f09ab2089844eb9f116"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UnlockTest.php","hash":"e3e7228b1a1f48bf9908d5a3ac0c8261"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForIssue.php","hash":"cef98312ddaccf168dafc5c76d0322ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForIssue.php","hash":"a0ad207975895cc57b77ccc9816f6af2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForIssueTest.php","hash":"f1b0fbbd12ac76771561351fdfa55d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForIssue.php","hash":"617877e5fdc31de003af477318022060"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForIssue.php","hash":"14500fbdfd8334b6a3d5f0ed21927f23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForIssueTest.php","hash":"8c72ec3360e2c0e0e41a7c81ab7f4235"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForIssue.php","hash":"1368de4f8e1f0d8beae578b748b0a33a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForIssue.php","hash":"89d4364faa7e03a2d429692ec6399e52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListEventsForTimeline.php","hash":"56b1ccee977347408a8102898eede34c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListEventsForTimeline.php","hash":"40dfed3474189a9e4b6c6a672ea86de3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListEventsForTimelineTest.php","hash":"9e51e325707126c655b4bd5adbc7bdb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListDeployKeys.php","hash":"087bebd55fed7f5a0ceff45362c63715"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListDeployKeys.php","hash":"a233fce13079f0d892b39f26614fe1a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListDeployKeysTest.php","hash":"f524f18b433526f211465016bc523104"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateDeployKey.php","hash":"c1e65f7843ac0a83d2983db642fd94c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateDeployKey.php","hash":"ecc103bda3f6acd2bf1d59ab06be7bca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateDeployKeyTest.php","hash":"6495b05249ec471d46a0cac4827ee297"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetDeployKey.php","hash":"8ab31720e1d9ca5580ecb1f7043a0488"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetDeployKey.php","hash":"37e364661ccb073f806b18babb086374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetDeployKeyTest.php","hash":"cfd31378171ed21071501be025bdf717"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteDeployKey.php","hash":"c776755e0d5ad39e4d811da96eab695f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteDeployKey.php","hash":"c1f07a04d608aca0cbbbf7f04383d2b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListLabelsForRepo.php","hash":"408f44735a6e45588446eb42ecbff541"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListLabelsForRepo.php","hash":"64fb08635ebb86a6d1feec08c6b99aab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListLabelsForRepoTest.php","hash":"4d3ff42478b11059de7617155df1dfbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CreateLabel.php","hash":"c74d51902ce64168b911b8c5182172a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CreateLabel.php","hash":"925ed4bf593861cb6eac668de32c5c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateLabelTest.php","hash":"a28c7354cf7daf9d9405f3182cd82742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetLabel.php","hash":"eac01019a9e6fbeeab26a02ea3667bd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetLabel.php","hash":"fbe9c54bb842e9aaf655364cb60bba0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetLabelTest.php","hash":"82acc787e33e56e16996faf261189d54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/DeleteLabel.php","hash":"960b3996675cf8fe73ad4bebfada5dd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/DeleteLabel.php","hash":"39542c7674d9472717a479ae0cd4e653"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/UpdateLabel.php","hash":"23cbaeadc9a1178f075ad708aff77c5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/UpdateLabel.php","hash":"bce58248ef48f5a7781eb933f84e88aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateLabelTest.php","hash":"5a37e9de7264b0482d8a1d89135c9c8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListLanguages.php","hash":"4fd5e6c513b25c90a21c63c3d801c963"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListLanguages.php","hash":"d0fcc8561f6db0553f05d516751aa19a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListLanguagesTest.php","hash":"0e77605b2977b012c969bf666fec646b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnableLfsForRepo.php","hash":"e4a840ea377bd0997244ff0cdb261ee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnableLfsForRepo.php","hash":"72f59d50e08d3803dc427aa2f8beea1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/EnableLfsForRepoTest.php","hash":"96f67b68675ced8fe9b84979284fb38b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableLfsForRepo.php","hash":"48414f7e81bf179c2dd0ad28a8f802f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableLfsForRepo.php","hash":"1745d7bfe8d329ee0b0b578dc75d86ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses\/GetForRepo.php","hash":"20d555ab07ec6d753abbc4155189ce11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Licenses\/GetForRepo.php","hash":"7d932b920b13481f8cffb51a9ac45dd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Licenses\/GetForRepoTest.php","hash":"ce28bea3f8a262f21674a3cbe21624ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/MergeUpstream.php","hash":"474fd0101b01816ca23b7c49dcef8c06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/MergeUpstream.php","hash":"efb1b73c75103278efe771ad0afa1384"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/MergeUpstreamTest.php","hash":"69f2ca6d9f03dca6eaf827c11a1929c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Merge.php","hash":"720d7ac60ce212a2890f48885ad2e14f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Merge.php","hash":"a2191d0a3a0602673699195893133045"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/MergeTest.php","hash":"a249f4cc018faa23c3e1dccb753b0607"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListMilestones.php","hash":"90bb0f69cecee4b29ce9fd6e67714403"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListMilestones.php","hash":"83d27544ccb5c0ad0f6cfab93bb8f8e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListMilestonesTest.php","hash":"b98bb8636f2a8a9f90e2ff49a378483b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/CreateMilestone.php","hash":"5203fb0ef983041d45472bbc5092ecc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/CreateMilestone.php","hash":"5a909e2d458417c0c4dfd6d9342ad9a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/CreateMilestoneTest.php","hash":"f78652a1b2972af9ec9f82fefedf0a64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/GetMilestone.php","hash":"b0f7f39de1c8c3a5952683b9ecbd0784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/GetMilestone.php","hash":"e51549e926d2abe98ec3de05b44215c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/GetMilestoneTest.php","hash":"e3cc812bf87f003d10f89f46982a2232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/DeleteMilestone.php","hash":"b3f24211cd465a22246b1f290347c467"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/DeleteMilestone.php","hash":"5485caf6aaacb2d7f2ee942d1e5472c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/DeleteMilestoneTest.php","hash":"21c0c360375ec881d03d8ad9f53d53f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/UpdateMilestone.php","hash":"25dc2077fd219c486dede7b4d382fe67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/UpdateMilestone.php","hash":"2dc30b7b75d2c36423e612a1873880d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/UpdateMilestoneTest.php","hash":"597d1dbc62b01e7c0acfa79814f76de9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListLabelsForMilestone.php","hash":"513aed790001deae6c3bb658c27bdd82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListLabelsForMilestone.php","hash":"65759213f2b3caf8415d5c27275fdd51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListLabelsForMilestoneTest.php","hash":"e7b7f5c9ed8b335767a112442c60c98a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListRepoNotificationsForAuthenticatedUser.php","hash":"5aa3bce5e412f918d655137a272066d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListRepoNotificationsForAuthenticatedUser.php","hash":"04edc9929c52caa02b7c2c25f7b80348"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListRepoNotificationsForAuthenticatedUserTest.php","hash":"114325eb71ce84d159e6d0cdb234e170"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/MarkRepoNotificationsAsRead.php","hash":"9e75c2a6f2f0d6145c34ac3a3a8e9912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/MarkRepoNotificationsAsRead.php","hash":"574d06b324732296c19f4371427b5b51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/MarkRepoNotificationsAsReadTest.php","hash":"3a377211e15a0d9b356df74fe244b01b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPages.php","hash":"1524f001d4aee543f03132932518afe6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPages.php","hash":"f4592a11d3e7a9a1768385d8b3dbd530"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPagesTest.php","hash":"ae32038ce750ae52327e7bf489c87f9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateInformationAboutPagesSite.php","hash":"54a62971307bb68befbf73df6baff950"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateInformationAboutPagesSite.php","hash":"cfea6a90a1e3e3fe092f687ecffd4b6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateInformationAboutPagesSiteTest.php","hash":"d1661f552c8c6f1f3b881e6624891aa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreatePagesSite.php","hash":"d1d3ffb633d474466d62ca9367f86e63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreatePagesSite.php","hash":"bd0843cd92d357c8fc312044f0eec7a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreatePagesSiteTest.php","hash":"14914498477f30cc3ff412539f027940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeletePagesSite.php","hash":"2f2893dbf3f5a218e3ca5850717f6a1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeletePagesSite.php","hash":"6030d9ab8fc2095d65a648d2a6213a7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeletePagesSiteTest.php","hash":"f889138777dca960efdb2b303f72c6db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListPagesBuilds.php","hash":"5af8abfd1f90d1df046a54f46a64d622"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListPagesBuilds.php","hash":"d484e19d25c39a2010641611e41a63f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListPagesBuildsTest.php","hash":"c14b8e3aa751dff1cfd2d2ed71066f2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/RequestPagesBuild.php","hash":"823500e98a1f7976385b6815d7966db6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/RequestPagesBuild.php","hash":"2f0aa8ff3e87231e3abdcaa28c716830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RequestPagesBuildTest.php","hash":"c20f55c7113f9ab608aa5518b8871eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetLatestPagesBuild.php","hash":"c706fe63e6984bf0322a74ea437884e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetLatestPagesBuild.php","hash":"6557e684146f0649cd0fa184f0a34b85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetLatestPagesBuildTest.php","hash":"eb2a2f0146f6c2a114ea652a16409afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPagesBuild.php","hash":"ca06112364c7002f6341c532c8ee0d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPagesBuild.php","hash":"650327119d110f891de66fa9538ecbd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPagesBuildTest.php","hash":"de6f24a1c64f14ca8c3c34b33f09e5c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreatePagesDeployment.php","hash":"3b15b49edbee5e33c121af8a1c7e064a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreatePagesDeployment.php","hash":"2749f23548f0d616468e049488882589"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreatePagesDeploymentTest.php","hash":"af1adfccba0c9f7b33f976fc55501c8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPagesHealthCheck.php","hash":"c2ab403134daeb30a78e57b434db66b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPagesHealthCheck.php","hash":"3b5895362854fe9030627a12bf2e8628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPagesHealthCheckTest.php","hash":"96ce0fa05edb932c09d07b5cfb39e883"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListForRepo.php","hash":"85a277524dc7ef71f3196a09af30b809"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListForRepo.php","hash":"cd2b4f90cfcf13d9fe98adb9f18e2403"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListForRepoTest.php","hash":"f1ad17bf56059c8f5fe51a0dbcc098c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateForRepo.php","hash":"7fe7d495b88062b240e515d717c58151"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateForRepo.php","hash":"4118a1fe268ba46621e24e0926b8b225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateForRepoTest.php","hash":"31adc64ee0d204b8f00c1cc1a61e649a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/List_.php","hash":"70db846d5ea8b76898f5632398a8e7f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/List_.php","hash":"b7e473a6dd66295ab17c4d2743c03903"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/List_Test.php","hash":"089f16e3582a79051e45fd7c2553bf36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Create.php","hash":"3d60755567080867a635cabb5a6178cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Create.php","hash":"4db66d58c8c7769bd5e2d9942eeca043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateTest.php","hash":"87bae58d72b94ebf7f52a150818e77fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListReviewCommentsForRepo.php","hash":"fb4bbd140deda3f30d37b49a082c22ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListReviewCommentsForRepo.php","hash":"0f8ed21a4f0a240e8d64abc3cb774c9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListReviewCommentsForRepoTest.php","hash":"c032f69235513ca1ffe8a3ae2507602a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/GetReviewComment.php","hash":"5ad929e9044b1545236255932fec4fb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/GetReviewComment.php","hash":"7c5d2fcfc61f922c1c6023b59edd808a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/GetReviewCommentTest.php","hash":"83877bafd6958f77a41aa64bd1270102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/DeleteReviewComment.php","hash":"3d6853e015f6c906817fdf3517009b77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/DeleteReviewComment.php","hash":"a7396f1ae7817990a1e702fb0371df52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/DeleteReviewCommentTest.php","hash":"1bbee6a193006e2302e1d4e8e244f9ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/UpdateReviewComment.php","hash":"e92ff1c2cbea9d2f981b6cbedd58cf66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/UpdateReviewComment.php","hash":"ebda84b063ae33f478ae5633be9dcde4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateReviewCommentTest.php","hash":"fefe1b71441ae0c7ab1a83b02051cfe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForPullRequestReviewComment.php","hash":"e45e13d256a07ddf682b18bb4397ed14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForPullRequestReviewComment.php","hash":"b1afe5acc1f3e7e3bf205fb8f7eb176a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForPullRequestReviewCommentTest.php","hash":"97ad7f5ccadf34c54008911d7f084754"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForPullRequestReviewComment.php","hash":"50c005e4b9e8e008538508d70527219b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForPullRequestReviewComment.php","hash":"b9ed5898f83594c409024d586cf5cdf3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForPullRequestReviewCommentTest.php","hash":"88e7d058eb1b19ea20a722322b35fb1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForPullRequestComment.php","hash":"49325f5ba63d10852825ee6f3fa538bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForPullRequestComment.php","hash":"f03e55bcaa19ebae57729b3cedaeec7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Get.php","hash":"1f35a2e513f2f2cc5d22eb84d8b4c9a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Get.php","hash":"4ab7b8d3c2a192b5b76d41762eb9a875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/GetTest.php","hash":"8c69bb83fc69a74460338f04f13c146d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Update.php","hash":"e2b696744ab9ffc1efa5f9e13aea4de1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Update.php","hash":"9a819f2e9a70c1ffb6b204e23d3f9659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateTest.php","hash":"5eb253fad47fdb792bad30e60abb22ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateWithPrForAuthenticatedUser.php","hash":"a174895525a1b116c49c9c0f45c0612b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateWithPrForAuthenticatedUser.php","hash":"fcd4e1f49292021b57ae2f08c60d0bf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateWithPrForAuthenticatedUserTest.php","hash":"5f320b1f14b3ceff3df7bf8c6ba696d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListReviewComments.php","hash":"cf57119b96c24a888c8ae7e5fb873c13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListReviewComments.php","hash":"9ba1ce18bde80bc4566fd15294a5745f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListReviewCommentsTest.php","hash":"0c2496b4cc4a3df9fc2e06fea59afc32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CreateReviewComment.php","hash":"9b874e5069a505a9011b2c2465eb8ec7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CreateReviewComment.php","hash":"a472016dd98957a307b3d9fe167617d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateReviewCommentTest.php","hash":"6e448c57b891d355f67dbafbf254f95d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CreateReplyForReviewComment.php","hash":"543d0b8f8f97f21ea1603fc8b6b48dc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CreateReplyForReviewComment.php","hash":"6fc442940f756cb0e0dfb5108c59a36e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateReplyForReviewCommentTest.php","hash":"c6fda35a0a6c6e0362a13cc479b033ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListCommits.php","hash":"7512696165f7e8590b2684b6c0465c3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListCommits.php","hash":"8667eec64b6a49cf1f3eaf86d3b28aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListCommitsTest.php","hash":"8f2e4d9c53a6a06ce47c9b52d63d2fe1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListFiles.php","hash":"8e853ae069a6f17b79def1d7784ac6f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListFiles.php","hash":"c23b606836ec986617bfcbc565323fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListFilesTest.php","hash":"0012693a3a9961464142f13ca8e284d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CheckIfMerged.php","hash":"3d810895ce940f9a99e04f1c88c9af01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CheckIfMerged.php","hash":"1d79ac9708a181d5e8d06b5a7e8a2f24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/Merge.php","hash":"2be3288878ec7c730d11701bc32eaa43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/Merge.php","hash":"cbf51ddaa62042271c018d9133d61848"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/MergeTest.php","hash":"45d5f0c640ba8242448eec87e85ff66e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListRequestedReviewers.php","hash":"632dde93fcd8a6f4d590cf24c6a58ea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListRequestedReviewers.php","hash":"7e95f8d3a24d9b4701d4f31ab8fd0fa8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListRequestedReviewersTest.php","hash":"550f329a12a7acba87d30097c90fc937"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/RequestReviewers.php","hash":"f4506ec9dbb975def3637930d5de273b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/RequestReviewers.php","hash":"197b1357a754f8d3ca786eddc129d7d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/RequestReviewersTest.php","hash":"2b130f24eb7d0f8de52cf71b84b4371b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/RemoveRequestedReviewers.php","hash":"f36225dcc4b5ba71a300da29a0cd1aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/RemoveRequestedReviewers.php","hash":"15dbf0fac3b78506ff3ee7bcdf84315f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/RemoveRequestedReviewersTest.php","hash":"372d4048a62b250f9fbc0de77e05649d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListReviews.php","hash":"54d534e1a103dd969261955163385bf5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListReviews.php","hash":"ca9db2703b94a1eb90b7b7117dc8323e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListReviewsTest.php","hash":"a5e5a52e6709759a47d29419f47b1799"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/CreateReview.php","hash":"981502b1cd601baa21385b3296138ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/CreateReview.php","hash":"3e50d99cd91fa8bf01e8d8edebca3561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/CreateReviewTest.php","hash":"de353a2e91333d6e248d9a42fe1bebdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/GetReview.php","hash":"b3325cca2ed95d8c77f6b17854cd9883"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/GetReview.php","hash":"609366d410f65b3711e5b612e57957f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/GetReviewTest.php","hash":"fb46cb3a9fec39f0e06ea1d892682843"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/UpdateReview.php","hash":"86e84854c4da8ae3dc01d5c8e4e5c47c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/UpdateReview.php","hash":"60a13301aa6601fe6775c155e524468d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateReviewTest.php","hash":"fdad7ae3381588ea8a63ac87fe70eca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/DeletePendingReview.php","hash":"99284623b7cbbd446e5859f399660f0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/DeletePendingReview.php","hash":"0f1bb1bbbbba9f519c6a11c9adfe75c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/DeletePendingReviewTest.php","hash":"ec5d84faf8a8bba7d32aba544f9f569d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/ListCommentsForReview.php","hash":"d0be302daa4a18523dad12e019374635"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/ListCommentsForReview.php","hash":"170fd06154aaa273c0f3ff9cf48f982c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/ListCommentsForReviewTest.php","hash":"37d9ffca08039cbe7cdcccdd07f6ebd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/DismissReview.php","hash":"4c019739b08d1d0b7c2a8b39edf5eb07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/DismissReview.php","hash":"607b5d70ffdb7a5a1e9f851604c86a21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/DismissReviewTest.php","hash":"41e8d0493e35ee407b59d2a9d48deab1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/SubmitReview.php","hash":"594ab8620bbe617f8d161b4481b61988"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/SubmitReview.php","hash":"4ee1d42a9a23e7ee077835df3e4d33a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/SubmitReviewTest.php","hash":"61bfbf1b222471167a2553850146b9c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls\/UpdateBranch.php","hash":"f4e0f6f4f196d0d364b1fd7da6082b39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Pulls\/UpdateBranch.php","hash":"353417dfb7b356a4df97519c7c44a339"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Pulls\/UpdateBranchTest.php","hash":"8fa611d5ef30b4ec4b9202eb3b7a0825"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReadme.php","hash":"5290cb9a66c1b6c55f26650a6dbdf1a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReadme.php","hash":"66e008620965f1dbeceda79506c349b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReadmeTest.php","hash":"4e028d89c1470ad6e9c84f7b0a7dbd9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReadmeInDirectory.php","hash":"c1000b956c47637d42259cb07cb924a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReadmeInDirectory.php","hash":"e4d3551f5b7f6cb336bef32abbd74ce0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReadmeInDirectoryTest.php","hash":"a582f559dd68e566de32698c92a0f67f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListReleases.php","hash":"1860f20d08c2f81043b0c81a18bca75b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListReleases.php","hash":"e3f2c2e4e2df4c12f4e42caeb65639ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListReleasesTest.php","hash":"bca9ac132e0691baae03a8d4156ba808"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateRelease.php","hash":"869eb85c5e140a6c75c9f56aecded44d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateRelease.php","hash":"d11649206b6a4bec3c4a6dfed39253b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateReleaseTest.php","hash":"ac5ed399be7182a35869fa68da4aebe9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReleaseAsset.php","hash":"236b9138b1a3b792361b2d0d1dd67436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReleaseAsset.php","hash":"b2f2c64a955a1cea0acb63326111f50a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReleaseAssetTest.php","hash":"e28c952b976923f73dd104d159693f7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteReleaseAsset.php","hash":"d78c195e96a50c2d0972fe758cec5dca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteReleaseAsset.php","hash":"9cae166edcac95a4c56ede46a9b30292"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateReleaseAsset.php","hash":"a54159b09a2c80f6d590e87240dc1b2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateReleaseAsset.php","hash":"3a044a52d99353ee765076b1c12e4750"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateReleaseAssetTest.php","hash":"d7c3666caa996c296eed5a44af7246a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GenerateReleaseNotes.php","hash":"b093fd5eeb542df3d590a3420d977f4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GenerateReleaseNotes.php","hash":"a3fd9d5c2ce4522ecbf2ee2363f51bf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GenerateReleaseNotesTest.php","hash":"a3a58710e0f1836b44f20ee77a37507c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetLatestRelease.php","hash":"83007633dd8ed71c3ff9768547f21ee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetLatestRelease.php","hash":"16ca413198bd2772bde4b16046bae88c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetLatestReleaseTest.php","hash":"5dbf802cffb58640795017b2cbe03355"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetReleaseByTag.php","hash":"3169ab96d49912f4332ca0bee25d531c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetReleaseByTag.php","hash":"077b815c08bdb350619941b6a6e318a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReleaseByTagTest.php","hash":"bdc2aa5906a2fc5b3862d466b8445f28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetRelease.php","hash":"dcad40c9a07cb255f1bdad3811213fa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetRelease.php","hash":"f46d6eb9bbba7ebdf8a4339f0ba9782c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetReleaseTest.php","hash":"b05dad2eb041810b4936bd2e6b4d9d44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteRelease.php","hash":"9add61ed8a61ae7e409f6d3c43215f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteRelease.php","hash":"98aa408913d8bd5e96b08f518d85d7a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateRelease.php","hash":"c6a2b0c71346a05b84462803286f9304"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateRelease.php","hash":"d5931920a6f5bbe820942e516b4a7a05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateReleaseTest.php","hash":"572f9f450e1dee6f146b93c5e06ea725"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListReleaseAssets.php","hash":"51271bf28842d1b371e2aa0237df19ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListReleaseAssets.php","hash":"851e9ac1acfdc4e4f8ed30f9e7333ca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListReleaseAssetsTest.php","hash":"33e4f39c194ed7f4caad917ada8dbb6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UploadReleaseAsset.php","hash":"7e7bc4b3392c924bd2da9b0382990ee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UploadReleaseAsset.php","hash":"5bb9ed60bdee09c2f922fe8b5852fab4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UploadReleaseAssetTest.php","hash":"c16680473bf7447a564fba9e1fe19fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForRelease.php","hash":"5b5f01ef6c7dcfcf0bd66a0204667869"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForRelease.php","hash":"e87709a8b7592c321280880620372b1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForReleaseTest.php","hash":"d1b83705b7d67ab75bfb46cde977aa42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForRelease.php","hash":"30eca6b28b71b0154ce07c7c43b5c935"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForRelease.php","hash":"e9373edfdf4b031b68ebf099cbfafa3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForReleaseTest.php","hash":"41a08c3eda0ab056d51a4c3bfe0203d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/DeleteForRelease.php","hash":"d2881a4e655feaaf6c465754fff47ede"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/DeleteForRelease.php","hash":"b7c1523efe0350e0c41d37336b233dc6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetBranchRules.php","hash":"cb71020b5884ecd0860241bc9fc8d197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetBranchRules.php","hash":"0f847bb266fdf2a832c527eaf28c0001"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetBranchRulesTest.php","hash":"02eb532ed4f39cfb9f30a7eeded57ec1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetRepoRulesets.php","hash":"a826157a50110f2cd0829f0e98cd4bb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetRepoRulesets.php","hash":"7a0468717ba754038353ab24c5c2f475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetRepoRulesetsTest.php","hash":"c6d5dfe24cc4f1423dd054a81d61875c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateRepoRuleset.php","hash":"09bd9ddc03effd95bd786d0344cc7bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateRepoRuleset.php","hash":"963c8f69198dea37133aaa8150780308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateRepoRulesetTest.php","hash":"6eee2dab3de314e74c2b2670ba69dac4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetRepoRuleset.php","hash":"ddcaa633135ca0584bf2cb72e18a05d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetRepoRuleset.php","hash":"7b65c934d7062f775e31679f3280f4c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetRepoRulesetTest.php","hash":"13a1e5ae3700dbb2a3fe029c0e71e545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/UpdateRepoRuleset.php","hash":"3dfba74f7db4bd2e89a8389b638b5b15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/UpdateRepoRuleset.php","hash":"d19a72b16654096286aa0206d6c9b54e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/UpdateRepoRulesetTest.php","hash":"c5a67d50ab9238acdd1c9a0090f1019e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteRepoRuleset.php","hash":"ffbf2f49b56155529870ec7d1e53a5a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteRepoRuleset.php","hash":"f530dbc7d05e74afe4fecbb85586530c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteRepoRulesetTest.php","hash":"a3bbf983655c48281783aa3cfcdb6f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListAlertsForRepo.php","hash":"a690612c7f50c4460add6722e9e8dcb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListAlertsForRepo.php","hash":"2bb2eb810500721634f1df61c230d130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListAlertsForRepoTest.php","hash":"cb67d0d7ea2580d959ff50ebdd823c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/GetAlert.php","hash":"6f427f24cd8e972910689c91f093eee0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/GetAlert.php","hash":"37e2ad8c9b4ec3b25fe05a5c82c4e6d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/GetAlertTest.php","hash":"0f7a3a843583bf7d0e3be604bf57eabe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/UpdateAlert.php","hash":"b10b20caf536b8ec4a85b9b0ece05a30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/UpdateAlert.php","hash":"7b65d078783a346c2be72ca1d626a251"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/UpdateAlertTest.php","hash":"e37b64f479702ee45012d49e58a08edb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning\/ListLocationsForAlert.php","hash":"94ebcf15a5692e0f452edc512e5a4aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecretScanning\/ListLocationsForAlert.php","hash":"7c908aad0f758eaf25473782e5b808e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecretScanning\/ListLocationsForAlertTest.php","hash":"8a448f1270abd5bb2efef6cd5b831a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/ListRepositoryAdvisories.php","hash":"9563150ed052ec408e86f45230ccf59c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/ListRepositoryAdvisories.php","hash":"1c828279ada7fa21174a3bfd9b7025e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/ListRepositoryAdvisoriesTest.php","hash":"5aa7a1842030a54906e4d35902ad9409"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisory.php","hash":"23e9e277f86149e699c9483b120f69e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/CreateRepositoryAdvisory.php","hash":"488611df42c32ba7986956dca39af38e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisoryTest.php","hash":"6dd63ca4cfd70c3c3687b1d58fe28916"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/CreatePrivateVulnerabilityReport.php","hash":"a60152ad7d9a484393bd5e21047dc3f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/CreatePrivateVulnerabilityReport.php","hash":"18257051f133725af4dd3b908cb1bee1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/CreatePrivateVulnerabilityReportTest.php","hash":"852404083843c019e853fbd0da15b742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/GetRepositoryAdvisory.php","hash":"179c9d656ee78b0b1eb239825801ebe6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/GetRepositoryAdvisory.php","hash":"6d4ec7540ccea6a3e5fdc2b5e8c0fd14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/GetRepositoryAdvisoryTest.php","hash":"991d77bf33add44f813768396a023f85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/UpdateRepositoryAdvisory.php","hash":"bd0924e155614ccd595fd70542ac9c03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/UpdateRepositoryAdvisory.php","hash":"dd324a1db0489a956658948409a293c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/UpdateRepositoryAdvisoryTest.php","hash":"595ce92327a625e081abde89ca74e834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListStargazersForRepo.php","hash":"f656a391ba75694f1672d4887061f7b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListStargazersForRepo.php","hash":"fdf3ad2a809459a3d138f90c1b1c3ae6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListStargazersForRepoTest.php","hash":"430b99b43e8adb9e5aabfbab4141e66d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCodeFrequencyStats.php","hash":"37422343adc222af4e491e029a838a20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCodeFrequencyStats.php","hash":"3510d3fa5fbed5c862f63a4e4d721290"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCodeFrequencyStatsTest.php","hash":"8f0450a938801011665f13e4ceddc82f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetCommitActivityStats.php","hash":"7bb6eb0d15120cd88e1faa598264a8fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetCommitActivityStats.php","hash":"b353c9295f8972994e69018067a51279"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetCommitActivityStatsTest.php","hash":"015577fbfadc4723490a6ee074680159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetContributorsStats.php","hash":"95cda5a0f0ab0566fb8cb06751a4a40e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetContributorsStats.php","hash":"35f14d5b5a0cb9d464dc3e255c4e37b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetContributorsStatsTest.php","hash":"d0774e8303db185b67ca5da77b4254ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetParticipationStats.php","hash":"2a3964e233a6827174d9113698fd73d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetParticipationStats.php","hash":"eae6c0428cc6ec00d7b5b0a37d549796"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetParticipationStatsTest.php","hash":"636481d8f62fcadb757360173fed7a85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetPunchCardStats.php","hash":"0c9c3d1c666519dc6cabc52574d7a8c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetPunchCardStats.php","hash":"d93728bdf0ac0fa48f506f1e588fed0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetPunchCardStatsTest.php","hash":"de68f5e16cea6f421d2fd0b0122351c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateCommitStatus.php","hash":"fc1419824adb5c84117dc94271710e68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateCommitStatus.php","hash":"3be97172c4ad419a8baf811beda7fc4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateCommitStatusTest.php","hash":"69fe4a1fc4a8c2996eb55d53b75dd900"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListWatchersForRepo.php","hash":"13fb1ecb9a6c2e5ed20cc97afcb6a262"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListWatchersForRepo.php","hash":"aa0ed27d12061235bae8959ebf02e119"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListWatchersForRepoTest.php","hash":"ff507c21571cd987fa85ee0ec467664b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/GetRepoSubscription.php","hash":"f6bb1a55b7466d013d57317067c115d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/GetRepoSubscription.php","hash":"059cc1a96b995cc780ddfbdaf5e378a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/GetRepoSubscriptionTest.php","hash":"a1aae1086a7a0683c6ea0577fbf98f7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/SetRepoSubscription.php","hash":"93099c535677e2ccc0890a1af84bd307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/SetRepoSubscription.php","hash":"0b675f2710d60c3594bed5a89490b769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/SetRepoSubscriptionTest.php","hash":"6ea376b936e418043d82389b137e9a20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/DeleteRepoSubscription.php","hash":"1973971be273e690bc617042b3330352"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/DeleteRepoSubscription.php","hash":"d4c5508d0a474acaa5403915e3642bf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListTags.php","hash":"137c608d5742655dc5a8c98b673e5a4a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListTags.php","hash":"e5e95e46d223c2ad1b9f14bb44ee4783"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListTagsTest.php","hash":"629eb4ebbea89f5d258c9dfc05b1bbc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListTagProtection.php","hash":"eb608a7ec11d11eba32cda5c47ce2667"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListTagProtection.php","hash":"120db1aae167518b243de2ab7e6896d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListTagProtectionTest.php","hash":"5824d50a58f7e998c1339109d36f922b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateTagProtection.php","hash":"51fa5132274f9e772034221e4e72fa2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateTagProtection.php","hash":"cdcd4f34367275f02feeb958520a3f18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateTagProtectionTest.php","hash":"3c3c09aff3bdafc29e956b04da756fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeleteTagProtection.php","hash":"fcafe133e0846776e94a950246491e3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeleteTagProtection.php","hash":"99cc8e9e95c95f27110f9b6d1f1725ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeleteTagProtectionTest.php","hash":"71829b8b356e0d5d82abc79b23b3aff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadTarballArchive.php","hash":"867cc0bbf97491f9d7df7ebf2eb64e2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadTarballArchive.php","hash":"0a66681f63c437c40b0617701e0d6070"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadTarballArchiveStreaming.php","hash":"b89f4269c3d6bb0fc43e87716b3ab425"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadTarballArchiveStreaming.php","hash":"3d6e399a73c5883129986fbfbf990bf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListTeams.php","hash":"4fda9a430aa75a8c52bad2fe40cb5acd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListTeams.php","hash":"0a464fe4ef95c81c66cda1afd24b3f82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListTeamsTest.php","hash":"30ad26f84e6618fa0cac6ab34979bf38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetAllTopics.php","hash":"cc6dddb000189c477a705c5546d5d440"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetAllTopics.php","hash":"ca31634f8b38cc367e11fd002036fabe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetAllTopicsTest.php","hash":"f837fdeaf19f88c9b53e4bf2e5d26909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ReplaceAllTopics.php","hash":"57dd439b8456538f029f78c618d65528"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ReplaceAllTopics.php","hash":"aa74ae3bd70b8e19acedab1f09cf77ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ReplaceAllTopicsTest.php","hash":"b97c8c9ef9a8c8294e1035488c0c05d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetClones.php","hash":"da67e4f54f97b49c6e4cfd278aa7f74f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetClones.php","hash":"9056c70cc0837ec0e4b1bc54320fe1cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetClonesTest.php","hash":"bf9496d2e08c9c9f5b61236efd7ad447"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetTopPaths.php","hash":"0644650718376cbeb0b3455855731650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetTopPaths.php","hash":"a85298a69927c046cf93c485cb03519b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTopPathsTest.php","hash":"c35e2f64c63ce5612dc15968a6f9641e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetTopReferrers.php","hash":"b89b2f2d31e7038a667d8e9f83ac4d9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetTopReferrers.php","hash":"b68871100334dea22c7c6d43c44d74fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetTopReferrersTest.php","hash":"a13430b0e9788fd39d27d22bd9f5aec8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/GetViews.php","hash":"9c14e0a01c43abb61c7d13417d2fde8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/GetViews.php","hash":"e9c2b6451c519ea447a317669f2f101e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/GetViewsTest.php","hash":"ffe865032ef1de0ecdaff10726e7e881"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/Transfer.php","hash":"8f9210bbaf5ff445ea8989bcf048e8b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/Transfer.php","hash":"c39e64346819ca4aa520b7847328e599"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/TransferTest.php","hash":"9dd89d3accec81f8f103d695f99125c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CheckVulnerabilityAlerts.php","hash":"f7cc22069158afa2d77d4a48b119e5c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CheckVulnerabilityAlerts.php","hash":"debe50b7f67a2fa9e089cca888a27f53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnableVulnerabilityAlerts.php","hash":"9e83154317d8a2d774d1b660fabb4bba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnableVulnerabilityAlerts.php","hash":"8bb2b313038d6f4c73da3161c45fe90a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisableVulnerabilityAlerts.php","hash":"341e8b656338a50ac807a70d1e6b70dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisableVulnerabilityAlerts.php","hash":"d99db25fb22ae797c012ee87e44fc333"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadZipballArchive.php","hash":"42f44597cc1c1dea231df5fa42ab4c5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadZipballArchive.php","hash":"d6dd79b81c23690dddc1224e64b68faf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DownloadZipballArchiveStreaming.php","hash":"6269b0adeadad78db6e6ef74d84d8416"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DownloadZipballArchiveStreaming.php","hash":"e516cd685778947fc654e8a2996651f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateUsingTemplate.php","hash":"42c74a9759cf6875f5a8432a9ed0db0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateUsingTemplate.php","hash":"1164b434459bcf70c8089af582671873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateUsingTemplateTest.php","hash":"d882543d16ee9e01ec1cc172a4913a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListPublic.php","hash":"2ea5ce52bfc09f8e7ae42e34dfb2b843"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListPublic.php","hash":"375bc7dded0c939575f8d67d7eb4edb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListPublicTest.php","hash":"b11164b5578f9cd27db012ba093aaa8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListEnvironmentSecrets.php","hash":"2aa71dead779c7c69264b6368e95aa1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListEnvironmentSecrets.php","hash":"d919f3eaa0f7400e1f38a049330952de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListEnvironmentSecretsTest.php","hash":"83e666eb667e3fcb1d9aadd38a05ceee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetEnvironmentPublicKey.php","hash":"38cd04df38022652868d8e4e96d5c0cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetEnvironmentPublicKey.php","hash":"fe5aac647e1fa19c5149579851510da8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetEnvironmentPublicKeyTest.php","hash":"f6beedbfd03202fa70846ae82f622b72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetEnvironmentSecret.php","hash":"bd769ed07a40586dc0526be0d2a34266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetEnvironmentSecret.php","hash":"fc6e74c6edf20014e2a9cc2b5c9a652a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetEnvironmentSecretTest.php","hash":"dbb500622df8dec711c00bad81588742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateOrUpdateEnvironmentSecret.php","hash":"6e5a4e61f052c0307adc652aceabf461"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateOrUpdateEnvironmentSecret.php","hash":"567c227f43e2d677bc18a777a1b3bbf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateOrUpdateEnvironmentSecretTest.php","hash":"bda4c29f4b2e94ec3f3f9620f8b3537d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteEnvironmentSecret.php","hash":"30342f584dc6c7e765537300e6aa07ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteEnvironmentSecret.php","hash":"81dae018aebbafdd056b6e56640f9a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/ListEnvironmentVariables.php","hash":"8781392c105b106e7d59b89cdd74aa4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/ListEnvironmentVariables.php","hash":"5a5e98bfca3c2c2c366b0d547c21490e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/ListEnvironmentVariablesTest.php","hash":"763d69ae64fc9ad31075034bdc2dfeeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/CreateEnvironmentVariable.php","hash":"dccf7c440699ff0c350e0d72d9e7a0d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/CreateEnvironmentVariable.php","hash":"e2010c65c6582209e03ba5177184406d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/CreateEnvironmentVariableTest.php","hash":"731559d7d9637b6a840833062ece1ffa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GetEnvironmentVariable.php","hash":"c657da1f13e6284dbb6e71132eb38d49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GetEnvironmentVariable.php","hash":"89a683cf00aa6301255930c1c4dae9dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GetEnvironmentVariableTest.php","hash":"acf4f0bc4b8a3ba0925795f9f6af079d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/DeleteEnvironmentVariable.php","hash":"d6bdaf2d63aa32f17c210dcc5afb9f22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/DeleteEnvironmentVariable.php","hash":"6b9f3573c135ee140950a43088f2d94b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/UpdateEnvironmentVariable.php","hash":"f84252886886733e2f4f5d98e9375656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/UpdateEnvironmentVariable.php","hash":"f77fdcf78f9ad8f71c0cee3617b8b990"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/ListProvisionedIdentities.php","hash":"a29e50a9c83effb4722bca7300851bdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/ListProvisionedIdentities.php","hash":"4b366c21eede43cc410796f06e7df86d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/ListProvisionedIdentitiesTest.php","hash":"f88068dbd09810cf8531a7c3a3c2876f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/ProvisionAndInviteUser.php","hash":"28b95ab4e88be6ad521c06d360cc294a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/ProvisionAndInviteUser.php","hash":"bdf1134ebb3055265da1db7403ddfa83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/ProvisionAndInviteUserTest.php","hash":"f13d278838f5e94ac175cdf402850db0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/GetProvisioningInformationForUser.php","hash":"4eec7b3c452ee8bf7851769f9d53e53d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/GetProvisioningInformationForUser.php","hash":"847874c9aa07c7f487415a4e93a042a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/GetProvisioningInformationForUserTest.php","hash":"e768bedf15d62f500ef4495b0dfe79c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/SetInformationForProvisionedUser.php","hash":"59c68aebf02a761e92fdbac877e88a24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/SetInformationForProvisionedUser.php","hash":"f2328345f6bc39984b6ec76ef8b1aa8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/SetInformationForProvisionedUserTest.php","hash":"4821d34ae80a9106cef99f0efdb19322"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/DeleteUserFromOrg.php","hash":"bf07222383409ec9d27d3289cc895e84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/DeleteUserFromOrg.php","hash":"47f83b18a75ccc2144a19a213fa449ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/DeleteUserFromOrgTest.php","hash":"18e1ac06fc498653524653a1035bfd42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim\/UpdateAttributeForUser.php","hash":"ffb9dc34f0b149310949008bed3296cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Scim\/UpdateAttributeForUser.php","hash":"68d877ea51b64671d2219d6254037a8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Scim\/UpdateAttributeForUserTest.php","hash":"1513b009a24d9d3a7b79b2725e8e8168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Code.php","hash":"d2c94b1e11bcfe9a52d539861e54f3bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Code.php","hash":"37d6a823bb99d771aca15ecc1454a507"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/CodeTest.php","hash":"df6cf7396d951e722cead541756d55ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Commits.php","hash":"b0a82f0aebdfff9bf58a753f61f31c04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Commits.php","hash":"f170fd8075d8452f0e4de388d07b7f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/CommitsTest.php","hash":"031a66d70e9cae8e41bad4dfe25dd45b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/IssuesAndPullRequests.php","hash":"a624f58f1e54341a1cd2afdcbfd22eeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/IssuesAndPullRequests.php","hash":"52cb490e65ba8b84ac880702be127438"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/IssuesAndPullRequestsTest.php","hash":"ac941f170c7efaef9b3b3694d224622c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Labels.php","hash":"c01b8bdc7f99284f73937851c228a973"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Labels.php","hash":"503b231d707afa1be3bc0ca024ca3f5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/LabelsTest.php","hash":"382e1bef3fdb67361587bb1be4178f21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Repos.php","hash":"fcc5edc3aa5bf561edb5e648155dc920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Repos.php","hash":"07bafc6f35ab6f0fb661defbdf24dc85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/ReposTest.php","hash":"28aadd8b184131494f816759a30fcf43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Topics.php","hash":"3b3b6c51b762f37c43c234f4a4910ef7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Topics.php","hash":"686e0c22a5ffd8d84f27bfb39d4ea6ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/TopicsTest.php","hash":"6fa6dbb0b756d5f2bd0d13b53b332852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search\/Users.php","hash":"884f1be7659797439a28c707b5cf1b1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Search\/Users.php","hash":"9975a628584b7fbcece445d334a475c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Search\/UsersTest.php","hash":"701328fafbb476ec2a3bfa427ffc8a92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetLegacy.php","hash":"d05c532c5a8f3d3d4bb506331f12f2e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetLegacy.php","hash":"1a79134f2564cc46847bf1b9889f0288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetLegacyTest.php","hash":"815d7f76e7b690fadfccfb3acf349164"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteLegacy.php","hash":"b86f769b880d03ae627e7481aa1a6962"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteLegacy.php","hash":"3d48eddfc3891f9a0661b53a59a36fb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/DeleteLegacyTest.php","hash":"0c463a9198dcd889342a228b5fdf5c34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateLegacy.php","hash":"deff9833dfae1af561d8a13c23b2eeb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateLegacy.php","hash":"3dd564ebbfe12a1bdf35df53976fa362"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateLegacyTest.php","hash":"2b01dd7b5f0a5253b14ef7da8ceef215"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionsLegacy.php","hash":"2f9ec2e77193cb026100d1a5ecf138b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionsLegacy.php","hash":"52ae997856a72b2ffc80ec149ef9415c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionsLegacyTest.php","hash":"31ed57a2073fdeaacab14da9d3559dbd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionLegacy.php","hash":"2cbf5773636063cce928eaa9ed6288f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionLegacy.php","hash":"3ea055015f05a04451080e9dc6489318"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionLegacyTest.php","hash":"c7fd20f9a0f36605039f61a3c0de478b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionLegacy.php","hash":"767d70b6b1034c77ebd1161c85b5741e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionLegacy.php","hash":"9c46f753c7e2ccf7f341638be0bea8d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionLegacyTest.php","hash":"deb963b537de1748ff2f334882a18ab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionLegacy.php","hash":"bff336879279705b50d0dac16103a9ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionLegacy.php","hash":"2b2f7f75586644721761ad78444e0ee7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionLegacy.php","hash":"5d3b7381a79d277b34967b6bcb4415bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionLegacy.php","hash":"3bb6e236f9a76805a2274495e1210085"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionLegacyTest.php","hash":"ada452a882bb29df37b8b25d8873a444"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListDiscussionCommentsLegacy.php","hash":"d1ff72771d82cf08440972bf6a23ff48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListDiscussionCommentsLegacy.php","hash":"dc508a0bd1e893b2d873c62cf3c5d38f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListDiscussionCommentsLegacyTest.php","hash":"f3f14f96a1ecab6797bcb8514a7ff66f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateDiscussionCommentLegacy.php","hash":"11eead3191860bc9c365e1a396c1d564"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateDiscussionCommentLegacy.php","hash":"397cf407381fbdb305a3b30384cec0ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateDiscussionCommentLegacyTest.php","hash":"b63e3414b51ca5d706c646555333ce83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetDiscussionCommentLegacy.php","hash":"246e8dda4e848d012d79615ce86e85a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetDiscussionCommentLegacy.php","hash":"5184d8f6d716a69e05f10a2e9f40f24c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetDiscussionCommentLegacyTest.php","hash":"33140fdbdf47070d9cb52ab141ad0079"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/DeleteDiscussionCommentLegacy.php","hash":"13d30baf01c71d4a89377a6fb1567d5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/DeleteDiscussionCommentLegacy.php","hash":"9d55db865ed618862eb06d9b93b25089"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/UpdateDiscussionCommentLegacy.php","hash":"df6f400879a1a130b59418bfa5578ab3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/UpdateDiscussionCommentLegacy.php","hash":"e08858b51c6aea1c9895e260635a0ce9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/UpdateDiscussionCommentLegacyTest.php","hash":"573bf892508a821608ca9ae5e6fac8f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionCommentLegacy.php","hash":"753c68c25add6775144f379cee1b4812"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionCommentLegacy.php","hash":"6e5241595d37b15abbc3bc1e8593b492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionCommentLegacyTest.php","hash":"668f3c59e7d860c5eb7b2f284d8a3061"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentLegacy.php","hash":"82b9ea64d79ccc7eebaf5c7f89a4d865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionCommentLegacy.php","hash":"f707835ec5ed6aa11dd8c201223e94a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionCommentLegacyTest.php","hash":"a917f29e88a1ba71c01f4f20df4f603d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/ListForTeamDiscussionLegacy.php","hash":"99ea72e33db70c5f7dbe5d4c0bde8790"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/ListForTeamDiscussionLegacy.php","hash":"a2bd31233823a96c6556ee25cd3d52e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/ListForTeamDiscussionLegacyTest.php","hash":"6eb4bc5425828662a05796e64ad7f408"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions\/CreateForTeamDiscussionLegacy.php","hash":"f0eafcd2e2e5c644b8cf97a6d564528c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Reactions\/CreateForTeamDiscussionLegacy.php","hash":"e55dc75855baf44568e2aaecf192d11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Reactions\/CreateForTeamDiscussionLegacyTest.php","hash":"34cda5a79312c57831c7c293128844ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListPendingInvitationsLegacy.php","hash":"2725f535c04caf7a8df2e76648d25012"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListPendingInvitationsLegacy.php","hash":"4544526fa53bc3d96fa24261d4557c2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListPendingInvitationsLegacyTest.php","hash":"dc67eec22131f29c305f6fe234af4944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListMembersLegacy.php","hash":"7b86329391597d48f97e4c89cad2bac2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListMembersLegacy.php","hash":"9bdf155006e983701cf61dbee4a890de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListMembersLegacyTest.php","hash":"c19ef44e73a2b94e92286cebfb0deefc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetMemberLegacy.php","hash":"5f0c4a8c4d038bb3429763b35a31d7ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetMemberLegacy.php","hash":"dbc7b8f6342f5df62cff50dafd7fb4a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddMemberLegacy.php","hash":"c3e3bf465e4e3f98062ef345ad29ca4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddMemberLegacy.php","hash":"6e7c040be1e64ff741fec91123df9afa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddMemberLegacyTest.php","hash":"64e401d8cd06117db9908f0e05cb5374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveMemberLegacy.php","hash":"4fbe1029379f691b9b2d6543ad5227e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveMemberLegacy.php","hash":"64976e70796b46512792481773ccf300"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/GetMembershipForUserLegacy.php","hash":"09c4f18a3148d1c4293e3b4b8a3d85e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/GetMembershipForUserLegacy.php","hash":"351456e89463b40df6f04e9c794e84f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/GetMembershipForUserLegacyTest.php","hash":"a6495a9b52536b75fa0f671dd23279df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateMembershipForUserLegacy.php","hash":"2b2cc4c5a1d7cb5fc5c3fcfe52449bab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateMembershipForUserLegacy.php","hash":"57b0afc16ae80e6d5270b4e70acd1f72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateMembershipForUserLegacyTest.php","hash":"be066b45f95bac999a9809302b869309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveMembershipForUserLegacy.php","hash":"d24237fec3ae5a488ee7de41198392ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveMembershipForUserLegacy.php","hash":"c2299eb7b961964549b1ed2e81f82f99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListProjectsLegacy.php","hash":"da9b09ec52a1d601fae5fa72a7e4a656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListProjectsLegacy.php","hash":"bd58feaa1427bf74a659bbb2cdacefec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListProjectsLegacyTest.php","hash":"493a6351162c6cd6c7fc23386eb027cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForProjectLegacy.php","hash":"eb4ab6b8290845a998157461ec54c3e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForProjectLegacy.php","hash":"a21cd867fe2bd1fb1fc85ccec677a055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForProjectLegacyTest.php","hash":"a76e102a12fa99811caca7d0c77397db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsLegacy.php","hash":"f749d6f8d24a6da933c1c192300cc6b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateProjectPermissionsLegacy.php","hash":"c7a8977b86dafca0e5dde58cdbcfb524"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateProjectPermissionsLegacyTest.php","hash":"95f5eae25929cc59395a405419497b90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveProjectLegacy.php","hash":"87ad59e9397dd2e1177ed4c738fdc669"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveProjectLegacy.php","hash":"7ef8150c3efa17ef10cfec8fe3b9f1a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/RemoveProjectLegacyTest.php","hash":"d97edf615400dd2ac05348a7eb6d9542"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListReposLegacy.php","hash":"7854c386f616a39263c1e92c12f820a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListReposLegacy.php","hash":"04b48e6aefa8310e714a04afd61cf604"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListReposLegacyTest.php","hash":"15ba83ddcc164022183461b23b539a4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CheckPermissionsForRepoLegacy.php","hash":"487a66227cce2d1a12389db0be0a5ed3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CheckPermissionsForRepoLegacy.php","hash":"ce40d0cd4c2202fcbd72614cc8ae0248"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CheckPermissionsForRepoLegacyTest.php","hash":"000aaf6c0ac46a77d8e8b510a9e153ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/AddOrUpdateRepoPermissionsLegacy.php","hash":"c01600c834c2fcdb81980c8bcfcb26ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/AddOrUpdateRepoPermissionsLegacy.php","hash":"c51a9fb99133884b3f990fbf4ef7aeed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/AddOrUpdateRepoPermissionsLegacyTest.php","hash":"36841a63c89927f36220c7846588c47b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/RemoveRepoLegacy.php","hash":"64fdc32651dc811f8974777f49a7b096"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/RemoveRepoLegacy.php","hash":"52ef403c59792cf8507c81ba45720ac5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListIdpGroupsForLegacy.php","hash":"6617881e39162ddbf1c595432011f89b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListIdpGroupsForLegacy.php","hash":"0b3cae114e9d93e1c2b18bfece4ad872"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListIdpGroupsForLegacyTest.php","hash":"3423c90fcadfef1cc7b3dc712e6d415e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy.php","hash":"8eb6e2b21828398b21c830762e852441"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy.php","hash":"f963dde815389e0bf70e2a257a5ebf2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacyTest.php","hash":"d62a7d4d83fb32142ff67d313fb8ccda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListChildLegacy.php","hash":"39412eb02f5fe28025b49c86755170e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListChildLegacy.php","hash":"ed9d87454132a88eb2ed5909048b137a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListChildLegacyTest.php","hash":"88a23d17b52e5b68919c0085b505ea43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetAuthenticated.php","hash":"a316460ad3671b01818136462490da7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetAuthenticated.php","hash":"f410444ca2fea88be4edb1acd2cdce1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetAuthenticatedTest.php","hash":"549d8828eb8056419010830cfb5ccfcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/UpdateAuthenticated.php","hash":"ccef6d0de407d022a70f66b67885364b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/UpdateAuthenticated.php","hash":"ab7288c425234408465e962fe6db4b18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/UpdateAuthenticatedTest.php","hash":"6cfc224c500e55b8f4950dfb733d2e30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListBlockedByAuthenticatedUser.php","hash":"86ebeee30b7bf8969124c47fe38ac347"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListBlockedByAuthenticatedUser.php","hash":"1576800b2dbd16ef3f8124ee0bf3abe2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListBlockedByAuthenticatedUserTest.php","hash":"259bd05c6289aa36a3126b0a3eaebb9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CheckBlocked.php","hash":"3cd765446ff15b8e7a3a0265aa29d77a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CheckBlocked.php","hash":"b30f20d6c2feef06d6c892191346b3fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CheckBlockedTest.php","hash":"155bea9e0abedcb9eb60d9fa760fb242"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Block.php","hash":"4d942fbb4335e3414ec61e52dafe8dc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Block.php","hash":"2d1f048681477be6b53eea88e0ab9732"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/BlockTest.php","hash":"32089b1d9e917deac32518256a3fb6d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Unblock.php","hash":"f52b4fb833f20c64e8002f248f3b6e7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Unblock.php","hash":"e7b2be4b9d3c5443e60f483c81d0577d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/UnblockTest.php","hash":"916b9d3d5359bc32b40823f901db2241"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListForAuthenticatedUser.php","hash":"5b221d4303d0c034a3f0446681324c8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListForAuthenticatedUser.php","hash":"7f652653097b9db6f8abfc10bd6431be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListForAuthenticatedUserTest.php","hash":"191fd8cf2545ee3d9c68ae281c17f5bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateForAuthenticatedUser.php","hash":"fef05589098feb5eebd315372c3ce608"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateForAuthenticatedUser.php","hash":"ec9e6ba73b3bd029a137401b8ddd6520"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateForAuthenticatedUserTest.php","hash":"cdfb94e3a68f25e37bef815e72519080"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListSecretsForAuthenticatedUser.php","hash":"1ee4ea22b91eec5d6629e1468a82606e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListSecretsForAuthenticatedUser.php","hash":"359b573ee35b5b09f7eccda0177dc078"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListSecretsForAuthenticatedUserTest.php","hash":"938f5cc7b6cb8ee9415eb3c013732b0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetPublicKeyForAuthenticatedUser.php","hash":"025f5ec4af46232f72a50d0099f1f4cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetPublicKeyForAuthenticatedUser.php","hash":"6a66f183d82316643a8abf96b4037070"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetPublicKeyForAuthenticatedUserTest.php","hash":"cc09b8597f7ed6bc2c6b953b78785de9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetSecretForAuthenticatedUser.php","hash":"3ffba7240fa26be9ccdcc1a20e77f41c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetSecretForAuthenticatedUser.php","hash":"20965e73217e14be4ba0962d4f31cfc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetSecretForAuthenticatedUserTest.php","hash":"b8abebe11ee47d566e89e0ec6dbf0603"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUser.php","hash":"b20fc4091ee5b74a7c9e7acf9488a699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUser.php","hash":"fe7350ba8f79d64b5255dd023d31a1c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUserTest.php","hash":"1c9f0083c0d634dd09084caa1a2d4ab5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteSecretForAuthenticatedUser.php","hash":"c5e386173c87dec37b8ca4fe760de7e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteSecretForAuthenticatedUser.php","hash":"28283ee7930bc9c89e842a380c0f8509"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser.php","hash":"a715e36d79ad9ca482bc7c96c2275637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser.php","hash":"1b8f73c0b55291638fc08546b202a766"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUserTest.php","hash":"2dc410b8b91a7315bc8d767589ba7a64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUser.php","hash":"ce8a68ce89d9e9b88d59c22d4159e00a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUser.php","hash":"326f32b5d6c4269412bb99e536ea0e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUserTest.php","hash":"c176be21eb7b3b1b05d7706746273733"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/AddRepositoryForSecretForAuthenticatedUser.php","hash":"5e237fe97de24acc39a94077348021c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/AddRepositoryForSecretForAuthenticatedUser.php","hash":"1e4396729318e1531c124c0c65a32315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/AddRepositoryForSecretForAuthenticatedUserTest.php","hash":"5c32d82fc90b3904e56dffa3be450ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/RemoveRepositoryForSecretForAuthenticatedUser.php","hash":"e42c087805763f16e9f57f8f2a4111e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/RemoveRepositoryForSecretForAuthenticatedUser.php","hash":"c9dbfa7f95c66e5958b88fec27fa7726"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/RemoveRepositoryForSecretForAuthenticatedUserTest.php","hash":"29e5cba8c25e1ba137c66988544f702c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetForAuthenticatedUser.php","hash":"9007f8cadc3628dc5775f376abf6fff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetForAuthenticatedUser.php","hash":"b95eea37b0271dc492b3b091ca7faa28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetForAuthenticatedUserTest.php","hash":"5064291b3032b852abe120e29db8326b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteForAuthenticatedUser.php","hash":"de8f6ecfe33f547cb70f17bf2cdbf68e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteForAuthenticatedUser.php","hash":"358332dbd1ca101508f02e62d945d675"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteForAuthenticatedUserTest.php","hash":"7812be54346a41cc4208ca0309c6f381"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/UpdateForAuthenticatedUser.php","hash":"8a7378aaa66004f6698604d9a7e57643"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/UpdateForAuthenticatedUser.php","hash":"3c1fe886f21be6cecb62de820bf3bc93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/UpdateForAuthenticatedUserTest.php","hash":"1569f6c71085c815e5859aa68aee3b21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/ExportForAuthenticatedUser.php","hash":"0e6aee678aff3ee980993600cbf3f111"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/ExportForAuthenticatedUser.php","hash":"849c1dfe24707bd65027afceaab18b0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/ExportForAuthenticatedUserTest.php","hash":"d303c9090ea9cd9ace9295d19c2148c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/GetExportDetailsForAuthenticatedUser.php","hash":"1605a07e801377a846662652e2ae8bd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/GetExportDetailsForAuthenticatedUser.php","hash":"c4869e0da616931ccf18cdd777aad069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/GetExportDetailsForAuthenticatedUserTest.php","hash":"1e777946fd9288a92a308170bb21bf67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/CodespaceMachinesForAuthenticatedUser.php","hash":"4b697c7b38f91af84d38054f47152de5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/CodespaceMachinesForAuthenticatedUser.php","hash":"609a7fae2151d6f81ed96e9902dc64da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/CodespaceMachinesForAuthenticatedUserTest.php","hash":"049643fe861bf4d6baa373e10fa05f57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/PublishForAuthenticatedUser.php","hash":"b51fb4b403bffdff44573ee4c85910ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/PublishForAuthenticatedUser.php","hash":"864da0b462d7b40fe73b07335e9a5630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/PublishForAuthenticatedUserTest.php","hash":"85859de3c736086181fc9c9c271f23dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/StartForAuthenticatedUser.php","hash":"75b75e02149b2d7f34396532a7feb427"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/StartForAuthenticatedUser.php","hash":"14420710c4756bc67f198f713d5844b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/StartForAuthenticatedUserTest.php","hash":"b5f70e24942ef7483c878e7074c6bd1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/StopForAuthenticatedUser.php","hash":"eed771d3f0d5fb41c01792cc47ed7f0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/StopForAuthenticatedUser.php","hash":"4b0a027edb81cf256b5a9505b2bd702a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/StopForAuthenticatedUserTest.php","hash":"6cb2de60c3ed2eaf1347be886e004e2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForAuthenticatedUser.php","hash":"12d3d79e018c6d1f6be34aa00b2f9870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListDockerMigrationConflictingPackagesForAuthenticatedUser.php","hash":"e45d249823a81f539094885c0e488c74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForAuthenticatedUserTest.php","hash":"ad4854176a7da384713f74e68b406448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUser.php","hash":"818f584b163d98a9ddf754623c4f1eac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUser.php","hash":"7f7f8f82aa43e4109429faf2dcc29af6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUserTest.php","hash":"de1f453ab45d4c5527b8bed9cec3d142"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListEmailsForAuthenticatedUser.php","hash":"0f651edbd83c0517e3eb5cae0ef57030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListEmailsForAuthenticatedUser.php","hash":"f3cd7bbdef5a516d2c9d7a27efea1dd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListEmailsForAuthenticatedUserTest.php","hash":"b57b5d5cef6745b5c9be00d2e7461536"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/AddEmailForAuthenticatedUser.php","hash":"f977ea6296a141e46e83a46d1e575ff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/AddEmailForAuthenticatedUser.php","hash":"d8a84dfd924cdd1f80db313ab158e888"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/AddEmailForAuthenticatedUserTest.php","hash":"dbbe2d08a07a3b3c24ddd63fc744071f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteEmailForAuthenticatedUser.php","hash":"2d741e5ea07e0deda75c4f691efc3740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteEmailForAuthenticatedUser.php","hash":"61db3f91bc12f4147b1e2bbddb46161c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteEmailForAuthenticatedUserTest.php","hash":"4fbbfa4412e74324251464bed16432bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowersForAuthenticatedUser.php","hash":"28bd5722c5542c4e0aea9f74063fd1af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowersForAuthenticatedUser.php","hash":"7e3c60b53a9dcf1eccaef46f16652948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowersForAuthenticatedUserTest.php","hash":"7cc7953923f0b4dbb9d6cdb268b57364"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowedByAuthenticatedUser.php","hash":"a718ce1a393503c3dda66dee7a6a9c67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowedByAuthenticatedUser.php","hash":"91f511d813b8f30d6265457e1cf082b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowedByAuthenticatedUserTest.php","hash":"b01893378b8ccfc2adaefe785368f276"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CheckPersonIsFollowedByAuthenticated.php","hash":"0b8a6d5c1e9b7ba865f676bbe2202daa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CheckPersonIsFollowedByAuthenticated.php","hash":"be4f36e880896c4418429da2e2dd1d8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CheckPersonIsFollowedByAuthenticatedTest.php","hash":"04833b89017287f982f330fc393475dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Follow.php","hash":"fed1874aac4d33d359911a41e90757c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Follow.php","hash":"0d2ba283b4451c60dcee3d5065987bbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/FollowTest.php","hash":"6af0ac85b58a883b2343dfe4abd3f196"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/Unfollow.php","hash":"0a765c4e1e63cbe88fe1d72405ed2795"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/Unfollow.php","hash":"cb477169ed145ea12a4c4224542779a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/UnfollowTest.php","hash":"251636f65c08692bc4c3c8ef54ee1aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListGpgKeysForAuthenticatedUser.php","hash":"56872759f87199a1e4e3079cfe0136d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListGpgKeysForAuthenticatedUser.php","hash":"2315937a812105d5cd27e99bc8c58281"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListGpgKeysForAuthenticatedUserTest.php","hash":"ef74701d3c33c2d6ff6e6adc7829ae7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CreateGpgKeyForAuthenticatedUser.php","hash":"c7792c9098f817a7ad200266fcb7fef4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CreateGpgKeyForAuthenticatedUser.php","hash":"1b55faeafb6294e7e6e78b152444b33f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CreateGpgKeyForAuthenticatedUserTest.php","hash":"c4584290767c1616c4b92e1cbb00e49c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetGpgKeyForAuthenticatedUser.php","hash":"e76b5c6acb2a486cd3fd5f7df720e3c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetGpgKeyForAuthenticatedUser.php","hash":"a0d7aecea3b191cd834762559dd1cce6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetGpgKeyForAuthenticatedUserTest.php","hash":"1d3dd3d0b57f58b68e9b6b6a63b02c52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteGpgKeyForAuthenticatedUser.php","hash":"db598b01be68139b5956b638132c7181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteGpgKeyForAuthenticatedUser.php","hash":"48f2084dc87f67db33e0eccbb436f6a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteGpgKeyForAuthenticatedUserTest.php","hash":"35a45da3b53d70f84a2c039b81339e40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallationsForAuthenticatedUser.php","hash":"4f96e2b9db2f2be8bfc6915f57d424cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallationsForAuthenticatedUser.php","hash":"fce933fc7a9913fa885589d10fe48f10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationsForAuthenticatedUserTest.php","hash":"ee4cd44587a2933fd03fecb2b65e4ff5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListInstallationReposForAuthenticatedUser.php","hash":"f8ca5385da1d64fd38e3a0d5e7550344"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListInstallationReposForAuthenticatedUser.php","hash":"a144a7abe735e77f45ef99b81c8549a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListInstallationReposForAuthenticatedUserTest.php","hash":"3258e4029b0e593b643aa7f7474e734f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/AddRepoToInstallationForAuthenticatedUser.php","hash":"ebf9befee61232c1691ed09c5a428b23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/AddRepoToInstallationForAuthenticatedUser.php","hash":"58895b061a9c1eb18c5c256ef8fa8f3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/AddRepoToInstallationForAuthenticatedUserTest.php","hash":"94cd999396f2eeb8cf911576da524bee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/RemoveRepoFromInstallationForAuthenticatedUser.php","hash":"d3ac6c47d3e5a335032ed8c620eeee72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/RemoveRepoFromInstallationForAuthenticatedUser.php","hash":"fccb6fa73cff7926c0d8c35ae9171a0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/RemoveRepoFromInstallationForAuthenticatedUserTest.php","hash":"0472162103028cb5121287c465c40ab6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/GetRestrictionsForAuthenticatedUser.php","hash":"7d08b809adff791ac5f129db62fb61c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/GetRestrictionsForAuthenticatedUser.php","hash":"24761c4171ef460736ec64c410668d13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/GetRestrictionsForAuthenticatedUserTest.php","hash":"7c0541270b07b61ec891255687d20157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/SetRestrictionsForAuthenticatedUser.php","hash":"4e20342d11e762e1a2823caa104a2b01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/SetRestrictionsForAuthenticatedUser.php","hash":"98b8d2e1be0f858da4e51e7c4899589e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Interactions\/SetRestrictionsForAuthenticatedUserTest.php","hash":"53f3ff4a2a169ba3cddc22683690f1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions\/RemoveRestrictionsForAuthenticatedUser.php","hash":"95e7ebd7be7bc11eeb0c415cf19419ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Interactions\/RemoveRestrictionsForAuthenticatedUser.php","hash":"9b28b110165ad6d6cb38ad1a997cc76b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues\/ListForAuthenticatedUser.php","hash":"00679c61eefef1a84db516e5f3a27ea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Issues\/ListForAuthenticatedUser.php","hash":"47a239ff3751f3170762a1e38a069c2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Issues\/ListForAuthenticatedUserTest.php","hash":"faf5c7a0cb32ca91211f9d0cc9c0ed8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListPublicSshKeysForAuthenticatedUser.php","hash":"e5991353bae54e1b4d19067852d154d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListPublicSshKeysForAuthenticatedUser.php","hash":"f7f6f3745bd6deeb825762f7d46643ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListPublicSshKeysForAuthenticatedUserTest.php","hash":"d20b2ab83a5c7c7d02ae20c8dfe12146"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CreatePublicSshKeyForAuthenticatedUser.php","hash":"bd5cb8f97788651a989e0e96fa7a64eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CreatePublicSshKeyForAuthenticatedUser.php","hash":"69031b1f04dd362b8a4731e5db4f9fa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CreatePublicSshKeyForAuthenticatedUserTest.php","hash":"bd15afa68ab61d65fd31694a8698168d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetPublicSshKeyForAuthenticatedUser.php","hash":"eba7d233b2b0fd1ce4d4687b8c9b70dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetPublicSshKeyForAuthenticatedUser.php","hash":"7b577d8054d48210569dde8920d1fa55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetPublicSshKeyForAuthenticatedUserTest.php","hash":"5e8836dca4e830f0039082f57b37c888"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeletePublicSshKeyForAuthenticatedUser.php","hash":"9182dc736d3f69fe42170e7c43d1a59d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeletePublicSshKeyForAuthenticatedUser.php","hash":"f11efd4d529375c26153256b317429c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeletePublicSshKeyForAuthenticatedUserTest.php","hash":"ee80fffa3a444b5830eeeccc312866a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUser.php","hash":"5a6bbfa9cfa7d2ce62e3c42697ad65c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListSubscriptionsForAuthenticatedUser.php","hash":"b6756f6f415f0355583f976d66ec4adb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUserTest.php","hash":"ae8c5136ee081d5a09ea0f252ed91c60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUserStubbed.php","hash":"e264cd1892b2e01d1d75327679db9bf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/ListSubscriptionsForAuthenticatedUserStubbed.php","hash":"63626924568ff2557bb51adec255c37c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/ListSubscriptionsForAuthenticatedUserStubbedTest.php","hash":"9f61645ee79550fc3eb89ff684e95a3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListMembershipsForAuthenticatedUser.php","hash":"25908c297ee7f7e43179d57a71666dec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListMembershipsForAuthenticatedUser.php","hash":"96766b2b966e247cc35201faa3998e8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListMembershipsForAuthenticatedUserTest.php","hash":"f502fe664c050b56527f2cdcefad2fa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/GetMembershipForAuthenticatedUser.php","hash":"0466817bd6a70e4b2a4009d1504f9e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/GetMembershipForAuthenticatedUser.php","hash":"7497d4e15a9211f25fb04f4c6ec4045b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/GetMembershipForAuthenticatedUserTest.php","hash":"60d5dc4a5fe36cfea94814a476672867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/UpdateMembershipForAuthenticatedUser.php","hash":"b2f2dc5d6e8fe64f41328f95bd3869bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/UpdateMembershipForAuthenticatedUser.php","hash":"a90f5d3cd2e74431ffce7756afc07594"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/UpdateMembershipForAuthenticatedUserTest.php","hash":"e5e176fe796587addf813ec73ee1a50b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListForAuthenticatedUser.php","hash":"8db86b3a60e17faf136b112d754265b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListForAuthenticatedUser.php","hash":"058667b868d007ea1c6bbcf49666ff96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListForAuthenticatedUserTest.php","hash":"b324158683d46627c161f48548e03a19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/StartForAuthenticatedUser.php","hash":"990bb906750f66c155d6b684a2c51c73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/StartForAuthenticatedUser.php","hash":"6bb390cf7ddd99e278fbacbae60b945f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/StartForAuthenticatedUserTest.php","hash":"2125ce7a9b5b8654ffa3aa2a1aa299f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetStatusForAuthenticatedUser.php","hash":"c86ea9e63415cf9b45babcb281fe1099"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetStatusForAuthenticatedUser.php","hash":"4b42fb72144bb10b342ce81f5bce0b50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetStatusForAuthenticatedUserTest.php","hash":"838d3a617affa1208fabcf9fbbe0f428"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/GetArchiveForAuthenticatedUser.php","hash":"349ebd9cff708e748f18a2386a7f8786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/GetArchiveForAuthenticatedUser.php","hash":"3487f30813a02ddb2fc066fc03464a82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/GetArchiveForAuthenticatedUserTest.php","hash":"f83a5c5a78a77158d228b53f1611fe4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/DeleteArchiveForAuthenticatedUser.php","hash":"5e5565e9085abdd83f074c4e984115d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/DeleteArchiveForAuthenticatedUser.php","hash":"4db3336f96c83ccff99b89b5062af41c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/DeleteArchiveForAuthenticatedUserTest.php","hash":"230b8586079c42e46b04df917f23e7d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/UnlockRepoForAuthenticatedUser.php","hash":"a475bcc381f100f8fd8edfc33c8cd4df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/UnlockRepoForAuthenticatedUser.php","hash":"0d85a5ad0cc89dba7056f580dd893523"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/UnlockRepoForAuthenticatedUserTest.php","hash":"e5b2a11c82dae8eb44f414430f801e36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations\/ListReposForAuthenticatedUser.php","hash":"4af8803a7ee1f2dd5659d58cd9f906ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Migrations\/ListReposForAuthenticatedUser.php","hash":"2c808f006abcb0da458f76fea0c97cc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Migrations\/ListReposForAuthenticatedUserTest.php","hash":"37edcb1710878be69a0f437a5160458e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListForAuthenticatedUser.php","hash":"b0ed54a6c8c0750121197771c4466df6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListForAuthenticatedUser.php","hash":"8cee1b713cae35b4763da2eec5ff05bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListForAuthenticatedUserTest.php","hash":"b797f753ab918479242a4c1277283bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListPackagesForAuthenticatedUser.php","hash":"cb5d437fac90c9c5284f522bcae0a7c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListPackagesForAuthenticatedUser.php","hash":"4b50a3bc3de44cbd4f5e8ead065fa976"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListPackagesForAuthenticatedUserTest.php","hash":"dc4f6aece1d8df21428f163cfd5fca95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageForAuthenticatedUser.php","hash":"b7e1ec24f0b922da29edff229431c0cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageForAuthenticatedUser.php","hash":"e72b4a31c135cc9948c500896f07e389"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageForAuthenticatedUserTest.php","hash":"52394b1f334c01fd42bd1436ac958e91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageForAuthenticatedUser.php","hash":"f99bf30d0f521c84f022ee665d01146d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageForAuthenticatedUser.php","hash":"6e0310a01716f64ef02b00ad6f43b901"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageForAuthenticatedUserTest.php","hash":"1b35042b2ae238b53e607e54bf45c181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageForAuthenticatedUser.php","hash":"07e62cc4b39a2a6a6638039f7b041bf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageForAuthenticatedUser.php","hash":"ab5b9545c438e1f7c6c91d259647e456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageForAuthenticatedUserTest.php","hash":"cbab07ef69dc8dfea2c4793fdffc7b69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByAuthenticatedUser.php","hash":"fa9e5eb221e22002c35ef85dd56807d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetAllPackageVersionsForPackageOwnedByAuthenticatedUser.php","hash":"970bd87536ea4d50edba0659bf5ca478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByAuthenticatedUserTest.php","hash":"ba4a29ff303921f807ea0094b02bbd32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageVersionForAuthenticatedUser.php","hash":"ae05cb8f2f5c1e00d26c681d1b8045c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageVersionForAuthenticatedUser.php","hash":"2c62fbaf21952edf62e38beab0d854bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageVersionForAuthenticatedUserTest.php","hash":"035e6042c3ee1dbed35b451ec2460117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageVersionForAuthenticatedUser.php","hash":"f577d429f4a168f8c9e204c34077a50d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageVersionForAuthenticatedUser.php","hash":"61a640177e4d856eea46a3cb64799f20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageVersionForAuthenticatedUserTest.php","hash":"247e00346f9432b17429ba4e138e7628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageVersionForAuthenticatedUser.php","hash":"b7ea58f327bb2e2617799ac77600aa5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageVersionForAuthenticatedUser.php","hash":"a4d38d458b775e3c3b2ceed046517eb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageVersionForAuthenticatedUserTest.php","hash":"561c0f2142815e7efbce2a4614f9d727"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/CreateForAuthenticatedUser.php","hash":"16d4ff8ca2e93ce234d8bed927c00158"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/CreateForAuthenticatedUser.php","hash":"ca26d0099704a9fe512190382a7bd8df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/CreateForAuthenticatedUserTest.php","hash":"a2f053fa83af3d2aafd724e83b9e78fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListPublicEmailsForAuthenticatedUser.php","hash":"88bc40ab11500e8234c04491a9962a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListPublicEmailsForAuthenticatedUser.php","hash":"31da1bef529458d00577726c4b0453f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListPublicEmailsForAuthenticatedUserTest.php","hash":"476021a89776436a327014f6f5b92354"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForAuthenticatedUser.php","hash":"62a1d6c4fd1cf52d7b699ab0c3df5ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForAuthenticatedUser.php","hash":"47a80486966292514e1286eaa8940dd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForAuthenticatedUserTest.php","hash":"8b1f62160ef3e9e5f0a415ae4efbf6f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CreateForAuthenticatedUser.php","hash":"b540a010bc846901f1dc93f4d92f4ea5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CreateForAuthenticatedUser.php","hash":"87dc6dc0c47a8db0196e97f451c8f436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CreateForAuthenticatedUserTest.php","hash":"630a844d5fd032ad72af495702f5975a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListInvitationsForAuthenticatedUser.php","hash":"7038446a8e3b1af2f34437476859fd92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListInvitationsForAuthenticatedUser.php","hash":"3537034c6c8334a6ef62bdd4981676cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListInvitationsForAuthenticatedUserTest.php","hash":"5693d794ddc7a1b8195848b11e14e79b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DeclineInvitationForAuthenticatedUser.php","hash":"3f90df80f56ba950a939fc40a7267d2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DeclineInvitationForAuthenticatedUser.php","hash":"26ae54c334b7c70a63b9eed6b74f19a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DeclineInvitationForAuthenticatedUserTest.php","hash":"3748bd3e00df7237c1331dc816a3dd17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/AcceptInvitationForAuthenticatedUser.php","hash":"44ae8bd89499988fe5c097c3e21a8985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/AcceptInvitationForAuthenticatedUser.php","hash":"7cad8b21d32b31c13fd01f23c99bb0ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/AcceptInvitationForAuthenticatedUserTest.php","hash":"5f8d717a430de6771af74de454e0c171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSocialAccountsForAuthenticatedUser.php","hash":"bd4a0d1bc81c78aabcc460c17c9950fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSocialAccountsForAuthenticatedUser.php","hash":"a2bb6534ea282480213477ab3ff36a04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSocialAccountsForAuthenticatedUserTest.php","hash":"83199cf9222c09368c077d235f251360"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/AddSocialAccountForAuthenticatedUser.php","hash":"a3888488695d85ee732a819884725ba9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/AddSocialAccountForAuthenticatedUser.php","hash":"0e8a618ab788abd7b91451709bdd9a4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/AddSocialAccountForAuthenticatedUserTest.php","hash":"2f6f1bfbba73cd70efdcf43d502afde6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteSocialAccountForAuthenticatedUser.php","hash":"77d6e0558418bb9085772d98c39a4682"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteSocialAccountForAuthenticatedUser.php","hash":"8c114026039be2e4198ef4dee56fdb5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteSocialAccountForAuthenticatedUserTest.php","hash":"025269c884a92066f911f20a1103395b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSshSigningKeysForAuthenticatedUser.php","hash":"d6e2969ca12a0ba61940df9161d983d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSshSigningKeysForAuthenticatedUser.php","hash":"8344ec897a8867014c30f771a63becaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSshSigningKeysForAuthenticatedUserTest.php","hash":"ba511d3bc20ff35aeabf135bf79d6644"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CreateSshSigningKeyForAuthenticatedUser.php","hash":"b778dc76d75fe0bf50a1fe350aed523e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CreateSshSigningKeyForAuthenticatedUser.php","hash":"7ffab53323c718098149cc6b5c41c85b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/CreateSshSigningKeyForAuthenticatedUserTest.php","hash":"e7f214ef7a0e3e4419750a0f86f4a9b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetSshSigningKeyForAuthenticatedUser.php","hash":"409cbef465c7714cc52eccd4a05aae8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetSshSigningKeyForAuthenticatedUser.php","hash":"5b62ce40303a55f97b4e4d6838026a73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetSshSigningKeyForAuthenticatedUserTest.php","hash":"db947b3dd4d2eb05c7ddc47aab833e8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/DeleteSshSigningKeyForAuthenticatedUser.php","hash":"b165cd110f513b5cb01d636187b3e1d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/DeleteSshSigningKeyForAuthenticatedUser.php","hash":"08650a6bcdd648573892836c8beda3fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/DeleteSshSigningKeyForAuthenticatedUserTest.php","hash":"ace07a4355f916010e11d81a16e4d743"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReposStarredByAuthenticatedUser.php","hash":"a1171573134f8904d514847a3c9509a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReposStarredByAuthenticatedUser.php","hash":"bafeff7b8ec22b736ffd0ab8b57b2036"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReposStarredByAuthenticatedUserTest.php","hash":"43fac3de6c85b90e4ca8bfc0cef53f69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/CheckRepoIsStarredByAuthenticatedUser.php","hash":"3e50e1d894ebbf9f9d412fb7920b25a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/CheckRepoIsStarredByAuthenticatedUser.php","hash":"9d27c57631bbc3cb020f55e51ccea1f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/CheckRepoIsStarredByAuthenticatedUserTest.php","hash":"7ed395185caa4754a72f87826ad3a112"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/StarRepoForAuthenticatedUser.php","hash":"474621014fa28bda0ec2f5b28a31a8c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/StarRepoForAuthenticatedUser.php","hash":"1c228100549bff39027a3b35daf2df0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/StarRepoForAuthenticatedUserTest.php","hash":"eb5c2f651f667273f14cd1eaccf964eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/UnstarRepoForAuthenticatedUser.php","hash":"fd0410a61060728dcef9196b3712f585"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/UnstarRepoForAuthenticatedUser.php","hash":"12a21360e5391a136f0a4112003901bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/UnstarRepoForAuthenticatedUserTest.php","hash":"7f7c879fabad5cb4ec3f0085e509b2c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListWatchedReposForAuthenticatedUser.php","hash":"9fcb3f67d5535ade70e0f26be55f24cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListWatchedReposForAuthenticatedUser.php","hash":"4adee770181ddc721f08f16003afb59f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListWatchedReposForAuthenticatedUserTest.php","hash":"8416eff0f9c0955b87a971f02668b670"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams\/ListForAuthenticatedUser.php","hash":"26afa61d73f4b8a3fa3120b30f35c009"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Teams\/ListForAuthenticatedUser.php","hash":"20b16855b63e91a4789831d918a55fac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Teams\/ListForAuthenticatedUserTest.php","hash":"8c8620658b3de3c99ffd252637fabf74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/List_.php","hash":"0c0bfd23a7bbc5268956377ed42bd0e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/List_.php","hash":"edc3b431e3154fa697e395d93bcead39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/List_Test.php","hash":"41d565b0ced642db1aae6724df0b07b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetByUsername.php","hash":"414b576e21fc079b8f813806505ae3a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetByUsername.php","hash":"eeaf8b555dd587d05ec7e011b9532495"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetByUsernameTest.php","hash":"008358efffb1aad582158f9ad9ab7829"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForUser.php","hash":"ea446f76e0bed59a07978a43e153bba9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListDockerMigrationConflictingPackagesForUser.php","hash":"15fb51e5df2b1ee16852a42403e3b462"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListDockerMigrationConflictingPackagesForUserTest.php","hash":"646d4f4f698abc95837d584d2e057719"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListEventsForAuthenticatedUser.php","hash":"c8a4f51c16fca9605d28978cbce11372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListEventsForAuthenticatedUser.php","hash":"090dcf4d708c6b54c0359af6b5e2e130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListEventsForAuthenticatedUserTest.php","hash":"29408fd4b7e26d151a3efe823d7f8d46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListOrgEventsForAuthenticatedUser.php","hash":"20cd6e6e5648deaeee78518a633857b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListOrgEventsForAuthenticatedUser.php","hash":"f2791db2c52eeebfc1618fc7935535f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListOrgEventsForAuthenticatedUserTest.php","hash":"be8f6286c101a0d9d7e070d53bafff82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListPublicEventsForUser.php","hash":"744a78e81dc6b5f45f46189b06931bc0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListPublicEventsForUser.php","hash":"9edaa234f2dc0ace800261430e6e56a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListPublicEventsForUserTest.php","hash":"c6289f785b7bca313926e7446715f891"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowersForUser.php","hash":"259d9b1be7d8d5f78d2d8d0c8d9f795f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowersForUser.php","hash":"2878fd3f3e04633840c0634c003a16de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowersForUserTest.php","hash":"80f7013e2d1891619416d69f7d8cddc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListFollowingForUser.php","hash":"48b8231269fe2fb39c76117041c89de4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListFollowingForUser.php","hash":"50374a3f68ad811d0858cd65862a2e8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListFollowingForUserTest.php","hash":"c9dc2c40908ddd23c6ff1b81c90fd93f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/CheckFollowingForUser.php","hash":"c93f7adee846ccced626a4e392b994f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/CheckFollowingForUser.php","hash":"1598583e083aad63678612c1eb50295d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists\/ListForUser.php","hash":"3d78171580acea0b8c2affcc302c7d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Gists\/ListForUser.php","hash":"5cf801fdee87011c91e596d252daedaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Gists\/ListForUserTest.php","hash":"f27f34e0b5666913291d9c2401e783f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListGpgKeysForUser.php","hash":"da54ad7fa0db8580aada935b5181a86b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListGpgKeysForUser.php","hash":"5ad2e1d62493b8fae2075b8b7a82e673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListGpgKeysForUserTest.php","hash":"7cab286a05cb98b8c2e6484f0fa735a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/GetContextForUser.php","hash":"2f5c205003b3cd0d8aa6d8074f437b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/GetContextForUser.php","hash":"3780512837342a90c7933181a202144c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/GetContextForUserTest.php","hash":"706a4fad68dfe3c706907eff3b75d2e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps\/GetUserInstallation.php","hash":"b26cb77a45323e08fca4c579569a3b26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Apps\/GetUserInstallation.php","hash":"74e3fe422674ebef71e50366af962f55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Apps\/GetUserInstallationTest.php","hash":"46b7eae45f5a75aeb6598e8fbc7e2dd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListPublicKeysForUser.php","hash":"6ee92433bd895520e4423edd05adf97f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListPublicKeysForUser.php","hash":"37bc61e09820d2d942be48814310d345"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListPublicKeysForUserTest.php","hash":"b4898202d376e724764f22e320352960"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs\/ListForUser.php","hash":"d141cf23f6f5ec6df89243d25a326a50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Orgs\/ListForUser.php","hash":"039dc1da94430127e3c5caef07e54aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Orgs\/ListForUserTest.php","hash":"136d764e006bccd77db6992c11a92841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/ListPackagesForUser.php","hash":"cc25f4fd687c7c330eacd1c8eb9e37bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/ListPackagesForUser.php","hash":"fc3bbd81ffa67480083c475880ca8257"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/ListPackagesForUserTest.php","hash":"cae480051a0074a280b10f417f5e6cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageForUser.php","hash":"7bad0d6afaa89f338e9fe2dc468d2d7d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageForUser.php","hash":"64f92bca02df7cc9bf2b46532f7c9f06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageForUserTest.php","hash":"b7e83a0ad14355b84df3ab44d0cfc1c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageForUser.php","hash":"7c0560b5bd0f5dd2402a0b6cefb92a15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageForUser.php","hash":"a89d41d8d17c3e4964d5b286dd4e20b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageForUserTest.php","hash":"ff266f407189761a5237209b591e7ad0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageForUser.php","hash":"a0de916e23852b8918d9a715da6dee4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageForUser.php","hash":"049fdbd50445eafa02a6699dccce9e02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageForUserTest.php","hash":"24b02d2742a2f15b1c025804306d93a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByUser.php","hash":"e01abdd26b6bca45f782be59a37b6055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetAllPackageVersionsForPackageOwnedByUser.php","hash":"0a26db115c4947169a3f31eecd18e1a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetAllPackageVersionsForPackageOwnedByUserTest.php","hash":"c346cf45f6bcd4990fb6ab8da46d33ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/GetPackageVersionForUser.php","hash":"bc5129b8b74f8690376502cc83cf7ffe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/GetPackageVersionForUser.php","hash":"149cb7f970aa78442f9a133990ea6064"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/GetPackageVersionForUserTest.php","hash":"21ddadc5304849a4d4ce0a3afaedaa39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/DeletePackageVersionForUser.php","hash":"32d99364f4faf03461ca69835cdeaf94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/DeletePackageVersionForUser.php","hash":"0da376aacfc975bc8cf3522e1fd252a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/DeletePackageVersionForUserTest.php","hash":"055b363e7c270c12f7d40dfd760fb5e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages\/RestorePackageVersionForUser.php","hash":"8fa3712b188efb5dcdef36fa8a0c9f25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Packages\/RestorePackageVersionForUser.php","hash":"7aa6e437179db07553930ca3c4581aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Packages\/RestorePackageVersionForUserTest.php","hash":"4cde8f3d10fa0443fdd56860d7f5a1d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects\/ListForUser.php","hash":"7fd34a598c746ad791e4590c8fde194e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Projects\/ListForUser.php","hash":"4cb4c07792977d57ecf1c72de37c9102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Projects\/ListForUserTest.php","hash":"4e5d472cd4e976d59131f8869d289a33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReceivedEventsForUser.php","hash":"8232c604b7941d87711c10a9e29bc16b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReceivedEventsForUser.php","hash":"9e373c1cc43fd4c3b4d35982dc0038a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReceivedEventsForUserTest.php","hash":"b066757e634a7c1963456b2e7bd15889"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReceivedPublicEventsForUser.php","hash":"3b6fcc563f5e0aa25e1811a2721d69a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReceivedPublicEventsForUser.php","hash":"608cdddb57177c9c0b668a32ce2c8dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReceivedPublicEventsForUserTest.php","hash":"399f6eb760b15db4447da5a08b966f6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListForUser.php","hash":"03cc157ae3ee8896413b64258e7fbc99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListForUser.php","hash":"0ddf31b57f290016ed94c89f1054c0ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListForUserTest.php","hash":"f2c7944d33432a433cb34dd97b110869"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubActionsBillingUser.php","hash":"a482d873524c5b035bc252baa7993e48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubActionsBillingUser.php","hash":"49be701f521e3a485e8998b6a1c1b011"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubActionsBillingUserTest.php","hash":"3262e648c3d4ff034a69d67953454f6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetGithubPackagesBillingUser.php","hash":"0ebf3ba6220397ece713650ec4cb3dd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetGithubPackagesBillingUser.php","hash":"3db52a2e90ec60c9e33396170ce53563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetGithubPackagesBillingUserTest.php","hash":"f68af61f942df406c7f0b156a40d0c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing\/GetSharedStorageBillingUser.php","hash":"0322bfd5df62cade872b498e3c6b1ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Billing\/GetSharedStorageBillingUser.php","hash":"8797c7b7f3cc107a6bc2cb91f715a891"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Billing\/GetSharedStorageBillingUserTest.php","hash":"9586b3ced957ec266614d0dd43b6d087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSocialAccountsForUser.php","hash":"cb1fc2507bbec666f35adacaa1857b9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSocialAccountsForUser.php","hash":"86080af918c30ebcf03df76df83c3e6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSocialAccountsForUserTest.php","hash":"af59863a90304f763a957baa027318ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users\/ListSshSigningKeysForUser.php","hash":"731958eaeca4fdc5b1c94c3b88683e6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Users\/ListSshSigningKeysForUser.php","hash":"726b03a5b0903791c06542aa5199bdb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Users\/ListSshSigningKeysForUserTest.php","hash":"38550bad956e5442e88de6f498a1f0e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReposStarredByUser.php","hash":"a42cd55615f5e458c271d7163537f21b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReposStarredByUser.php","hash":"e099e3429f8ea78776d9e8b37d4157dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReposStarredByUserTest.php","hash":"a498ccd3fa9294aea0c5a4b873437994"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity\/ListReposWatchedByUser.php","hash":"d20d6229126a506fbe2daef465bca923"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Activity\/ListReposWatchedByUser.php","hash":"99f9fb6e27e7caa940494fda170b55fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Activity\/ListReposWatchedByUserTest.php","hash":"3ddf4980fa94f4ffacc49a5052888225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/GetAllVersions.php","hash":"e9de5849f6e38a0d40221d5f95598368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/GetAllVersions.php","hash":"e00f7bd6d8cbe5d33c44b33d903a3222"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetAllVersionsTest.php","hash":"4ce818409f47984def7ec339c728f907"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta\/GetZen.php","hash":"d2442d64433ce85284434762e204385a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Meta\/GetZen.php","hash":"b34692b706fa8432d14b068ce57806c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Meta\/GetZenTest.php","hash":"24bdf6e23810553a90002935a158c662"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Root.php","hash":"7815c742e296b5df8bed183c62486127"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleUser.php","hash":"97067a92ca8283cd802c1dda8f2bc420"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Integration.php","hash":"4634ba7ac8dd2352bfab506136ff80bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BasicError.php","hash":"aa63dcbe1c834d3e11db316261161fbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/BasicError.php","hash":"2a38eaeeaf370c545d5ab0f24ac51cfe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ValidationErrorSimple.php","hash":"9de475fc0fe5d675bc5519115703ce4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/ValidationErrorSimple.php","hash":"f986f2f11d21985d3af142e2e182d6b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigUrl.php","hash":"509aa169317eca4d5a787d16edf35456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigContentType.php","hash":"e0fc0fd4901dc6b7870f504fd20ee140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigSecret.php","hash":"3138d144cf05554990e30c6092e9ef5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfigInsecureSsl.php","hash":"c41437a6371b8716d667e24c82e91251"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookConfig.php","hash":"a619ba6d938d457597d828910afdc372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDeliveryItem.php","hash":"95290fbb84cdbdc15ee70913a45c7a42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimError.php","hash":"7061c10cd7abaafb683960d6da2fb586"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/ScimError.php","hash":"0fb2438967e1f9afe83d53afb7f22d3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ValidationError.php","hash":"673e83611c1ec1c43834c05d61689c2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/ValidationError.php","hash":"8fe05003f301b199303f754586a178be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery.php","hash":"dce367a5a04339750dfe9861e58b3645"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Enterprise.php","hash":"acb449e4a333627e8c71e1306c74d948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IntegrationInstallationRequest.php","hash":"af1729ff83d62e75648bdd4983d303aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AppPermissions.php","hash":"720d495cfe2dddeb5e6e0e82e76399ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Installation.php","hash":"04af94482a94f5e5cdc4859adc0a3aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LicenseSimple.php","hash":"dedd71e8071a518e2f8f724f6b02b32d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository.php","hash":"05bb8f0d5a4eb0e4391d3375709dfbd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InstallationToken.php","hash":"5e64bae2607f48176b393f6f0eb2a92a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScopedInstallation.php","hash":"c179cfeeb736a355383a76080a74d6df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Authorization.php","hash":"eebfebf298156011c540d2ddef75d3a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeOfConduct.php","hash":"7787563c8e35223493147c81ce9ee043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics.php","hash":"fc5d8b0fc8db548e149fe5747c939799"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheUsageOrgEnterprise.php","hash":"140a9561c46ecb21ad3860efeee71677"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsOidcCustomIssuerPolicyForEnterprise.php","hash":"6d74017fe7205a8b15526122a88a30be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnabledOrganizations.php","hash":"fcabadea410b2d8eb095d986cfe52c9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AllowedActions.php","hash":"a95ea22acd76143dc0645a886276efa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SelectedActionsUrl.php","hash":"cf5e05beaf35c0846b633e4e8e0d278e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsEnterprisePermissions.php","hash":"0a71e71e75f9755c020470d65e3f5920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationSimple.php","hash":"bfd23fa41f9e7766979fe7183d2eb4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SelectedActions.php","hash":"6f20eefbebb3ea5749c55c6eaa2a8e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsDefaultWorkflowPermissions.php","hash":"07d5da9560880302bdf1c9eb34990aec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCanApprovePullRequestReviews.php","hash":"de864a259cc8ad79b9649c3da8cdc062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsGetDefaultWorkflowPermissions.php","hash":"febd147dad4e31adabd981bde397f1c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsSetDefaultWorkflowPermissions.php","hash":"2639c9d8c95a925befe4fea49916e8a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerGroupsEnterprise.php","hash":"c1ed67c4c7cf1e13d80ceed57fdfe02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerLabel.php","hash":"652a7992fec166e37d848adf6a8be126"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Runner.php","hash":"894a441c9e7961a0db41144b39ee7501"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerApplication.php","hash":"28606193f5f8bfdc64180429197f31ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuthenticationToken.php","hash":"f281913f055c0218585c9a2abc6b42ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementMessage.php","hash":"d57c6b9dd14585d70bf602cc233deff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementExpiration.php","hash":"13c9ef131c9d18c4ff7aa3ec4a6859cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementUserDismissible.php","hash":"a16ca0590af1cc030a3d33edd8d2ec30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AnnouncementBanner.php","hash":"93aa1b1da9c85450146864728ff8e26d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Announcement.php","hash":"b318ffd23313c1a74d6caf37783820ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent.php","hash":"4c8ad3ee62cce417e7c164b8ebd25967"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisToolName.php","hash":"56f05d35eb6b1951c15ffa2884d94d01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisToolGuid.php","hash":"a7f67400272fc617b27ce4a70ab50c61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertState.php","hash":"641e079f9e9ef9a43583a1b607d83ce2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertNumber.php","hash":"9e6ccb705d1858c5b10ffcb316f6e366"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertCreatedAt.php","hash":"cda653373a48b9b1c20052e0f61f5293"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertUpdatedAt.php","hash":"9655423aeb443acc44f60e6fe72216eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertUrl.php","hash":"9314273d3946a80a40e0c8fd98cdce35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertHtmlUrl.php","hash":"ed8ff63f75fd85b54eda1fa2c40845ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertInstancesUrl.php","hash":"f01ea81db414b0030259b193165cd2e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertFixedAt.php","hash":"004f41b3e623aaa72bb687675f7e53f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertDismissedAt.php","hash":"b58617f335a8f10e2ec1594ab6b8f106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertDismissedReason.php","hash":"b4d41c8f28ad35930ba2f74788e26b5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertDismissedComment.php","hash":"faa25793efd075f2318df733c9aa990f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertRule.php","hash":"e7c89036ff31ad7f88e9d0275ecb8c6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisToolVersion.php","hash":"f20cb174c001a3ae16d4d38816f89fff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisTool.php","hash":"819c5c6e001dd50da387bd4a798a013c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningRef.php","hash":"2453e7f1c23b50328f75d36d64485d85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisAnalysisKey.php","hash":"d40f393110a0e258e8f10d4761a6197b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertEnvironment.php","hash":"5dea66eac8c85690d841a2398292da02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisCategory.php","hash":"2c9032d76456bd6265492bc3e25dab48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertLocation.php","hash":"eb4857594cbc63f0fbc9617dd5c5484a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertClassification.php","hash":"ef76eae311a87c202663cbefa0cd2db1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertInstance.php","hash":"b4f1c443cb8ca8732317fd8f25a2848f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleRepository.php","hash":"99bfb2b192f62661be54df5ff98c9972"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningOrganizationAlertItems.php","hash":"3131993dabe0fa9673bc946f19f75ca7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseSecurityAnalysisSettings.php","hash":"00284de9156fe7c0a4330e52d736b62a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetConsumedLicenses.php","hash":"39079b6c3898f6ab4e4e2c712681cb1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertPackage.php","hash":"8d7582685d55352ffc5ef071884e56c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityVulnerability.php","hash":"75899c2e389b5fbd1337145d3d210d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory.php","hash":"b0fe00b417ffd60c0b7e2d9dd8ffdb69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AlertAutoDismissedAt.php","hash":"76618a1a90b15ae86982f9865b03e5e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertWithRepository.php","hash":"c66a73ac778c62c68e63c42f62efa303"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetLicenseSyncStatus.php","hash":"8e4772a9fc17117429710483898c3e1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertState.php","hash":"538797773766ac2e587bbdb73875023d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertResolution.php","hash":"52ac23edb8a0df22f4b3421c3a7ec041"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationSecretScanningAlert.php","hash":"06627b56c95e2032616ed3bb2d621ef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsBillingUsage.php","hash":"5128774998d9c137a283ce97ecf6e483"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AdvancedSecurityActiveCommittersUser.php","hash":"37686737f1435db606480a5973d765c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AdvancedSecurityActiveCommittersRepository.php","hash":"5651cbcb3b5238126a7a47f4022fe0a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AdvancedSecurityActiveCommitters.php","hash":"a3063eee3e9fdda8838f2799a747e054"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackagesBillingUsage.php","hash":"ac1037fbd71eaba60950dba7e1fceb2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CombinedBillingUsage.php","hash":"843b8174dec9402efe50911125351410"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actor.php","hash":"161b9a1ca0d76aa4b2bf398db3558133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Milestone.php","hash":"33d8ddea784819bb881c842339bcf88d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuthorAssociation.php","hash":"5f4ac527563d8e2ef6d9a2066d386823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReactionRollup.php","hash":"f31728e500d4c5d0ad2e416c81080f74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issue.php","hash":"c1ef2c1860f426bc3157bd3107fec680"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueComment.php","hash":"5422a2579b27c2237ca224d8fded9b71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event.php","hash":"da85328a1a4e4e5f819950766ab1f343"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LinkWithType.php","hash":"3f84e69b489f9f7f915fa5eb683e0ecb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Feed.php","hash":"29dc6a0bae82b9b229e1931eb46570ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BaseGist.php","hash":"0336354a619ccca4017afde902b1e4e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PublicUser.php","hash":"c6b72f14f5e7d376f3d17ff8c6f0cc0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistHistory.php","hash":"da633b1d0333dd58a906f9c7112bb70e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple.php","hash":"07bc0e37e222dd4ee3b21f7a96a3f11c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistComment.php","hash":"6ef0308fa76fb9e60fdcd639d5f0a423"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistCommit.php","hash":"92f911a16c44455129ed6b0409cc317f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitignoreTemplate.php","hash":"8696658ed8dbdd8fdaf3cefb77edfeaa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/License.php","hash":"ac1c01acbb859577a4db36d8b0d61f4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplaceListingPlan.php","hash":"2da604e99f1d55cc082eba20c2b1d2a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplacePurchase.php","hash":"7a512e5371bcfa22decfcecd285de573"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ApiOverview.php","hash":"9a15ef9e7f723786e7394a9437a3a43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis.php","hash":"ce692d4af27fe6f70540f2640761fbdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MinimalRepository.php","hash":"9b3c568b74971e717e0a692f45148c7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Thread.php","hash":"1a43483b5903669359081558e9abf465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ThreadSubscription.php","hash":"595721f753e417d3c6a617fc3120266b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationCustomRepositoryRole.php","hash":"a4c9f2a0e70de9d393d42e0c69e9f0ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest.php","hash":"6ab5161850525eed4994999056ae0c97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant.php","hash":"500bfaae1281630b73394fb3fca4a73f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationFull.php","hash":"269143d13f6474f7d2267d114a2fb43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheUsageByRepository.php","hash":"3708faec7074d3e6cebf406aeba2df22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OidcCustomSub.php","hash":"9baca382f638dc63fdcdf6dfb91b586e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EmptyObject.php","hash":"0afaab96039b7b3256522a02d59b6abf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnabledRepositories.php","hash":"2130641041b3fe2306ea8f8c752cdb40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsOrganizationPermissions.php","hash":"0473d780a3e33d5f38449dd5e7d94b9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RunnerGroupsOrg.php","hash":"10b907990783a9edb946157739b974f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationActionsSecret.php","hash":"2a31f76225874ccea212b65e476b8315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsPublicKey.php","hash":"6fe2f4dc1d0b73bef75b72d63a0fb317"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationActionsVariable.php","hash":"5e35d8f9560d8f99de7dc35bd0604284"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertSeverity.php","hash":"a04db092d652b910cfc81a9b64ca7048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceMachine.php","hash":"a8c0e02eefaea53be841ae15cf353aa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespace.php","hash":"b3253728c3c8196501b1f814f53179f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesOrgSecret.php","hash":"def564753f360c8ffea03784f23eb838"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesPublicKey.php","hash":"b9b792dbd257f43c1e6bea02467bbdd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CredentialAuthorization.php","hash":"a014b419aab2ca7dc21ecd44ae8b6eca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationCustomRepositoryRoleCreateSchema.php","hash":"9bfba7a0e7870c750c82c469a5626096"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationCustomRepositoryRoleUpdateSchema.php","hash":"1014db020e538a16de8411463361eb94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationDependabotSecret.php","hash":"dd6ec985f7829310fbe13b778e2d1927"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotPublicKey.php","hash":"e3bde574645b293c942e8706c01ece1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Package.php","hash":"67c413ba390256f1857ae5357f2908be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroup.php","hash":"bfc3e2e41383d59d67681da4516b5cfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroups.php","hash":"bdc29fae0583e0afe0f08e26f24d1548"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationInvitation.php","hash":"249d9bd39fb7280523df365b183b17c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryFineGrainedPermission.php","hash":"2396d01d0675b7b4a20e19b7f6737ad3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgHook.php","hash":"6fb06d47dd35e055dad5b6088919c4e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionGroup.php","hash":"6b1894cb53b9a2a159a736ee3fa525c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionLimitResponse.php","hash":"526c5e89365e617735c278aed6bd3197"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionExpiry.php","hash":"cd5cc8a5ee3a7e835b29921047468205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/InteractionLimit.php","hash":"ab3c337619efbd49b9944d7563c42ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamSimple.php","hash":"0fecb654b0363185ff078621edebdcc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Team.php","hash":"b92391279e2914398b8c4b45a93f019f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgMembership.php","hash":"596ec4e3f99e30b13ab6e5e77dd34870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migration.php","hash":"291c05472c441bce59fec90210c49d42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion.php","hash":"09dbfa01c87bd90c3fee7e5945b04dd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Project.php","hash":"57b50c638bd52851b5597f657f5fa056"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleEnforcement.php","hash":"e98b13654a13e86cb23344dafd054fe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetBypassActor.php","hash":"2926813c89b200bead7e250db5637ebe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditions.php","hash":"749c5c4deb9e010cd4b2ae424cf6001f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryNameTarget.php","hash":"79fb99d6ab7fe07d127e6143d1e45825"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgRulesetConditions.php","hash":"4c2aa03c1bbcc5d3f79196f924483742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCreation.php","hash":"5573980ac8ee619510d39e360cdb86fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleUpdate.php","hash":"db100e9779bf348c6a3cfb12b22ffc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleDeletion.php","hash":"c314cd4310b3e8d89324ee409c951ae6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredLinearHistory.php","hash":"3c26fa2f382ab85eada7b9b78e08622c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredDeployments.php","hash":"7a4f54259ed40783cbbcaa82dd84201e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredSignatures.php","hash":"fc1a7258e1aa6ba31ec6b32118524ab9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulePullRequest.php","hash":"830d24b3fde587c9984c7c2e801b02f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleParamsStatusCheckConfiguration.php","hash":"376d7df23f057fe1c76bdeaf94495b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredStatusChecks.php","hash":"11ba0aa6574c6048976363e9e92262a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleNonFastForward.php","hash":"0bcadcc815fd633fff8bb36d67b020b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitMessagePattern.php","hash":"9b50a2e5ab85ff3b881274901e8a1278"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitAuthorEmailPattern.php","hash":"a96233b7e95842bba3ba334273bd96d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitterEmailPattern.php","hash":"204ec864bf217f4ed254e985ccd88238"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleBranchNamePattern.php","hash":"a39cfd1f282c3ba8e964a148992c4413"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleTagNamePattern.php","hash":"8c9b1f9eb4b3ecd7549142d6315b06d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRule.php","hash":"a6d7a4073f60eae928a4ab2f4dc443fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset.php","hash":"7f5b19291f532ed2df7ee12b22eb8937"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GroupMapping.php","hash":"8cb907fd3639122be24048dc00d94bf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamOrganization.php","hash":"e59b280191010571557a2e9ca0bf4f00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamFull.php","hash":"cd2003ed21baa78756a5b6be9f2e7d66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamDiscussion.php","hash":"d64fdcf6d16942ec99f5b58bb4d6a96d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamDiscussionComment.php","hash":"0c6c5199383b291ecaf794c41f428155"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reaction.php","hash":"5b08f79cc0fd494ecb98caedd26462a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamMembership.php","hash":"f4bfa53c0358680006a8f2e9699a5d35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamProject.php","hash":"6883f937ab6a6cdc34d4bc18ab1ef1ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamRepository.php","hash":"110c44923c5e80eca18077be4a35e35b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectCard.php","hash":"50a4e26f96b29d6cdce9f2619e3718d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectColumn.php","hash":"8c1b46a42ed0555c171197166b1d2a28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectCollaboratorPermission.php","hash":"6520cd3057094a1bf91cc3562050767f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RateLimit.php","hash":"3d0fae3d5f9d4a183f09ed4e7d1ca8bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RateLimitOverview.php","hash":"9635f6236f4d1193ed698acbf18c027c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage.php","hash":"22b175623b9e2d31d391293c2bb585d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeOfConductSimple.php","hash":"9c55dfaee56966e6e7ac555e662e2851"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FullRepository.php","hash":"d8be661a891c23e27c483e335c9c60c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Artifact.php","hash":"2d1e84f7ff3fee78a28b5469bad6ebd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheList.php","hash":"32cfbf4329a7f1c418ef9cdf50971722"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Job.php","hash":"bb4983571f0211c3256f428e11920583"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OidcCustomSubRepo.php","hash":"ac43e72f795517773a4f55f667a406a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsSecret.php","hash":"6d00117784cb7fa5ff48636e41a609f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsVariable.php","hash":"5c55f0eea7289ea96153250fcf59e041"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsEnabled.php","hash":"8df5cb3f66fa835755503d2e92d243ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsRepositoryPermissions.php","hash":"d9df9623c9c634dd10acece47b83521b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsWorkflowAccessToRepository.php","hash":"08759416023b0ba280fcdaf41343f73b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReferencedWorkflow.php","hash":"cd0b078d830668cb6dea2f5baf3bb567"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal.php","hash":"b0be1b24b93b2b868027a7b0284b88d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommit.php","hash":"e12525a3fd1c8a30233f1a456d3a8f2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRun.php","hash":"750a2ed29892f72d84533312f72b84af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnvironmentApprovals.php","hash":"4dd7b42e19768fc0f6d07067299a02fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewCustomGatesCommentRequired.php","hash":"bb65a89cd7b72ca1a36861abe86101df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewCustomGatesStateRequired.php","hash":"5fa8a8c7e963ca5c24afe61edb70d442"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentReviewerType.php","hash":"d713320a2fa3c5106ba04cec61c9ad9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PendingDeployment.php","hash":"ad8b5630410300c5a9342a6420d48912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Deployment.php","hash":"bbc1c6cc889eb541e821214b8150e2b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage.php","hash":"9f818bc6fb0fd971e0d609195e0ff6c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Workflow.php","hash":"25fda60273357613096cf4ee30058908"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Autolink.php","hash":"42958a51783ad0a1ce913d964433748b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchRequiredStatusCheck.php","hash":"c4c1cc7cb5c68a1e45d9112baa23c775"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchAdminEnforced.php","hash":"bc15fad673052025c1d3d94c47f32bf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchPullRequestReview.php","hash":"4ece260253a3f07db7be79acf39850b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy.php","hash":"c1f53f8c2e9302dd47a5a918089fa8e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection.php","hash":"b8a1ae9e1e286c4203c994859fc291ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ShortBranch.php","hash":"799cd716768077d6c92897a80ae02a73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitUser.php","hash":"0a9a3ab0a16fca81527d9e4dfad11e4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Verification.php","hash":"1723a47bc2858972d72a41fb095ed8ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DiffEntry.php","hash":"482b4092a21eacac42693ad42d8ac374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit.php","hash":"a28c2715a2d62bfdfb873649d91308a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchWithProtection.php","hash":"d9a5b40c682eb4bd382362f5d9f12e2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StatusCheckPolicy.php","hash":"4c8db03a82fc8318f7940cb7856a7ce7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch.php","hash":"415b2cf3208c4e9dd5bdf73637947f73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentSimple.php","hash":"114f7fe433afd0df92c2fba2e51d3a80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRun.php","hash":"297219960dde42cf76d95cfdd6660b0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckAnnotation.php","hash":"b3caf6a3055e4fdad9939e99955d24f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuite.php","hash":"6f7f06231174651aff5036421b03e0b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuitePreference.php","hash":"1dba4d52d6f5d2d9d3065723b95d830c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertRuleSummary.php","hash":"d2a51afb74050ad6a859f8d63c41e0d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertItems.php","hash":"5bb01bec0ed41a3d2667f1219843ba2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlert.php","hash":"aa84f4c34a5d74c95aeb8e8a71e26ad5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertSetState.php","hash":"73e7283b35c502d69335ac3f5a003606"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisSarifId.php","hash":"76461f9aa75ac16ce58ad11b80060055"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisCommitSha.php","hash":"4c0bad1dc9d7b3b83a2963c5b0755905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisEnvironment.php","hash":"bb7aee58cb525d99c8f7b519e7484336"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisCreatedAt.php","hash":"77e6838d99bdd190aff7aa6c93adcb47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisUrl.php","hash":"c359aadb45f51a9e5513718fc2a661bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysis.php","hash":"c73f8f9fbd4be66821dc574e3b9c986a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisDeletion.php","hash":"4fc02a8ee1e2d738ac47cff81fe10cfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningCodeqlDatabase.php","hash":"d6d550e52cfd98f9cf21b8c359675aad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningDefaultSetup.php","hash":"8e9bc4b227b97089f29644bc3a800956"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningDefaultSetupUpdate.php","hash":"272088a385d7224e5ee190f780f3c69f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningDefaultSetupUpdateResponse.php","hash":"8a2b6fe321778b50f22c87397abfd7bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAnalysisSarifFile.php","hash":"509ad599d15730bacfc1604ded9dfc13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningSarifsReceipt.php","hash":"8ddaaa212ab10fe2d5c1a5b997d20d8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningSarifsStatus.php","hash":"7e6e860130e0808897bdc8f323f50818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeownersErrors.php","hash":"be74f5573b31d245340df5200aeb1d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepoCodespacesSecret.php","hash":"8696a118bc6ab0b7e300c8d9be68d1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Collaborator.php","hash":"1fca90ebc74bcec5eb545f927f855661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryInvitation.php","hash":"59f7d227188a41699ac68e1c511dbb1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryCollaboratorPermission.php","hash":"29ef770954368e606c020c022e4a720c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitComment.php","hash":"0152ad373e40f86ece5d11b211b3fdeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchShort.php","hash":"3325f7d7d86242916722cc89b2216f75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Link.php","hash":"4409d14c1d3a572c5caf81514f23d47a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AutoMerge.php","hash":"adc3b5bfa57ee37ccd64b19fd6f6ccb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple.php","hash":"47d48a44d28b1764cb3c44144b864610"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommitStatus.php","hash":"ad2428fa264db96ca62f16063949efc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CombinedCommitStatus.php","hash":"d781d7cf71f1dbe1b71ac565150d7e65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Status.php","hash":"5b82c16ec8b520e29f318eda3548f495"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommunityHealthFile.php","hash":"29ef74ab265986195bfb9ed668f099df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommunityProfile.php","hash":"4a79d5b70cdacf1022aa5e260954cf19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitComparison.php","hash":"9dfb4560ff0478af8b37b83493a59424"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree.php","hash":"84c0b1da73fcae73bd8de417eadaf7c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentDirectory.php","hash":"7537e5c7e08fb6273153cfb8a6f3863e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentFile.php","hash":"8c5bece4b998fbae200419242a13434c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSymlink.php","hash":"2ca30c54d5ba0029b1ec433ad0c2f543"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSubmodule.php","hash":"00ab88b0b76a8ecbc0a4e78405eb3fc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit.php","hash":"f634089d1a319a22ab3480abe7d75d33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Contributor.php","hash":"f3c09ba9d39a9eeab7d4ef4c6d219daf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlert.php","hash":"1e6181bd67b1248c530442263cb515d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotSecret.php","hash":"7156fdd16b36b7f37fbd2e2e250a1a3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphDiff.php","hash":"1d9ca9079d2c8405f31723472704b4ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom.php","hash":"2ce321e1cee10d9d9a9b73ec82539666"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Metadata.php","hash":"19673a7a5fff703421d0f2b5d798f47c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependency.php","hash":"1fcae6e4d4b6db2daf4e2106b47acc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Manifest.php","hash":"491179a3594498d1bfbf0c07d1b106b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot.php","hash":"475294a2182811c51355d37fc272286a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentStatus.php","hash":"89988be75186320e2067fddb53b5fbad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WaitTimer.php","hash":"542fd179ee3e6b105d86c248d92da2e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentBranchPolicySettings.php","hash":"fa258b447bc8b44d48ff827698362e6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment.php","hash":"419fe2049f9028b1b07465ba6055dee3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentBranchPolicy.php","hash":"d5190cca257b64fa814edd41bf461fd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentBranchPolicyNamePattern.php","hash":"7d28b57f93ffeaba4c33c603d00f5917"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CustomDeploymentRuleApp.php","hash":"1ce8335e7004351558e7dac527fdb524"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeploymentProtectionRule.php","hash":"50423af392b322df00666bb533df07f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ShortBlob.php","hash":"a335beaf564e47f98bf851c697f29e78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Blob.php","hash":"528932a7eeca3b246ac204d7f42e9650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit.php","hash":"794f3e4796f86471d4999b373b57e894"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitRef.php","hash":"2e4d8714382295da5ecf81ed3da98fdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTag.php","hash":"371994de2f8e7d44cc8a80d898c46c51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTree.php","hash":"a1878ab6496ae82777b3731f9f09f78a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookResponse.php","hash":"b896386d1b0e6653ec9a5cb2dc006628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hook.php","hash":"99dbbc453271054f81687978556ef18f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Import.php","hash":"26b42787b67eadda51fdbeb0efba7574"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PorterAuthor.php","hash":"0d53dd5e9243a9d62b41e60bcc432941"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PorterLargeFile.php","hash":"11ffe643172ffc0d1adc31cb554c0278"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventLabel.php","hash":"bab2314131e650981f017688ce0792dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventDismissedReview.php","hash":"0cef15152413aa2dc05687abe0c63465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventMilestone.php","hash":"60346290ab0e575befe34b5c514845e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventProjectCard.php","hash":"3e84970a4c039c8a33fb0c2f2b6f008a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventRename.php","hash":"d03c0a05cc1efae07eb94ba982fcc32d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEvent.php","hash":"bff42a7a79d738527d0c4913a62ed230"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LabeledIssueEvent.php","hash":"7bbec20ba8206f820d515e277ebc0eb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UnlabeledIssueEvent.php","hash":"6c0947812ec23ffcf67264089102695a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AssignedIssueEvent.php","hash":"0d00aa773d5297ef35cbf188409c06a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UnassignedIssueEvent.php","hash":"6453f9f4eaa2fb9b9ca9c85de89923d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MilestonedIssueEvent.php","hash":"3d50e419246d9736584049a41d57e013"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DemilestonedIssueEvent.php","hash":"f333e6cfdaf039ae8665bd99515f29fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RenamedIssueEvent.php","hash":"9ddf9ee35af0f217cae65e4e90546eba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewRequestedIssueEvent.php","hash":"0cf0190c40fac380c1ae9f0b63b169e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewRequestRemovedIssueEvent.php","hash":"c04c3c71e9b9155e9311a534d634e25c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewDismissedIssueEvent.php","hash":"3094afdccabd10f493e4fb783263d157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LockedIssueEvent.php","hash":"d42923180cb828323e95dccd084b935e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AddedToProjectIssueEvent.php","hash":"f1860a59987ded4bc8dc1441a612f8c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MovedColumnInProjectIssueEvent.php","hash":"7fa98120c432bf820990cc04964c34a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RemovedFromProjectIssueEvent.php","hash":"c336a0b77b6f35bef09434b35c47adb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ConvertedNoteToIssueIssueEvent.php","hash":"d888dc671c71398d83211cb3da1b6fc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueEventForIssue.php","hash":"914a0f39aff1d9f9aa9513849389058e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Label.php","hash":"19ea4928b9d97d1e55bc1bae3c6f1841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommentEvent.php","hash":"2339ab104dd6e0cb636c36ee19c29536"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCrossReferencedEvent.php","hash":"38744e5d5a81d53af1552fc935b0b065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent.php","hash":"438b5e15c3a4eee6ef8644e79f99a3ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent.php","hash":"59909a79e09ed0184db664d60bb4c525"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment.php","hash":"7cca22bc038539f7fb8e5b74da1fed7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineLineCommentedEvent.php","hash":"a7434674d4c99500377a460a8ac91957"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommitCommentedEvent.php","hash":"4204c1ae3be947c61f4024e89cfd7083"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineAssignedIssueEvent.php","hash":"ec1013db7b24ad04915e2f81beb5d9e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineUnassignedIssueEvent.php","hash":"80063e4f4151a0426fa132f3ea23239b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StateChangeIssueEvent.php","hash":"16b3cd04c530d45ca06d9c149028d6bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineIssueEvents.php","hash":"1ed35fe116d4a3ff36e08e4b37f7e9c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DeployKey.php","hash":"8fc832bbc9871e007c364bdadc7db3bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Language.php","hash":"8b4d8c3db8565f791375cf4f92c23e9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LicenseContent.php","hash":"ea6cca697b7528795b04842d27bd9048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MergedUpstream.php","hash":"c2ab8dbdb41432485a322d8dc99f4124"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesSourceHash.php","hash":"f8594e222c2581d342f623687f44c75f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHttpsCertificate.php","hash":"fe20446d6ab3ed5c4b4f887b8972b741"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Page.php","hash":"3cfc3e38c60c226f20deac4ccf954fa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageBuild.php","hash":"1dfe1f057bb38ea5fe99e01adf61b562"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageBuildStatus.php","hash":"2ac12d28f52380e6d2005496d1067c0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageDeployment.php","hash":"3a44236be17ec7ec243a563044f6e8ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHealthCheck.php","hash":"ca4c5f9f70b496ef366dc1717e6615ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest.php","hash":"47993e664bc9f2b3b33fb82e753aadfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMergeResult.php","hash":"c8db50edf436969c23a572959cb7da81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewRequest.php","hash":"4a425ab626e593dd787a6f951cb82258"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview.php","hash":"32588cfd5cc54112ae429bff24342729"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewComment.php","hash":"37693e2d1ed070749f797706ad57f304"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReleaseAsset.php","hash":"46605c483a502bf4a3e6ac6c734dc430"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Release.php","hash":"670a847a295466b44076dd0e48e6cedc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReleaseNotesContent.php","hash":"8e2eed828411896774f9586db99d91e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlert.php","hash":"dffdfff10380909bfb551182cd4c849b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertResolutionComment.php","hash":"92c31f3445608780346dc1b5b86d8be8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationCommit.php","hash":"68ed39e6351ed027813ce8f694a0f5b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationIssueTitle.php","hash":"dcb5e7fd8557f10821a48501bbe062ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationIssueBody.php","hash":"0d633d388fc1681085352c20c4b622c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocationIssueComment.php","hash":"4d1836323480d2e134cefa7870e3da50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningLocation.php","hash":"a5d817cd418e86b2ec3d2ca5a57b172b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAdvisoryEcosystems.php","hash":"17345792f2cfb799b76b6c370fbe8ee0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryVulnerability.php","hash":"7e053cc2323b339612a73f1a2d186811"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAdvisoryCreditTypes.php","hash":"fb669e69aebcde6dfcb3781c1bc52e09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCredit.php","hash":"19b94914b18bba81083910d4b62b85ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory.php","hash":"f3c0182120a1908e94b96a25b715017b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate.php","hash":"b9b4915d26a50fd3fff8670fca739930"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateVulnerabilityReportCreate.php","hash":"048cc2aa7a026af374cda7d3bff40d3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate.php","hash":"5ef2c8bc65efdd668d422c2f43a9d1b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Stargazer.php","hash":"46dd1cdd0faea2f6dd4db2e1c3e49f50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeFrequencyStat.php","hash":"e74ff80883793ee8cbb1fea16fb12370"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitActivity.php","hash":"7e9c2c08950b6ca19d5e13e6b0d73175"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContributorActivity.php","hash":"5baca83ff106d60a9c8864b84694037e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ParticipationStats.php","hash":"28b434bb7cb6e45e21a2925f9d21f848"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositorySubscription.php","hash":"d8f9301be43d688cbf0a4f92e8a018fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Tag.php","hash":"a5cc2fe191a5d214fd922071e4da6574"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TagProtection.php","hash":"66fff940c11b689c4f7bd05be56340ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Topic.php","hash":"89783d183566ed82f1b6a874255ff21b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Traffic.php","hash":"73f6a9e8ded144ef999e44379e0b85de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CloneTraffic.php","hash":"e33a859ccb5643526031891121ec3f12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTraffic.php","hash":"292dad2402724366621d9f5f7d96e74d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReferrerTraffic.php","hash":"83e73ee071a706aeed5192e576551b6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ViewTraffic.php","hash":"77bf09d0b79e73ce30cb1ada007b3136"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser.php","hash":"8cd6b76ee1325caaba1abb2013cbe4d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUserList.php","hash":"32c6f4efaf74a483ac15bce528ddae81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SearchResultTextMatches.php","hash":"27bbed1d49fd6708527cf0cb7f2ee1d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeSearchResultItem.php","hash":"0b2d2e7b0fee91eab23cca307aa9d8c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem.php","hash":"723c4bd1e501730640711e23a11aa0e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueSearchResultItem.php","hash":"36f7eafa40ac4c594247983ad303263a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LabelSearchResultItem.php","hash":"e47c15a5303fccafd8c3107478e03d5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepoSearchResultItem.php","hash":"6563a5f40373dba50542af8019715b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem.php","hash":"f26f84830eca470f97a52548855ad6f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UserSearchResultItem.php","hash":"0b2170be089b8d9183f11ff10ad4c512"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateUser.php","hash":"aabfa3f9965cf076a181594e3ef278ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesSecret.php","hash":"08be67604edad45fae217f8363a077e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespacesUserPublicKey.php","hash":"c7efaedf26aec60158724f9cd73f5c29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceExportDetails.php","hash":"6dc140a6e7fbbbd8715118cb05a78749"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceWithFullRepository.php","hash":"2306c6e64c17fc371e82eec55f50ac55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Email.php","hash":"d12330722f707ab4dcf0744292e75478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey.php","hash":"c4bd8c06cda563121c688e24f747e49e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Key.php","hash":"8f6fa0be17cac8777ffbb98bbb41e6f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplaceAccount.php","hash":"b8727e76268a238fb3277dacda204db9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UserMarketplacePurchase.php","hash":"77d779a0dc6afa4f03ad2b414b297ff5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SocialAccount.php","hash":"47ad83d0e3271de4dcc9928be1617c88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SshSigningKey.php","hash":"09b634aca186f940a8e6e887570a57e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StarredRepository.php","hash":"f79f0f9d4c9e2ab599f23f65b034ff0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hovercard.php","hash":"187b0478b2bb3fb40f48bdca87cd24fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/KeySimple.php","hash":"bf9f505d2718c1e7e0668420e3ea099d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleInstallation.php","hash":"9c2c9f40e696592ae8fa0d3c00466211"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCheckSuite.php","hash":"8fb1048cd6544792dab56893f9b98fc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRunWithSimpleCheckSuite.php","hash":"573887106ccec70cda7bb3d40f73cb66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion.php","hash":"ff74c312065c57e07cb3ad6243844be2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MergeGroup.php","hash":"707f71cbcd4f5ca1acb09930b2937ca0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest.php","hash":"5705251b5c18a57cefa31a9a6ec06c17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectsV2.php","hash":"f0169ef4f859afdcbc12a0b54a7366f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectsV2ItemContentType.php","hash":"c7e040e46445d63fe90eff09c0a58bf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProjectsV2Item.php","hash":"7f8381239bd226423c1b8ccedd2c1935"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleCreated.php","hash":"e53f9b2f7e13e4b840702d6b5411ccbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleDeleted.php","hash":"cc91132b6a0d1652a41aca7597fe9309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited.php","hash":"c6df5e122735b808ed3e4a63c46d650f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCompleted.php","hash":"25d31766764cce467331ec1ad1f5c428"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCompletedFormEncoded.php","hash":"23531e2b404005d0027e0e8b231d658a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCreated.php","hash":"9e0acc32b40a3de0d7a1b5c00cf9890d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunCreatedFormEncoded.php","hash":"883d3ee94896ccaf9afc5e3c2f12b7ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRequestedAction.php","hash":"9e99f6a4651137e882e73090dced845a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRequestedActionFormEncoded.php","hash":"144c052c61a9c963eb483d496b26c774"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRerequested.php","hash":"323090b9f2553f1c2bfd267374eceb6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRerequestedFormEncoded.php","hash":"ac82344810a5703689e89dba1bac7a9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted.php","hash":"0f20ef26c9ec825fa9e9157df0a4855d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested.php","hash":"6f5d4911d3018ff171f5ad852400a29c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested.php","hash":"8df28b6df206aa604a1f8e8bad397475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch.php","hash":"981ad9ea69c6ff5550763fbc0954dd46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser.php","hash":"a91ec77448a0c682a3d12493506a9c24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated.php","hash":"ad0864ca34d01a1cbda0f6aa9a740b33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed.php","hash":"42f294b50888f911a2e90ec7ad089a98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened.php","hash":"1d0b9dfc69ec583ee379048dd3fa658d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser.php","hash":"a1f031b45db37f74b0e4b1369a9030df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated.php","hash":"a7fb14d2b6bceff9b01a384e1bb26601"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCreate.php","hash":"027e37580e5e5028b9bf4d662fa45eb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDelete.php","hash":"18a53daca66ebbc541d33edfbdb8690c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertAutoDismissed.php","hash":"0dbbdd065e08940fc4fdd2fde9462ff8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertAutoReopened.php","hash":"baaec87db9023d556b83b02b94c0d339"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertCreated.php","hash":"1f0fc6ac5c96effcb498367e96e200e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertDismissed.php","hash":"b02d7f085c6485b5f49a183bced3b49e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertFixed.php","hash":"588e969698ce2230f588e6460c00ddb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertReintroduced.php","hash":"6e3bce3e3d7c85a926aa387252ebef18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDependabotAlertReopened.php","hash":"b0ad5b56a845779c72ae427923f80cb0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyCreated.php","hash":"61895fb5d377736e0f2dcb7cede8172f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyDeleted.php","hash":"fee7bf2e201578e336f448b102ccac6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated.php","hash":"6f193550e454666000f7d6ff98120134"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentProtectionRuleRequested.php","hash":"2a8903713b25fe20acbcf1c20de85200"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated.php","hash":"f1615c5a0c6eba591a6a79fac2085ddb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered.php","hash":"cab26e93e9a1391e6728940cbd92f5f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged.php","hash":"ac1578f999ba654035d8d7c4ab0a28f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionClosed.php","hash":"8e7f7eb85cca80041bce7e9e8fc40339"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated.php","hash":"b73b09155f35a26241fb8db6a7271ff1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted.php","hash":"e35316b50227aae99d92b227b2ff6437"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited.php","hash":"3c151a881d179b0a6b8065619e118d3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated.php","hash":"b22f2618b807024d9d5eb5921dfb11ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionDeleted.php","hash":"b073816d59cdd9125493d7b7daa16151"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited.php","hash":"b46b9e551857af1705c2f3eae85a6a40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionLabeled.php","hash":"d1658d09c9f13721bcc92466550da2a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionLocked.php","hash":"d499de5b9e1fdf624f24d62f2f570eec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionPinned.php","hash":"e1d2f06a5c935fcfb456e0cfda2ae448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionReopened.php","hash":"30f889138c09dd1e57e5808f93b369f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionTransferred.php","hash":"186b6f7e4d4c09e318673e1ef30fd7c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered.php","hash":"d79396efed37c58699ef6cafba6b43f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnlabeled.php","hash":"310341b202b7ea6ae4beb5ddfb39339a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnlocked.php","hash":"db098c7770e7a6aa449cdff56163eeec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnpinned.php","hash":"4c5942a1347bf3f612814d4b65f72e2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork.php","hash":"70f467f1a63909be30fa29c45af4c6ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookGithubAppAuthorizationRevoked.php","hash":"210eceb23897813b38128bbf8551f273"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookGollum.php","hash":"b7f862e6efcb996207813905e14082a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationCreated.php","hash":"c009b604e933169dd6716a40b83a70a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationDeleted.php","hash":"51d2a8e8c1d36eb5d0162b6a97e5ceb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationNewPermissionsAccepted.php","hash":"5ce7353372e17853583d29a8c915dedd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded.php","hash":"440026d3260e2b9236f54f207441b9a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved.php","hash":"26d7589d33eb2060d179d2d8b4d38561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationSuspend.php","hash":"be76bdbfe5aa62c21e008677b65342dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed.php","hash":"204945541bb178059f48ec871f34ddd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationUnsuspend.php","hash":"15dc8a1ad0ae75975352f0b998057ae1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated.php","hash":"8205bcfbec3aa09d19e6eaa35031b4f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted.php","hash":"46d50128379486ed3aed442f2cfff982"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited.php","hash":"ff9c9b40b90876bdeeed6746b7f834a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned.php","hash":"ec84826fa36ca8bc1c1d132f684a2b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed.php","hash":"ff8ad07630984590f5ff8067b869cd1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted.php","hash":"c736ffb2de061314acc3061980441478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned.php","hash":"3fb77b7edbfc7d055bc3b49aa5176aa6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited.php","hash":"0617603ccbca9d22c5b23ed6bfba00f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled.php","hash":"8b0437d48f7cb7cafa838168df4e5801"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked.php","hash":"bc500eaa9db8ac554959ff252ec9f4c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned.php","hash":"c811323eb57081b41c81aa7f1536a5cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened.php","hash":"ce54c8323cc92760e28556a7e9953faf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned.php","hash":"e774f3c8ce8979582b040b2dea2402d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened.php","hash":"7eb180817752918836fff77ea0dac14f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred.php","hash":"9f46269ae937565a1b21e2ee914658cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned.php","hash":"950fc652442ea2e51d55de545c8b8efa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled.php","hash":"a45138bf4f2aa56c11b29abb15bebf40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked.php","hash":"7325b9d62d4897441ab3f438aa36240b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned.php","hash":"5e710775e29be67ee9aa2d5ade42f8f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelCreated.php","hash":"cbb1f52b418bb740d444aea379a3d57d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelDeleted.php","hash":"29dd3a969a674a4909e55b001a2761ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited.php","hash":"e8d6cfebf95cedba8825e113d706f5c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled.php","hash":"02171ba6c052c1d3ad30d149437df7c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged.php","hash":"0ccc29f21162a28897f1f298e5d55932"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange.php","hash":"ebd96dc112e94bd8a84e3df3fd384aa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled.php","hash":"bb85e7d52818dc60de8518f5ea26ece4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased.php","hash":"da6e7613e2b5534d670fbcb32ad17b3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded.php","hash":"f6a7a615b901fff954470c94c43d77e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited.php","hash":"a76dc579ac2830023e186d18b39ac0e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberRemoved.php","hash":"693dc61c77816649e2e5193eaf4dd71f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded.php","hash":"eeaae6a73942838184423d8f6e2840eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved.php","hash":"ac3331c180122fa771edf8c5e245a764"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeGroupChecksRequested.php","hash":"825b41dc3999ed9d5ba5ee0ccefa3561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeGroupDestroyed.php","hash":"13c296f292618a069f6d6c6c597a6830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMetaDeleted.php","hash":"44c267ac8951cefcfad1c51059d1ffc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneClosed.php","hash":"46e2f5af129422e524382891e9d6b700"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneCreated.php","hash":"a4de123bebfef8b23ae5490cae13e464"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneDeleted.php","hash":"e60076e8ccb13db41b659cf3f68c1b25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited.php","hash":"eb4371478ade88ddc09b2df046d206e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneOpened.php","hash":"769d9b4386b867724f070c1ff982660c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockBlocked.php","hash":"1804b0dc926e1bf4689e3e45ff78b478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockUnblocked.php","hash":"4d2edd523ab9bab610eaea795cd19af8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationDeleted.php","hash":"f2df3778e0426be043b405de00151170"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberAdded.php","hash":"b5c1e8e0755a5c5c5cc3afe81a91b9f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited.php","hash":"36ca14ac2d79a105fa2bf23ccfebdede"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberRemoved.php","hash":"82ac71a43228b6d6d8f41f1386e09104"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed.php","hash":"6ae5f8b5a23f6e1b0dccd1dd61ad3da0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata.php","hash":"ac800ce7404767d8590bbf08e2f5c479"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished.php","hash":"3bd1facfa0976204ce9d2ebdf60abff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated.php","hash":"0db25fba714fe4c0f1e1baaaa3256805"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild.php","hash":"6394371d43d74a9e4c83439566d77cde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestApproved.php","hash":"ae2412b51515e6ddce641adfab2e4471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestCancelled.php","hash":"68198e980f6bb5594893e888b74f07b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestCreated.php","hash":"942556fb791c4ee6a418f4e1b161b762"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPersonalAccessTokenRequestDenied.php","hash":"b9e498a14e6019ae6ca29b16fb3259c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPing.php","hash":"d89ebe54e1e7cc41526cda64d41360dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPingFormEncoded.php","hash":"e8fa37a1b9a8cb551e34e00ace76fb5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted.php","hash":"c92a6943a7fac25e31e0d9786763a00c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardCreated.php","hash":"4580aa11023cee3f7b20fcdc3170d0e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardDeleted.php","hash":"85a95eb882af9123549fe979863dd1e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited.php","hash":"78ff6c41a0f42e0716ba3dad2ef78bd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved.php","hash":"f6b3b76ec4c9852326abedfd0022219c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectClosed.php","hash":"238fe071dd7aadccfe2fcb4004232f26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnCreated.php","hash":"f88434ca5289d4410932c5591dc5456e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnDeleted.php","hash":"66de7024af8652b1f75d054caa33dac9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited.php","hash":"b632fa9c34d3d464d4db487dd434d5e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnMoved.php","hash":"6b10e494dc0f78f932ca7e28be998a26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCreated.php","hash":"0bd8db570d8c3947e2d1e1c33ef8052d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectDeleted.php","hash":"1ad32e80b89177b27956c9ffd29404fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited.php","hash":"d74035b7976a7a708c0b94fb1250d1ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectReopened.php","hash":"e0178ef74beea566cb185e5f29c2e8fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectClosed.php","hash":"2681682305f10585f14feb0d64b4f628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectCreated.php","hash":"3c9628b5e9ebb03fea97927e0346481b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectDeleted.php","hash":"e9cb51781b195c59638655154f48b34d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited.php","hash":"28a2108ec53b362f77de5b176624ee0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemArchived.php","hash":"cdf9d5b1303c4839a8d17a76645c356f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemConverted.php","hash":"158c499dd53a5a33df22f622a278d51b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemCreated.php","hash":"6029a52e4b3ccc8ec41f3c3278074478"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemDeleted.php","hash":"b330e5e942da2c5aec0d5f9c1414d9cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited.php","hash":"b6bdc42e106f540acbbc354b3b237c30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemReordered.php","hash":"15bd8bc34f3c38319b0dc0c0afe370db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemRestored.php","hash":"24e843753182b6ec392ce279e0f051ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectReopened.php","hash":"0e8e9be954cb63de20d3b39c04be70d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPublic.php","hash":"3861399fae66349693f06f87ed8ed497"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned.php","hash":"b35a6920dc9d67dc6d74099030ae52b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled.php","hash":"5e414c4cefebe8000bdf7826c8918dce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled.php","hash":"089f85673b53a6fd115268096bebcef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestClosed.php","hash":"7f463c8039f1f769094b6593a002cf01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestConvertedToDraft.php","hash":"7975a54ec0830ae8143b6690d7b48114"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned.php","hash":"00c10b7edf5b803caf6df1f673be0782"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued.php","hash":"4f943e5589e9f85bc7e40a06ad6f1f62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited.php","hash":"ca1251f60fbc2e7534dfd6c0a584d37a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued.php","hash":"7a6570ee0e19d37e45de6acebd579ea0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled.php","hash":"7365abb6ce8be8cb95288fe5ee27f706"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked.php","hash":"668e03a50ba1061b5680d6d4180e368a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned.php","hash":"34777d8c3d15d6372b2f28af2b03ef40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestOpened.php","hash":"a51efb6483d66e12e5ba90ddb0e3f309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReadyForReview.php","hash":"6bd9f9e13f49ee7e6ed4db4795acee00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReopened.php","hash":"864e585bc688ef53ae5ee03522b56cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated.php","hash":"c898f447eaca600f6805113d1fe64c3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted.php","hash":"c9e2646e61bb247acbc25e9b2dde1363"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited.php","hash":"8f021fbef7003be94323e8152dc6cdb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed.php","hash":"d30de0fede25b9b0bc46bba32050a980"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited.php","hash":"1eee05e6484233f6bb97ac62f7cc12a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewRequestRemoved.php","hash":"0206956a0ba804527cddd9fd6b6d1608"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewRequested.php","hash":"9ae9df2ad11ed72777fceb50ae90aac8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted.php","hash":"5f15897429d55ed7bdb4e767b8430856"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved.php","hash":"c80fc6e805ee3cb9a463136da7d4b1e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved.php","hash":"de0970cf909e45638c4a7a9a7fb11560"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize.php","hash":"1635f00423e51f9b867de53dc99f18d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned.php","hash":"033ba3992ff83b15bd959b015f46bcff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled.php","hash":"7ba0d973d6c96ce2bf68a8ffa57530cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked.php","hash":"14d766dc35e90b022a44159a25ce8722"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush.php","hash":"e226ac6929ce176ef5bacfeb727fb948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished.php","hash":"dec8a2bcd43e9406830eb7d5ebf1f911"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated.php","hash":"c2278669271009bc4878911bfc2bfe7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated.php","hash":"5d0791243be99525993016f95efa35ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted.php","hash":"a14e7cd7adb1994d4fe8ee3b59c823fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited.php","hash":"091781fe44026cc7a6141fa47ea476a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased.php","hash":"9661a2eed3aeabe448305d013e42fa71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished.php","hash":"29d72db903e3d8b495d7b7e7ba4b17a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased.php","hash":"f5c07869b30442439367c7e140224d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished.php","hash":"4de8f1b8fc8c500821a71a15b1786580"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryAdvisoryPublished.php","hash":"a538d6b5fb150911d4e6a7653f337beb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryAdvisoryReported.php","hash":"b64eeaf2757a8e67dc1620567d495aa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryArchived.php","hash":"0faa0e0f5dc8525b83e6262a91458854"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryCreated.php","hash":"cc4bbfa09a0de879dafbc9429b58d293"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryDeleted.php","hash":"351c3b57bff63c7a471025f7b07b7878"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryDispatchSample.php","hash":"7b3b509669cd855ef51350203b8a833d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited.php","hash":"8df16121c99c98d47e6fb73be4a4e651"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryImport.php","hash":"5bd5f734b19494bb117387eae90d18c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryPrivatized.php","hash":"9f14b8b7a4a1617258f777ae0ad3821b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryPublicized.php","hash":"ed6cd7a24e6ecefb51bfbe9529162afe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed.php","hash":"cf5fa5ea5de92c76a988de439dde843c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred.php","hash":"0edda7fc089329884eecd146616f9644"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryUnarchived.php","hash":"e7142f242de259a4e8c9e2d5ab1c85f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertCreate.php","hash":"401af9bc52c3ee2f9f94a95b4f5d06f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertDismiss.php","hash":"574bbccea6a3adc1b9401d427b5d765a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertReopen.php","hash":"044a3e5125d86b0b4586368114ade05a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertResolve.php","hash":"3eb3e01a3280fe90cef90b533e781171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertCreated.php","hash":"8aed790ad09f3ffa70f839a95bc38f61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertLocationCreated.php","hash":"7cdf06583bbce76344f3ba01d5a9eb15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertLocationCreatedFormEncoded.php","hash":"a8fa3f65a7348616c0cc6aac02a41fa0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertReopened.php","hash":"acd6069e1c9deefa9d918778fba6857e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertResolved.php","hash":"9fa8efc7a6e1c5c490d0913cae534aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecretScanningAlertRevoked.php","hash":"d8752e72567066f1b082df5f7a33da21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished.php","hash":"68b3da3dc9ae360b5d99670ab4c21d73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated.php","hash":"84ea17f92c581f0a1269c6e72231b8aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn.php","hash":"95e588ee8cfc9ca66e5e896d7ebe8378"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAndAnalysis.php","hash":"af5415709c4c05c4c51c3da295eb1872"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled.php","hash":"ca58867fbe246fdfd440829856a3de28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated.php","hash":"3884c06c578673276869afcc086f078f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited.php","hash":"dc3eed9133fdbfba17fb445cffb3b32d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation.php","hash":"4baf9d936425d2f6a8e6ea37953a72b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange.php","hash":"2a6bb3b3708a89c12565e11d2c888fbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged.php","hash":"dae36a7e75e9a24a9d141f792b4d806a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStarCreated.php","hash":"73ed7892a15b153672c1d935064ed315"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStarDeleted.php","hash":"99c058633d1a589e007368f8c9de26a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus.php","hash":"37f0219ecbfb0fc9a357c625c4a5234f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAdd.php","hash":"d9e7c2979d657993c4cc22094735f0f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository.php","hash":"5c938e433da5ad037aecac098220ded0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated.php","hash":"d7fb6b4f52bd79220e8911a0f0062b3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted.php","hash":"72e70e9d6c03d87159052024755eed20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited.php","hash":"1e492d59975c25f15fc9d455e20634e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository.php","hash":"7e42a53b4d0223e4ab9aee09193d73cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWatchStarted.php","hash":"7370ddc2d097aa7b740cbf4f01446892"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowDispatch.php","hash":"097067ce7da09e334ac80c493f85affa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobCompleted.php","hash":"e387b138b9c803aef23f2b3e9be561ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobInProgress.php","hash":"f41cc0db5c2a861b0f5fac61ccde8663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobQueued.php","hash":"d07a26db8d52f52cbdc5fbd8189cae42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobWaiting.php","hash":"9715dc99f1c32651d86eeda28407c40a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted.php","hash":"22def21b2b75050f57cdab55fc8dcb82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress.php","hash":"d1c9ed5f4df0492e5b819ead323c81e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested.php","hash":"3f0f2b724c8fe44353d43dc25c846e79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Integration\/Permissions.php","hash":"e3a30cd5880b65c685ee8faaf288bd77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ValidationError\/Errors.php","hash":"ec6c48566fcf22bfe59706f65e5c3871"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Request.php","hash":"8c8cb85c4f26d5783cd46021d582f1af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Request\/Headers.php","hash":"3ce83a196febb6c039f0f2e5412ec7be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Request\/Payload.php","hash":"427476a2b9ea41ee45844f53acbe3aea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Response.php","hash":"ec92b01efe30b69cde7c10874c43dfeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/HookDelivery\/Response\/Headers.php","hash":"769fceaecc9aa3a67b210df368331f4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/Permissions.php","hash":"cfc7c890f48609c97e6942f1b1e2b740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/TemplateRepository.php","hash":"bfbfea9e28adc08b56a711ee5cd084ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/TemplateRepository\/Owner.php","hash":"c52bca1b6fdb70edcb3e5d17fe4a5d2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repository\/TemplateRepository\/Permissions.php","hash":"42e4b97f3af08b3eb45fe92acfad2c46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Authorization\/App.php","hash":"f08441aff7814367fe7cf2911c03dcae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GithubConnect.php","hash":"8b77d2ed50a94510b49b4db58f30d0ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats.php","hash":"e0a07afedf7d4ffe36f9be2f3cbf2746"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Comments.php","hash":"0671b8f4556d73007d939a4dfe952312"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Gists.php","hash":"b735a83f8c6bb768c8c58caf4bbd8ceb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Hooks.php","hash":"fc3eca73f70459bd30841f5ebec4910f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Issues.php","hash":"5aabdc3eb44b211e00b186cfafffc96f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Milestones.php","hash":"92324e5667f0fcae3e4282a2c608c1ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Orgs.php","hash":"0192fb8f58fb6877b24a1854c1257fa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Pages.php","hash":"90b50b42ce5f9b6a6a476ab2e8ca28ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Pulls.php","hash":"a11a1b07a8651c5b3da1672562e58764"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Repos.php","hash":"69669d938c9484882c961eb9ee2aa5bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/GheStats\/Users.php","hash":"239e760cce92c05047073eb5288a6df5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatistics\/DormantUsers.php","hash":"94799de0b32ae7eb44b76383df85d8a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuthenticationToken\/Permissions.php","hash":"7b109e7d0ab9f5faed96cccaf51a2a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/ActorLocation.php","hash":"7eaec8535a29468a5c34143cdb5af492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/Data.php","hash":"fad8f5875d941783e41f43b050768eb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/Config.php","hash":"4c50a5982300fd56b5435ef7768647eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertInstance\/Message.php","hash":"2cb848c190207596c0ae968b0525ce44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetConsumedLicenses\/Users.php","hash":"0b21e37a0d19e62fd3dc323556ffdfa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityVulnerability\/FirstPatchedVersion.php","hash":"3fa382d479c35785fdb617a823e99426"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/Cvss.php","hash":"0e049a36a6c933ba5ff439d08199906e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/Cwes.php","hash":"1567fb588ee1523d11aa56d3a850f12d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/Identifiers.php","hash":"414b01a3f22f15d8e76e082bb1432bb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertSecurityAdvisory\/References.php","hash":"c56cd600484a6e2b15ecdf5f480dff5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlertWithRepository\/Dependency.php","hash":"6e42c4cd20ed962122152c39ff8e5d45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetLicenseSyncStatus\/ServerInstances.php","hash":"68ebbc1e7f5fd99eae2ae69de38f74ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GetLicenseSyncStatus\/ServerInstances\/LastSync.php","hash":"1e59ea6779f8f2d330138d9fabef22eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsBillingUsage\/MinutesUsedBreakdown.php","hash":"d621d8034e945752998ada13030c625d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issue\/Labels\/One.php","hash":"e377daad9a1b2f76ecd77b7d4a261e8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issue\/PullRequest.php","hash":"209cd3df6a73efe9eb77bcd6f9d59ae7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event\/Repo.php","hash":"8d799f7cc26f1f16a18f0a3593ec9570"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event\/Payload.php","hash":"b815f319c9f52147cd697f6504298132"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Event\/Payload\/Pages.php","hash":"9fb5e87b3f01af4c560b6d5654ba249c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Feed\/Links.php","hash":"9128c04507f8cfd74e1d3cec1ea4114c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BaseGist\/Files.php","hash":"257572d93ff4f46b6d77a15f2d3e1a6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PublicUser\/Plan.php","hash":"9ca9c0a627242d87437c418ffb6e25b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistHistory\/ChangeStatus.php","hash":"088a45e5033d20a020641a202bf9c96e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/Forks.php","hash":"56dc55ad8a98924bb9e779338bc76e31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/ForkOf.php","hash":"9f7557af13613cd1a977d68d0127eaf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/Files.php","hash":"6d92f912af6da78c5bc8c447fce314e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplacePurchase\/MarketplacePendingChange.php","hash":"ced8fc9987cf561d6e1f44594ab9fc21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MarketplacePurchase\/MarketplacePurchase.php","hash":"585036c3d75295651504179bcdfde19d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ApiOverview\/SshKeyFingerprints.php","hash":"e217ca56497c58ff6f07251f2056b8db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/AdvancedSecurity.php","hash":"2b00b1fab12dd4fd6bbb9965c46bca3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MinimalRepository\/License.php","hash":"5b1a8941e428466f8a20b0082a53caa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Thread\/Subject.php","hash":"fff9a4b5afc99782b8ac85be0cf43309"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions.php","hash":"6dd3cd5756bc520a1cffc25b43409c08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions\/Organization.php","hash":"f5313405e35231e75fe4401fd3bcc33e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationFull\/Plan.php","hash":"1611cedcabc0c396aa03f087aaae4985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespace\/GitStatus.php","hash":"868da38dda8a653bead1f94c193b5a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespace\/RuntimeConstraints.php","hash":"8ab9b021236be3ff7f02687629279e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroup\/Teams.php","hash":"256dc361c1db9a5fa6dd705d0a13384b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroup\/Members.php","hash":"4c8302f14a9d9e0617bc5e0216c3d193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ExternalGroups\/Groups.php","hash":"976e57426b0f987eb60c3d0b5cf49c4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgHook\/Config.php","hash":"7fc51356fad5dfb48b9510b67ee6de9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Team\/Permissions.php","hash":"f40ae15e695c225b4d3449bfdc17f8a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrgMembership\/Permissions.php","hash":"aa82728f2968b1848583504961e7f4ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion\/Metadata.php","hash":"4f0071f51c5f57e45681eeaac13494c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion\/Metadata\/Container.php","hash":"deac84278a55f0f8093a29ed30292ef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PackageVersion\/Metadata\/Docker.php","hash":"e2f31f2a277be876f063f111e23764be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditions\/RefName.php","hash":"a23da018a18f4fc67e7e0587ea3f7fd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryNameTarget\/RepositoryName.php","hash":"4b64901fca968696f30b0493b0187d4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleUpdate\/Parameters.php","hash":"035d40711383d31cd5802447e44d10e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredDeployments\/Parameters.php","hash":"8bf862acc26f92c4a1ac68dd8851f818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulePullRequest\/Parameters.php","hash":"84a67525306169a41bab174ee8d59ec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRequiredStatusChecks\/Parameters.php","hash":"d08988d0ffed6076b4a057b340ab80f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitMessagePattern\/Parameters.php","hash":"36a1571fc7a7800d10138875783bc33d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset\/Links.php","hash":"09c4b98bf43aeba0382208d42092eae2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset\/Links\/Self_.php","hash":"b2b8c4e80453421fc0e89747f01c5ce0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GroupMapping\/Groups.php","hash":"34fdfa3eaff5f8cb8badb434ed286efb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamProject\/Permissions.php","hash":"19e7ddc72a6e0591840ed2f876934f65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RateLimitOverview\/Resources.php","hash":"b415f5c1cf11822b5424958f7a0aa90a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable.php","hash":"77ede4b3a23852fd439e148feca38343"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable\/Ubuntu.php","hash":"11b2262273e077d27293a3886611265c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FullRepository\/Permissions.php","hash":"0ad02e972efdf59dea3c41a08decfa81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Artifact\/WorkflowRun.php","hash":"862cb7bf7f4aa135ad0a8ce606cf2efc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ActionsCacheList\/ActionsCaches.php","hash":"e7add7f07a61843addc5288a68c1df49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Job\/Steps.php","hash":"a84cad22b015c7aa9cd4c7f8bcefc177"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Head.php","hash":"10bca266064fb0898239a8c73ed4765c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Head\/Repo.php","hash":"4e4023c7bbb801fe57133a1ff1d59b40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommit\/Author.php","hash":"6d11a117a6415a9371b819442dcf4d3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SimpleCommit\/Committer.php","hash":"26abd74bd7e89e814ea04700682fdc24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnvironmentApprovals\/Environments.php","hash":"98c68ec7ff9fc415b53e8cfc398ce993"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PendingDeployment\/Environment.php","hash":"a17414cd1205e0e6c25e4b96c7dff9c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PendingDeployment\/Reviewers.php","hash":"64e04c687936205b05510949207fae68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable.php","hash":"0f8f1ebc3e643888896f1e6d84a21cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Ubuntu.php","hash":"1579c1fc2adacebc1d34ad8c0ea479a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Ubuntu\/JobRuns.php","hash":"6effb2c1bea9956a7893a3507ee9e4d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchRequiredStatusCheck\/Checks.php","hash":"34f7e1ee375e4887e4d24784fb978d76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchPullRequestReview\/DismissalRestrictions.php","hash":"0fb5ed891a7a80ead881fbb24a13120a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranchPullRequestReview\/BypassPullRequestAllowances.php","hash":"55d8f34d3928d96a378c46a77ce55300"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Teams.php","hash":"fa7ada3b59ae77e8ccf7780f798500e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Apps.php","hash":"9baa0735b117018e2334629264cb8fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Apps\/Owner.php","hash":"cd947753d0acf7694e73d0e92ea0027e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Apps\/Permissions.php","hash":"23167067c30f4d5364cf4f49bee91c81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/RequiredLinearHistory.php","hash":"eb46232f67ebc45deca09e99de276bd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/RequiredSignatures.php","hash":"699857d08953c0117d316d77fee11929"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/LockBranch.php","hash":"bea70e0f1a6de27c03bdb7ed2b486890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/AllowForkSyncing.php","hash":"c8efe8de289ad6f40f9743d8a87ba546"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ShortBranch\/Commit.php","hash":"45c58c59eb5386b03074b002c189f4c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Commit.php","hash":"f33705672dcda1cfa6b42113c32fe69e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Commit\/Tree.php","hash":"c2245ecf1b0023e25410b9c619659d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Parents.php","hash":"daddd26683b002902a147e50d60e884e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Commit\/Stats.php","hash":"292ea4f7497c8cd6c0dfb2003e640dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchWithProtection\/Links.php","hash":"63575c65e50ada686cbd242f8f55cf67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/StatusCheckPolicy\/Checks.php","hash":"e53b858f2186b1ea3ee2fc13cbc4e433"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredPullRequestReviews.php","hash":"7be309e4e6ef0ad51403d0b80964d707"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredPullRequestReviews\/DismissalRestrictions.php","hash":"9c9e523849b16ec45b06b75b1c6fd139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredPullRequestReviews\/BypassPullRequestAllowances.php","hash":"5679449f7eb3e712de5fcc57d0014806"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/EnforceAdmins.php","hash":"07e44a16545e1b58259ab65c8ff2c720"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredLinearHistory.php","hash":"4933265d244d50b4161d6d6edcba012a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredConversationResolution.php","hash":"a0a7f4e0cbcc9bab0393ad8013a98043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/LockBranch.php","hash":"b7ceb23ec20e5c65a1fa7d6fa892c1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/AllowForkSyncing.php","hash":"e6678007e2da5219b231bc98b33e2920"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRun\/Output.php","hash":"817a06f8f7f39ea4e0bbca3c956fcca5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRun\/CheckSuite.php","hash":"0d6a7a8f7eaa42448d7a871e70291992"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuitePreference\/Preferences.php","hash":"f08bed542732bf5e09e09bc2c2b97885"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckSuitePreference\/Preferences\/AutoTriggerChecks.php","hash":"c32d798b1129f8066b33579ef68e1913"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeownersErrors\/Errors.php","hash":"60e3ea028bc5b28943ef225c43a88dc4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Collaborator\/Permissions.php","hash":"43287bfb340858636b46d90a667991fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchShort\/Commit.php","hash":"2cf8d96dadb89cadb6ddb53186f401a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Labels.php","hash":"f88e1e3cb5698d30c7a5e478fe9f85c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Head.php","hash":"0700718bf64a57c8667f36698d6ff7e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Links.php","hash":"68ed50ba221e0febd2b5436a5f24ff74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommunityProfile\/Files.php","hash":"91fdddc5ac7f9008c5feeeb8196d782c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree\/Entries.php","hash":"b3f2a486a8c2509cf2b28b69bcef5a62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree\/Entries\/Links.php","hash":"171cfef93c82f5fee09097f8865f1c2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Content.php","hash":"0f18a7acb396ab9ea5754936ee9bcd93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Content\/Links.php","hash":"06cede0674558637be71d080a0eedff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit.php","hash":"3f503d38172d8c9e6aaee8b8fe96760f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Author.php","hash":"da1b7dbed383ba6c60d2e0aedb5b90f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Tree.php","hash":"b8be0e4a3e5c22a744c315c37b14205f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Parents.php","hash":"250fd6174d167bfdc25865e488c25110"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Verification.php","hash":"1060576b73474ae32909f4d1c0219af9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphDiff\/Vulnerabilities.php","hash":"09d78be5ac5505c2d917f96e04a45953"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom.php","hash":"5a7d663ba770d1a7cd40d0427161a1ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom\/CreationInfo.php","hash":"c7bc9ff5de7bcd9ccc6299de17126355"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom\/Packages.php","hash":"8577062c85603111f583e11445cd71e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependencyGraphSpdxSbom\/Sbom\/Packages\/ExternalRefs.php","hash":"65679f19ce124d0f5a6e584a880476b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Manifest\/File.php","hash":"e1ac2685fcc358228a4f27aab7c53059"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Manifest\/Resolved.php","hash":"f716601a5bfa9fa26c32fab64bd0389f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot\/Job.php","hash":"821ab534db1c305746f5019bf818050e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot\/Detector.php","hash":"59ea6a018db85bb9a386366bca1b02d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Snapshot\/Manifests.php","hash":"157dd5a792c9cfbba481492860419dc0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/Zero.php","hash":"9d80642312171a0e57b1ad6ddaf09210"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/One.php","hash":"526450ea4c8cd00bf011aa8d1d255eb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/Two.php","hash":"3dcfeae1d95b359bfb8f59078bb3fc52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Author.php","hash":"28aebc7d133468791797f65561dc9453"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Tree.php","hash":"b7bd7cc361eba183500e3bfb8b1093c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Parents.php","hash":"4fc1ecbca142d9ad189c608e4c8492e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Verification.php","hash":"bcf054f0e1ac00eea2e6fbdc06d6b1e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitRef\/Object_.php","hash":"2d43e296ed18bf0bb2364096188b8b1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTag\/Tagger.php","hash":"bf587295a2a4f3965c6038f27eeb0748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTag\/Object_.php","hash":"c6f0b95c6d17d712798c76d88b791471"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitTree\/Tree.php","hash":"ec503c2c087d262281cdc1dedce3c45e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hook\/Config.php","hash":"a2a07aefdd29a8af6fc3e68d7d2c3f0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Import\/ProjectChoices.php","hash":"614141fefe1e859df248a9add4958d7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LabeledIssueEvent\/Label.php","hash":"3a47ab13800d209af34764b1fdebac4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MilestonedIssueEvent\/Milestone.php","hash":"0216a86fbbcecd50ddd79d70b2c1077e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RenamedIssueEvent\/Rename.php","hash":"c2a081dcaf87f846efad7aa3203f1804"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewDismissedIssueEvent\/DismissedReview.php","hash":"adc88b94080a9f803f6d63c7d70f9a53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AddedToProjectIssueEvent\/ProjectCard.php","hash":"f3c1bf388b623d978e775037b12763a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCrossReferencedEvent\/Source.php","hash":"c6e9586d0c8a13209a154ff71b3d3714"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent\/Links.php","hash":"eda6666309de332de51d6c60967cf86c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent\/Links\/Html.php","hash":"38d66dec66d91ae600e8329a8327d97c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links.php","hash":"787a84d1a02a1a32e0075537adb5916b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links\/Self_.php","hash":"e0efc0888aa031308e72de95f51c01dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links\/Html.php","hash":"c2a8882c802dbf25a3a30128c3bfc061"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReviewComment\/Links\/PullRequest.php","hash":"a3f987d3dfc34606aa7aa7e723889667"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PageBuild\/Error.php","hash":"1f3647916cc269b41af420ce6699cdc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHealthCheck\/Domain.php","hash":"4b8bf310ede811943c34e012d847e4bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PagesHealthCheck\/AltDomain.php","hash":"3cac48b7c146b292703d7502fe66ae8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Labels.php","hash":"259eb0fdec6393e7bcee5c88f56fadde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head.php","hash":"66be0226fd33feece42551683decdf89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo.php","hash":"34c9d23d9ac59facc16a60219a84e915"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo\/Owner.php","hash":"2e9f29dd462072b778a1a28c94ea06a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo\/License.php","hash":"6a202713ca44bf96f1863254ab8566f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base.php","hash":"d3ee498198e594269b539b68f0f9414f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/Repo.php","hash":"30187446e460b15d49a31d8f1fa947c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ReviewComment\/Links.php","hash":"a3b56607ebe55d5558ff4bc5673874b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryVulnerability\/Package.php","hash":"376f5365c8f9bad86dccbebb9dca3a2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Identifiers.php","hash":"54b171553aca382938615dd4a8d81f2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Submission.php","hash":"1fb3b7e2b14bde242ed73cd151fc1c1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Cvss.php","hash":"f754fb85516d45b3e55a7d512578b5d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Cwes.php","hash":"4e880fe6aeed6d1299fd90ef6f2cd48a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisory\/Credits.php","hash":"ad5a0e3fdd22c84cec5cb5bf40c8b36e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate\/Vulnerabilities.php","hash":"9d3fffe15914d29c319bc241d3c32da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate\/Vulnerabilities\/Package.php","hash":"ffd3ba52eeb174ffe8744a99c93c91a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryCreate\/Credits.php","hash":"947d32c5f5e1f1bfcce0de2787865ed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContributorActivity\/Weeks.php","hash":"1e1a4791b032d87465e72b6def2e8ca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Name.php","hash":"f41919e4d8372bd736321103bf758859"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Emails.php","hash":"b03882fc39997680c858a6156b0dae33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Meta.php","hash":"73d7f43d43bbff790545e78c740ab201"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Operations.php","hash":"18329e3e27fc1654afc7d3b7d18b2d5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Groups.php","hash":"0554db33b148e47b1c8b2d5dac8ea68d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Roles.php","hash":"edaf17038707ac7e191146f9dc28cef1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SearchResultTextMatches\/Matches.php","hash":"0eeec5601890c30c87a90238e9521f63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Commit.php","hash":"6e1aa74e1a0b4896ef057aad6aeb9c19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Commit\/Author.php","hash":"9930c2fe4a574a90b0ac4bf6fae724a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueSearchResultItem\/Labels.php","hash":"416e6e37ddf42d72614230b1bd462041"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Related.php","hash":"b8ee5ae66caf6a8c986f35d26553ea6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Related\/TopicRelation.php","hash":"cf892cd77c8b0cfca2de56d8aba03871"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey\/Emails.php","hash":"5552ef7f3e8ad6becdeafff79ca817a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey\/Subkeys.php","hash":"c17c89452b237a1717efa9423e291637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Hovercard\/Contexts.php","hash":"5e0b3944a6aa8c2aa28fb7224b51308f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckRunWithSimpleCheckSuite\/Output.php","hash":"9ab6c0d7ef3bbf53db6e341a318ba909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/AnswerChosenBy.php","hash":"d81b94ee7c5ca50f550f5a0b91af4ac6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/Category.php","hash":"a125ea3300b55848fef869f744f50389"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/Reactions.php","hash":"80257747015e4d58fdbf760352293fa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded.php","hash":"c737ab3b5113223686890b40767bfe73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded.php","hash":"e052e2bd59fca31bdb2fbea2c5d36a58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult.php","hash":"cb7addb1ccc6769718607951dacac7bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/Repositories.php","hash":"3324afb5b22d76e58752299d6cb35eff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleCreated\/Rule.php","hash":"72502779a8ad6841da1f9a5545395135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes.php","hash":"fd65487d56d7d909e3357a3f9d91eba7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AdminEnforced.php","hash":"95e20cd5d8c2c0889ebed2348fb8695b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AuthorizedActorNames.php","hash":"1954ab50cab7148442d713f2cca9ff2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/LinearHistoryRequirementEnforcementLevel.php","hash":"585bb3001bc9d76916611d51db9cfcc8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckRunRequestedAction\/RequestedAction.php","hash":"e0f6a69dde66bf9111f749ea71272a99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite.php","hash":"92554e16990953941a2de5cfe324cdc6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/App.php","hash":"f06a78cec0ca074cbddf23d1a2ac50c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/App\/Permissions.php","hash":"b07263fe83db6d5ff681868a1014b6c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/HeadCommit.php","hash":"cc5b71a8546a524d438425b1572f9306"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/HeadCommit\/Author.php","hash":"aae86d5b402fe9b080e1aeb10ddb3569"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests.php","hash":"08c41c0a299313da8c59da8112b180a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Base.php","hash":"f2a6f088c782c55017b2d0dc4202b97b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Base\/Repo.php","hash":"d2a490268d52761e11c5353ab805cd7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite.php","hash":"1ec0ec33896a69ccffae939ebc969135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/App.php","hash":"eaf859b88f1159715f2bf5f2312cfedd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite.php","hash":"095d9c7fe616fbf9c625922454f1e3ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/App.php","hash":"197a1171d8c6664d31595fc563db013c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert.php","hash":"904f724a21ca44f05be3c39f1724e066"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/MostRecentInstance.php","hash":"88b44cf248785bc3508c45fba2965929"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/MostRecentInstance\/Location.php","hash":"1dd6d0826cec1278ee124f5271686de7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/Rule.php","hash":"9bc3bed6912e608cafa1871813e58728"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/Tool.php","hash":"71ead8a0fd0001b67ad422f843f872e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert.php","hash":"95df2b1eba39112893aaa8d58e3a04d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/Rule.php","hash":"d6605104a3350cc3385cf9c68e9c3240"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/Tool.php","hash":"feeee7290c3261fa603e92464d6324de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert.php","hash":"f3dbb7ffe27cb8d82d3883e996d3f7f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/Tool.php","hash":"dd1aa7e51f1bca3e4c8172b197c7832f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert.php","hash":"fafd9a4cb54622a631ccae7f7432aba5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert.php","hash":"60df2771391ab29129f235edb70644c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert.php","hash":"07bdc5312ff5fac0d34b58c6611d759b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated\/Comment.php","hash":"70a96ddeae296074920c52970e27f3a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyCreated\/Key.php","hash":"baaf75e97862abf0a11e196572e735c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment.php","hash":"7847335cd6d41fddd9b7a4bc32b2ca9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/PerformedViaGithubApp.php","hash":"9c139573ec3d40700afd67f251a7fed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/PerformedViaGithubApp\/Permissions.php","hash":"e75c3df3952061d50fa1c9e25354ef88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Workflow.php","hash":"6948442ed8d576fc498dd815a6b86327"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun.php","hash":"d2e3ff5b7d1b2055e7ae7fcca4d45077"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/HeadRepository.php","hash":"9f6c1d2c7212b4296ef70f5f78515c38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/HeadRepository\/Owner.php","hash":"7bb3a4468b10cb3700a70360918d34ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/ReferencedWorkflows.php","hash":"fcd15d3d634e0205bf47be8c017664db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/CheckRun.php","hash":"b64460c51b2bdcb01e25e37ad61961c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment.php","hash":"de92cc196a1932c971e5daa26f116220"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/PerformedViaGithubApp.php","hash":"04e949f164a22efa4a2f93085d7d0c5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus.php","hash":"33830515929091ad7890125c7afc904b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/PerformedViaGithubApp.php","hash":"b4ebbafef9c5fe878ed2ca99c28a8c3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun.php","hash":"ab36b37257e1ae0e504742486e9f50e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered\/Answer.php","hash":"df8c281fa0f43312891c14025a57f4b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged\/Changes.php","hash":"2b00e5356c96312eb88d9391801bfbf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged\/Changes\/Category.php","hash":"a3c6d2fda86c8b65fac3d4395a575c3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated\/Comment.php","hash":"5da8dd7968dd3c9467361340b77d7ba7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Changes.php","hash":"00e138ace0f2d6f31d41a9a520a086bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Changes\/Body.php","hash":"e14d51a1e40a630fe74d9f3b62752bb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion.php","hash":"ee6549eeb4c571c79f1a3f3176a48c07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited\/Changes.php","hash":"e0f734cd7b46adb3f7231cf98f8c6b77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionLabeled\/Label.php","hash":"5ae0e86ef4923080dfcdc8d36aed9485"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionTransferred\/Changes.php","hash":"17eb159ea8ba993117f114ff49190225"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee.php","hash":"a9f5f2437526817d5f18e8de8d65e400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee\/License.php","hash":"9b8ffcdb2f7936f9abcf904b60baf72d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee\/Permissions.php","hash":"7398f237a77da3621f0ce38398f8e395"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookGollum\/Pages.php","hash":"7b650d0db13e342d8f3134b9622f6c59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded\/RepositoriesRemoved.php","hash":"0d96779e4aa5fd07f8ec3b332b34a2a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Account.php","hash":"a434da4c9952d8de3b43448e6d3badda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Changes.php","hash":"a9fb14acb106d3fbef0effef7c123397"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Comment.php","hash":"3e4723ec2e6a2375ac9699ab5d639f75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue.php","hash":"54be991dfa8ff9969f7731ece52daa38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Assignee.php","hash":"63865ac233eba9394acbf9da035251dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Milestone.php","hash":"ab9952556c60b076999af43a6458571f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PerformedViaGithubApp.php","hash":"c5946a27bf4af5d622ae51caff19aadb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PullRequest.php","hash":"ad0ad3afe3184e9cb4b17dec558237e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Comment.php","hash":"a4766ec1ac094d70f8d5856dd6a611de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue.php","hash":"22ec75f1b3f69491d3bf091e1143040d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PerformedViaGithubApp.php","hash":"90f2a8a1cc60cfc7cb6d3b130f153958"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Changes.php","hash":"d0fd5477033ef99a99ceff353813c4c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Changes\/Body.php","hash":"efcd40777dd5cb5d606e3a62559b7de8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue.php","hash":"e4e54fa0be002c2ff4b8ba255ddf3805"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PerformedViaGithubApp.php","hash":"090c7e3b785d409243a6ff4309d95a51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"adb71cbea0a63f9aae8f6a02699e05b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue.php","hash":"df3467d36e3f1dd2c4038e25b23cc957"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PerformedViaGithubApp.php","hash":"1d9cdd756f5a9faf6e1cddacdb9052c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue.php","hash":"bd53933afcde78d4995a255ad792cab2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Milestone.php","hash":"64f90a2ac8d383c2d0b95221a02d9091"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PerformedViaGithubApp.php","hash":"1db1054ee793435b8d3ea0478744de3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue.php","hash":"a5c2722736df1cec692e6ea3408e8638"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PerformedViaGithubApp.php","hash":"860f194f55eb4efdb73627216998f895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Milestone.php","hash":"6bdaeca0db33128f32171524acbbb1c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Changes.php","hash":"fe0c8f2255dbe27c765923971e3089d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Changes\/Title.php","hash":"cd25878f66eddbf57845b8eed3880798"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue.php","hash":"160462ff7ea833c182115860673a444c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PerformedViaGithubApp.php","hash":"30c9372e9a14f375a24707cda77e3d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue.php","hash":"e67b0be4c1894d514d5b3380615e600a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PerformedViaGithubApp.php","hash":"c0ede6f1497831d9a40f6ac6a829bbb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue.php","hash":"05fad06d1a257a37a4d038f20dafdaad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PerformedViaGithubApp.php","hash":"35e7cd3ddca849caebadfd6f5c14a624"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue.php","hash":"1a83b8e2b16e324794c5359922ecebe5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PerformedViaGithubApp.php","hash":"13f005b6ef490b0187318d56576eb778"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes.php","hash":"8c2487ae364bbd90ee024c6608b71bbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue.php","hash":"759a3359f2feddf65bb1010f591a7b06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository.php","hash":"957afd3a4437aaedc15386070a475e62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue.php","hash":"61003163b432855281348d2d60806f87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue.php","hash":"0f6b222c7f9442c50720624da21ba459"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue.php","hash":"567709901697327d85105d5fd50d637b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PerformedViaGithubApp.php","hash":"460834278dad1f7c273f584b5f212200"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes.php","hash":"8cbc64afc92d086464207cee5d5b8ee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository.php","hash":"6f2077f6d041bd49c77b616385cb6287"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes.php","hash":"916a0851328998c48300fbbe9258fe98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes\/Color.php","hash":"b19bc3c212a6bc2b329b882de705886d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes\/Description.php","hash":"cb74ba7a9f28f4960784d9e048601d39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Changes\/Name.php","hash":"fa9d502189f1abcecd48ef1c559bd9ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/MarketplacePurchase.php","hash":"a4273dda4407e29311f5c0387684d262"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/MarketplacePurchase\/Account.php","hash":"c8e8648131166f6b5c33ae74b8d73bf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/MarketplacePurchase\/Plan.php","hash":"dba2f55bc559b9c4eb2c1b1ad2a553d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/PreviousMarketplacePurchase.php","hash":"cf7772d4b5ffab9e2bafd508c2a8ee86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/PreviousMarketplacePurchase.php","hash":"47bc4a02df5b4e38de8f81cbc24072be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded\/Changes.php","hash":"0d436883ba4b2806203edff4dae6c526"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded\/Changes\/Permission.php","hash":"88f43d1b87007e9be5f0512307e391d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Changes.php","hash":"6d85a7c06833464e112d3ff5d68d3eff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Changes\/OldPermission.php","hash":"cc86ba613c833d065d00bde940c2e10b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Changes\/Permission.php","hash":"b8232278abbe502e0cc7facbc813a2c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Team.php","hash":"a1e90c94db1354de74da000a1f949326"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Team\/Parent_.php","hash":"0b369b7a5352fdd7e14ed3d93991b938"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMetaDeleted\/Hook.php","hash":"c95cbf8268d432ef397d412590ca0520"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMetaDeleted\/Hook\/Config.php","hash":"482018b2226f8191583e9b2baa846426"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneCreated\/Milestone.php","hash":"0214f2b11541aff441e7edb9f6afd0b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes.php","hash":"20c8a0eae761cbbda60aa1c5d64e7eba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes\/DueOn.php","hash":"3886441e5e429a47971a74a39010b7d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes\/Title.php","hash":"d9525a9b507f0e8a0428ef44cfe59f18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationDeleted\/Membership.php","hash":"35f453f5091a8f03dfbd8d501699e3df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited\/Invitation.php","hash":"7431b2d828ca712d705e3d0f048e1357"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Changes.php","hash":"f0f13ef27db793be030e3a6561cf2990"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Changes\/Login.php","hash":"ea6163187d786edb4434004f645a54bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata\/VersionInfo.php","hash":"826a2d3c95ed8f007ed6020392e21360"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package.php","hash":"8e8c79777a4cd430d0f4922f25990947"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion.php","hash":"96382430726e63581127f14b6f346e1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata.php","hash":"aa5556e39d943f8c7fcc9c164a25a11b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata\/Tag.php","hash":"0ad0ff40d1d7a6c57a1d772bc91bb1d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/DockerMetadata.php","hash":"543471471739e8a4dd35c8aabb64ffef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata.php","hash":"5c01b2f211d2f9dbabdb5223f44a7f2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NugetMetadata.php","hash":"31deefa671a0fa15df378dd4894c76a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NugetMetadata\/Value\/Three.php","hash":"51101d206578bf5cd7745ddabe1286f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/PackageFiles.php","hash":"0943319f7836e5e5aaae87747e48bc0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Release.php","hash":"a812d7471b17908071b2fb64f48ec08c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/Registry.php","hash":"d2280ab7c1ee3a73fb397f83002b3cde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package.php","hash":"8d75c04e66d01627d1b49efbd3b59123"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion.php","hash":"0bb13ede1a303f7b5823369ed73f486e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/PackageFiles.php","hash":"614a99f8743d55293c4036220cb15b94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Release.php","hash":"c2e955f5028e34790cc6e450d40dbbe7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild\/Build.php","hash":"9a8f1376a0f45bf53224facf2c6426ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPing\/Hook.php","hash":"9791d1d137a070ce8e1b09d0af60ed7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPing\/Hook\/Config.php","hash":"ba1f1821761a47715c399d7d32cb27e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/Changes.php","hash":"6ca2d7edcba908ae3e30ba7755a86aba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/ProjectCard.php","hash":"530236d1a3532439b1dd4dbb584f7448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardDeleted\/ProjectCard.php","hash":"8889bf1f8d540036b0542bf05c5956f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/Changes.php","hash":"2fc571960397f8c351ceae929caf5b9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/Changes\/Note.php","hash":"330bd0b0e133f5bfb6944ba3e95b3969"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/Changes.php","hash":"7166467abd576a4be7d231aa74d98245"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/Changes\/ColumnId.php","hash":"f55bb548632b30ae742f475a0d3cd55e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/ProjectCard.php","hash":"e60e2ec30dec6ff2e3990c10f4e285c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectClosed\/Project.php","hash":"3839c8556bafa610308bf3fb28361175"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnCreated\/ProjectColumn.php","hash":"11fb53eb9165de4d1d068e996d1cd92b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited\/Changes.php","hash":"d790ede5354a7109cce62f06bdb9d70e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Changes.php","hash":"4607f7b0cad224cfad1673537e68d8a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Changes\/Body.php","hash":"77e538fa7a292de8169f7439d3dd6761"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Changes\/Name.php","hash":"36e2235804e88a6f9141a4438bcc066f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes.php","hash":"d7bfca3da1576eb3326fce4fe4949a34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/Public_.php","hash":"db79fb2633eb25f92ca297975e25ec4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/Title.php","hash":"a6a662b31295296d081ae1d0c49c94ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemArchived\/Changes.php","hash":"75f5fbd0e29f0b6a2ff6abd809d37346"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemArchived\/Changes\/ArchivedAt.php","hash":"123cf1c7d6a39953f6e8897e515d0e80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemConverted\/Changes.php","hash":"a84b78d0b30d0a8fa84de5bedfd5380c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemConverted\/Changes\/ContentType.php","hash":"73913717d1ac0cf38460cfab0fdac979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/Zero.php","hash":"67ba430d7de85603be659a2c2b932c6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/Zero\/FieldValue.php","hash":"cfaa2bf2e8c22079b0ff4b798e0f163b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/One.php","hash":"f79e8f88e2039f717e735b982d7662a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemReordered\/Changes.php","hash":"baa8243cf82581ae0650f85d36770cf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest.php","hash":"ac5221be21240016d6cc7612c4b9c492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links.php","hash":"e637bb443d95f241b6ff15dbaa088681"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Comments.php","hash":"5c2d7e014b71835c50cea5295219bda4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/AutoMerge.php","hash":"811cc9f6869aaaf5c6182cb9e08fc6a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base.php","hash":"5d1f4a30250670f34bdccacd341b4325"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo.php","hash":"f7b91965e5212470574524ef04c6f6b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head.php","hash":"cb2679bd9e55c6a1b22e6594431d4870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo.php","hash":"da3b33204cedfc0bb2c96bf8bb2b4d69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedReviewers\/One.php","hash":"681529c825634d5bfcd78bb37b370a2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"4d954f4fce631748f06327675e46d70d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedTeams.php","hash":"9fbcd8e329ee2a7fbd957abe43731288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest.php","hash":"6ef10b92c3b24e3b1a883f9aa242f0bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base.php","hash":"3a58f84a5a0a31deb2bae73ac607a1e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo.php","hash":"ac07f9d547513b7313c26a7f008399e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest.php","hash":"89841fbfdbaceba9d2fcca1426acad12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest.php","hash":"d493a6b3849d9adca79847afaa8f30a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base.php","hash":"6ad0ea1f2371262fb8d7a5398add00db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo.php","hash":"82b9273f442714627158382795dd1924"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest.php","hash":"1cd72df325fa5288ce48a31702336a57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes.php","hash":"dfcead01d1cf7f2ada087483ec72df84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Base.php","hash":"48b65ca295445afe0ada523e6397191d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest.php","hash":"97c546a8dcd81628194444e853e15efe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base.php","hash":"c572ba0541ab50b1d46307c793302204"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo.php","hash":"435bbfb40a3c2a4a88311036c6532414"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest.php","hash":"4d9e0c8a5aed7eca31a24bf440b2c8d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest.php","hash":"f9fa618f8f0d0c5e135128bf4ad3fc06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment.php","hash":"7ed51bbbd98588301949acea4b39e564"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links.php","hash":"6843fef7277710685337625c2cd304f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest.php","hash":"00c3bbe680d3b5c21bef1ac86183c834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head.php","hash":"dec5e4f6a087699579506a40ca4a580a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo.php","hash":"daebf3df2ffde9f439fe9e801b6d8cf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment.php","hash":"18e5624ff0b1a5df9cdf011b5df602e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest.php","hash":"c97ea1800ac8f37dec3bc9a6871993cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head.php","hash":"eaf122878a3bd395fde8cfa6e89703c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest.php","hash":"0d41fb12393f8859707421d057172239"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest.php","hash":"a85ce30e86137f5b9c11df9889947174"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review.php","hash":"f720787199ee616932e5ab3c747346db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/Links.php","hash":"5497d76073ba084da6b65d60d2c8ac40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Changes.php","hash":"d6b168942d955b7c90966fb63653ce0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest.php","hash":"ae7e30df69c655f0801a7f11784ffa3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base.php","hash":"d2aa7859adb1c094be111f60590d6d34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head.php","hash":"3bb2bd18b76153ddfb114e6dbe8991a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo.php","hash":"89bcdd5b00083b1aee5d7738df5ce4bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review.php","hash":"a5cd9b2a8f370f93396ccbeef73cf708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest.php","hash":"85dc5e9353a6bf6f05a06ce8218be503"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest.php","hash":"03720817b2de6fd353922c6e2e59e5b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base.php","hash":"2c5d168a394580d873334db02d0706ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head.php","hash":"4b6a79c14b9ddac28e69c034b093cfa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo.php","hash":"8218b32567b90259db523c9f625660a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread.php","hash":"d362fcaf7195b7235f32170e35be44bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments.php","hash":"7c08427ff18233e6f4710f9edca05035"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest.php","hash":"9bbac7d6f116f5d6610cda457ab2ed62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/AutoMerge.php","hash":"84faf277862d7ae9366697c84e534368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread.php","hash":"414abe50db73bb82085f46f998d15e21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest.php","hash":"7ac4d9b9d5261b4c0561c2a3d6f8f866"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head.php","hash":"739f74b394c04111f23201bce25c8102"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo.php","hash":"5bd4d38bae9c1d773d68f2cebacc9c85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest.php","hash":"a907934b21f144f8dd888316cb37038d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base.php","hash":"4c03082b59944b2383cc443011a8befe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest.php","hash":"0b60c5d25136637810a46511a9f3f97a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head.php","hash":"050b5ca7b4d08a5d5a6f2b42dfbe4936"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo.php","hash":"93babe9a06d27bb97cdc185ec375fcd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest.php","hash":"03926d5e0cb0d5aea7e5375b6936fe01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Commits.php","hash":"a0811ed9cfe61aa6efb4b27f44a08ff2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/HeadCommit.php","hash":"8727e6f3d5053a7b108731cbcf2792d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Pusher.php","hash":"b2908c88cbfde0a7eab8b557b62446b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage.php","hash":"64a13d35f60cb0d501eb0450a554138c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/Owner.php","hash":"ef595d3e6de737ce48ce528e36d144f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion.php","hash":"9a240171664b807dcab49865e0a56e86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata.php","hash":"3205190f7b12d44f8de780d435e9ed66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata.php","hash":"488247597b92b465187e01ccf7101de3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata.php","hash":"f8834ee0edeec0c45ced523a88a1e450"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/PackageFiles.php","hash":"3ac5f82aaa59020ae44b02ef5e320a29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Release.php","hash":"153ed93032981623ccf432a0c78cfa8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/Registry.php","hash":"c29c9fbc9b1b0e6c6583bd0a20f5c754"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage.php","hash":"23b26da7187c9a1cb9545c6101991581"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion.php","hash":"750b774777a37c0a115f0ceb4cd07c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/DockerMetadata.php","hash":"87157dbe4bafe487743b42a5202bb563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/PackageFiles.php","hash":"594e666d55b11cb35e384674fa176f40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Release.php","hash":"3ace45d4518e9b4a59a0800543b2bb5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release.php","hash":"3b917e57d319306ed7fb325c1d6fa657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Assets.php","hash":"b27531f2da4b9f97da336357d04cf52d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes.php","hash":"d64f6dac044a84c7a922ed7d1ebaf436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes\/MakeLatest.php","hash":"6b0a21eb42ff13867de1a0145a049545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryDispatchSample\/ClientPayload.php","hash":"446efaf3417d9b495ff261b8cf622919"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes.php","hash":"4dfb156820ac43c4999d9e3ed96a4b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/Topics.php","hash":"c3f6ce9e3ede49c68698669149141c34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed\/Changes.php","hash":"bf006ee2276a29ff79b152f2468eaee9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed\/Changes\/Repository.php","hash":"56a59c512cdf670f76e9b244a7ecb8ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes.php","hash":"ce06a0d336a934b8cb8d5165b1101299"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner.php","hash":"35019c039e10877d511bede102d27d8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner\/From.php","hash":"cc5e1cb18681fe56fe1f89cc38d3105d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner\/From\/Organization.php","hash":"e08c32461feef6ec9b45b9da81be83db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertCreate\/Alert.php","hash":"6e4a662bed4f2d8c3f354a3b7bf41d5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertDismiss\/Alert.php","hash":"756c81df5055fe0eda281260c5ed283c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory.php","hash":"61b6466670d5973132bbd2176faa23a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Cvss.php","hash":"a32386a0e02ea070f152c167f4d8a4da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Cwes.php","hash":"1d82c17f3ed6e30e87e1af71dfdbcc6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Identifiers.php","hash":"c893cde55551a59e172106206cb0a3ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/References.php","hash":"a3b6d15dc6b25f568f77c4eb48c76adc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Vulnerabilities.php","hash":"e351c7ef5009fe1d5afdd7a8924bc33c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Vulnerabilities\/FirstPatchedVersion.php","hash":"3229d0c9b446e80b34d25eeeb7a7283a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryPublished\/SecurityAdvisory\/Vulnerabilities\/Package.php","hash":"ea4eb88d3654665fd43915df83d5929b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory.php","hash":"33e19e710411df37f7c34a8fe20a8613"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAndAnalysis\/Changes.php","hash":"30eb13520ff8bebee152bb28053281a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAndAnalysis\/Changes\/From.php","hash":"a174d393d09550df033e93a01cbd8fc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship.php","hash":"0a4e02fb23977551b32e3079aa6ea2cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Tier.php","hash":"9aa29509d5c16eca32575cb332f56bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Changes.php","hash":"5b50632221331de719dbd62b5c750d24"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Changes\/PrivacyLevel.php","hash":"877cf6e5fc102913ea3d3714b37dfce3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Changes.php","hash":"fb88680aa10b3808c2ef0c8c8d32733c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Changes\/Tier.php","hash":"43d26855fdcb70ed8c92eefa960e22c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Branches.php","hash":"59c3b20087b3550cb5ad77d953800890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Branches\/Commit.php","hash":"1591b1b7315b47b0c80b2f73765b5130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit.php","hash":"fd978ac5effec9bc7235eee4ddb4105f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Author.php","hash":"bfeb040b11b94e012a7cbfd9a7715367"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit.php","hash":"ec60d6fbd86b66d0d77da2113a134ab2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Verification.php","hash":"afcf2c1117238e01c050b7628e65394d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Parents.php","hash":"55ba02659ce89502529661a4105b1eb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAdd\/Team.php","hash":"67203eb0ff81174e5871cc940ed12a0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes.php","hash":"b3371ac625979dc53a8fbd949dd42e0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Privacy.php","hash":"4bef3a9eea8c0c7c3826449dd0d7f43d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/NotificationSetting.php","hash":"dcd0129f6501c5bc9b1bfd79a1aa8a2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Repository.php","hash":"3f3c3656aaea6e279698ba463f47b27f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Repository\/Permissions.php","hash":"eaec7bd612916e3e3c4094b444c1308e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Repository\/Permissions\/From.php","hash":"60602877622f1cef946d586814e31f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobCompleted\/WorkflowJob.php","hash":"86987f864ea3287529057105eacc4565"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobCompleted\/WorkflowJob\/Steps.php","hash":"921eaf877f03c9403d62433e25ef3e1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobInProgress\/WorkflowJob.php","hash":"a472e473e5979c4b2d53df73b58d2140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobInProgress\/WorkflowJob\/Steps.php","hash":"96ab460fe6706625df78c3bd9d1176a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobQueued\/WorkflowJob.php","hash":"632284e377a068314e88232aaf58f02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobQueued\/WorkflowJob\/Steps.php","hash":"6583345a5065355c898e8e8d293d0f96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobWaiting\/WorkflowJob.php","hash":"d71e5649e01caca2d08b2c88d2ae52b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowJobWaiting\/WorkflowJob\/Steps.php","hash":"1fbe57df7793225f97b8b3c54dec86c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun.php","hash":"c56691e4a23e2b4f82085c56bba03b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadRepository.php","hash":"6e076fd1a5fee3f493490f5183492454"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests.php","hash":"0aaf70c1a0616ae5c9c9d00276bc32d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun.php","hash":"4e987f0cd743e1e474d3c54e790fffb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun.php","hash":"e701eb4d468fa3d660fdc0e0fd220dad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/CreateFromManifest\/Response\/ApplicationJson\/Created.php","hash":"453c36086acacbbbfbe0e164047627ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/UpdateWebhookConfigForApp\/Request\/ApplicationJson.php","hash":"d76149faae1cc9bb930e8cb6cda7d35c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/CreateInstallationAccessToken\/Request\/ApplicationJson.php","hash":"9df19e2ee89b43fbbf5cba44b70ad3e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/DeleteAuthorization\/Request\/ApplicationJson.php","hash":"0539c797fd71896b782aae36bbe1af58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/CheckToken\/Request\/ApplicationJson.php","hash":"2285bca9019bc6e89a1aecbb5a77cb08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/ScopeToken\/Request\/ApplicationJson.php","hash":"a0d219eea3064858598df2529d7f6ef7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetGithubActionsPermissionsEnterprise\/Request\/ApplicationJson.php","hash":"795733ac214e3e7a30963cb36d29d16a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelectedOrganizationsEnabledGithubActionsEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"ad6c97e44562f3054fe4ffd72753f140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetSelectedOrganizationsEnabledGithubActionsEnterprise\/Request\/ApplicationJson.php","hash":"080b2b042f38d1cdde1ee925959e24c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelfHostedRunnerGroupsForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"c0c9c8ddc6a5264813f062112c1bae46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/CreateSelfHostedRunnerGroupForEnterprise\/Request\/ApplicationJson.php","hash":"83b604ebc4d320c3a77b22af1d322bdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/UpdateSelfHostedRunnerGroupForEnterprise\/Request\/ApplicationJson.php","hash":"2355ba857e35e2e3b450af23e025cb9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetOrgAccessToSelfHostedRunnerGroupInEnterprise\/Request\/ApplicationJson.php","hash":"b5e2fa2c8df626513e87eeb76982c4ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelfHostedRunnersInGroupForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"0bb20732f804ee9fbf810b867375204e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetSelfHostedRunnersInGroupForEnterprise\/Request\/ApplicationJson.php","hash":"d66ba0f6754fe3c4085bfd53fc8ddd1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListSelfHostedRunnersForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"aa50f47723b8d17c1cce9ca9d5ca3821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListLabelsForSelfHostedRunnerForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"59c49921cf234df6af4216c60ebe893e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/SetCustomLabelsForSelfHostedRunnerForEnterprise\/Request\/ApplicationJson.php","hash":"6eaf45fe1cfae126c1d1916722be67a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/EnterpriseAdmin\/AddCustomLabelsToSelfHostedRunnerForEnterprise\/Request\/ApplicationJson.php","hash":"80764e79e0e407d211afce1671c16659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/CodeScanning\/ListAlertsForEnterprise\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"1fe50f1a0780d8c7f378c8ba40fba1d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/CodeScanning\/ListAlertsForEnterprise\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"55f2224b949c9c83152b215ad02a5fdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanning\/PatchSecurityAnalysisSettingsForEnterprise\/Request\/ApplicationJson.php","hash":"c7872c4c1c2a89937fce70a7c95f9c11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Create\/Request\/ApplicationJson.php","hash":"559c2a2e48d696d3b9464215ced24f04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Create\/Request\/ApplicationJson\/Files.php","hash":"167188f1e934e404f72529e04b3d4393"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gists\/Get\/Response\/ApplicationJson\/Forbidden.php","hash":"df8b3296f53e8e5b580ee0038cc91945"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Gists\/Get\/Response\/ApplicationJson\/Forbidden.php","hash":"517f7ca0a8ce7f9f7874f6e8db84074f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gists\/Get\/Response\/ApplicationJson\/Forbidden\/Block.php","hash":"7c7f4cfce4c859417e56de4bd28ae81e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Update\/Request\/ApplicationJson.php","hash":"318794c3e8105ba4e2bf6822e5a897df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/Update\/Request\/ApplicationJson\/Files.php","hash":"f7f327dad77d99e27f56bc1849abdd62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/CreateComment\/Request\/ApplicationJson.php","hash":"e4ed327ff3786bbf25412c04dafd0112"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gists\/CheckIsStarred\/Response\/ApplicationJson\/NotFound.php","hash":"3a2aedac0405f45e44478085e12cb4fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Gists\/CheckIsStarred\/Response\/ApplicationJson\/NotFound.php","hash":"7188e48b2e898fbdfcc51a0a3b9ac3bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Gitignore\/GetAllTemplates\/Response\/ApplicationJson\/Ok.php","hash":"772902bc2e8bd51d9ceb9699d4452c89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListReposAccessibleToInstallation\/Response\/ApplicationJson\/Ok.php","hash":"32143a874791c0160b413dc3266b533e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Markdown\/Render\/Request\/ApplicationJson.php","hash":"1b63a3b1ee21e4a6910916d290a240d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/MarkNotificationsAsRead\/Request\/ApplicationJson.php","hash":"fd917eb9a9c9913ee30a4f39b5a19457"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/MarkNotificationsAsRead\/Response\/ApplicationJson\/Accepted.php","hash":"47d2f422078f1179c01893989b456742"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/SetThreadSubscription\/Request\/ApplicationJson.php","hash":"b4ed587c06526bb7f8820fc0e04b2723"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListCustomRoles\/Response\/ApplicationJson\/Ok.php","hash":"c92efadb4d1993a916edd923ce002b50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/ReviewPatGrantRequestsInBulk\/Request\/ApplicationJson.php","hash":"4bda911a963b2f609870032f15b60266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/ReviewPatGrantRequest\/Request\/ApplicationJson.php","hash":"fb8e4a95b986b574a4e529a1db755584"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdatePatAccesses\/Request\/ApplicationJson.php","hash":"5dfd9e6610b54a5c2e9f75a08d385fab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdatePatAccess\/Request\/ApplicationJson.php","hash":"399dc5eb45e04b4163a87cfaa6871ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/Update\/Request\/ApplicationJson.php","hash":"d2a02e488128bd72764ff5779e308d60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/Update\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"3aa68932b9bc40560fe8c2caa536562e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Orgs\/Update\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"3c8b4cc9fcb43891a9ec55132ceb950f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/GetActionsCacheUsageByRepoForOrg\/Response\/ApplicationJson\/Ok.php","hash":"a1f18ff1ba338c08ba0e712387484a30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetGithubActionsPermissionsOrganization\/Request\/ApplicationJson.php","hash":"24383d7976bd278b51a37080cdcb7d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedRepositoriesEnabledGithubActionsOrganization\/Response\/ApplicationJson\/Ok.php","hash":"c1b6cad7c62d62de2671966d869e8f53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelectedRepositoriesEnabledGithubActionsOrganization\/Request\/ApplicationJson.php","hash":"68f2f9d2a0f8493da9242e394e3228a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnerGroupsForOrg\/Response\/ApplicationJson\/Ok.php","hash":"662992be2c2af08c6618276be7013592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateSelfHostedRunnerGroupForOrg\/Request\/ApplicationJson.php","hash":"db44bf10c0d590c36428bfdba82bcaf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateSelfHostedRunnerGroupForOrg\/Request\/ApplicationJson.php","hash":"bf8753c4c692901da120aa2559d9b459"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoAccessToSelfHostedRunnerGroupInOrg\/Response\/ApplicationJson\/Ok.php","hash":"813fa7744895746f0e7f293a1f5dbf25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetRepoAccessToSelfHostedRunnerGroupInOrg\/Request\/ApplicationJson.php","hash":"747c7180f4b80385d3c276c985d60c39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersForOrg\/Response\/ApplicationJson\/Ok.php","hash":"55befd3be39dda06a709312373fc0be6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListOrgSecrets\/Response\/ApplicationJson\/Ok.php","hash":"0fbb3ff5b3344d35efba3d86cf34c2a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php","hash":"653d9d2722ccdf737687ad8cfdd0c7b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok.php","hash":"0e99cda4ff9a7d981a9cd3ef77b8a3a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelectedReposForOrgSecret\/Request\/ApplicationJson.php","hash":"d2d438e4ebc7016a55eba543f5df8701"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListOrgVariables\/Response\/ApplicationJson\/Ok.php","hash":"d0628fa3fa12c688194736c267410fd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrgVariable\/Request\/ApplicationJson.php","hash":"b7042d62b2faa4c3ff8e7574e8fb92b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateOrgVariable\/Request\/ApplicationJson.php","hash":"a3b24b570b83c9c90234ac52d2fc4895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelectedReposForOrgVariable\/Request\/ApplicationJson.php","hash":"8f66c3776978bebbc74ad382a70f12fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListInOrganization\/Response\/ApplicationJson\/Ok.php","hash":"7688183a354135e8e1608bb7944869e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListOrgSecrets\/Response\/ApplicationJson\/Ok.php","hash":"a0d2e20e64fa7e64118fa3e35572087a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php","hash":"53017521803e4a40bab7c1c4b7261731"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetSelectedReposForOrgSecret\/Request\/ApplicationJson.php","hash":"0f2e9a7c1638341ad2d699b94e071b1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListOrgSecrets\/Response\/ApplicationJson\/Ok.php","hash":"f2a4487d7aaa6bbfab08a37ce24890ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php","hash":"acec4c228d01cbbd73baec10e36bd294"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/SetSelectedReposForOrgSecret\/Request\/ApplicationJson.php","hash":"11b5755a09be07dffe1756433830ef0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/CreateWebhook\/Request\/ApplicationJson.php","hash":"1712a4e2b0ccf8371eced0d5e99b3c6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/CreateWebhook\/Request\/ApplicationJson\/Config.php","hash":"c342cac5ebc4bb0365ad7311c366041c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateWebhook\/Request\/ApplicationJson.php","hash":"05748a857fe1eca4223f379202abce7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateWebhook\/Request\/ApplicationJson\/Config.php","hash":"534991dd129e79249d95714538503ab4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListAppInstallations\/Response\/ApplicationJson\/Ok.php","hash":"e7a4b6248a3fe879ae97f28e9efc37b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForOrg\/Response\/ApplicationJson\/Ok.php","hash":"1370cdcae80af2e7c09561decef6330b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/CreateInvitation\/Request\/ApplicationJson.php","hash":"f131d3120e8814c7045a9c3519319c97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/SetMembershipForUser\/Request\/ApplicationJson.php","hash":"e7ea37045d940c30195d0dcc517ebe27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/StartForOrg\/Request\/ApplicationJson.php","hash":"289ef5b09488a29ca7761ce83ec762c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/ConvertMemberToOutsideCollaborator\/Request\/ApplicationJson.php","hash":"5addfe71ea6c8d8aa9b4a6a99d1fd4f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/RemoveOutsideCollaborator\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"73b639ec7a3869d06cd0772912ad72de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Orgs\/RemoveOutsideCollaborator\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"a304e204f9086556accc0bf60d94ea8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateForOrg\/Request\/ApplicationJson.php","hash":"537b1a2b7d78fc0fc74fc5de46680a58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateInOrg\/Request\/ApplicationJson.php","hash":"0079170a731e7b76b96064e957989745"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrgRuleset\/Request\/ApplicationJson.php","hash":"18ac018c96045c0729500e27d111771b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateOrgRuleset\/Request\/ApplicationJson.php","hash":"3b6b8288bff9ac6ff46ba7a030a6bb93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/Create\/Request\/ApplicationJson.php","hash":"b90fe70b126bd6cdef909fd271498cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateInOrg\/Request\/ApplicationJson.php","hash":"f92b5b83e091a503e5adeb722cd0342f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionInOrg\/Request\/ApplicationJson.php","hash":"ef0f54ba366590e58cb3216fa4faf8aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionInOrg\/Request\/ApplicationJson.php","hash":"834110e9f95d5527f232ae3b5f2363db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionCommentInOrg\/Request\/ApplicationJson.php","hash":"2472e3c609c9d96b095965d87e2b1c23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionCommentInOrg\/Request\/ApplicationJson.php","hash":"3d8cdf67506eb351c9bbe13aa5c7e7de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionInOrg\/Request\/ApplicationJson.php","hash":"51699ed62282e53623b77fb3f697750f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/LinkExternalIdpGroupToTeamForOrg\/Request\/ApplicationJson.php","hash":"e1c4e7b3b0d250c1f104715ae11cbee5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateMembershipForUserInOrg\/Request\/ApplicationJson.php","hash":"10dbf3f4e947e90118117730cdabf6c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateProjectPermissionsInOrg\/Request\/ApplicationJson.php","hash":"351da7f0da496a2a253c9419e5baedeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateRepoPermissionsInOrg\/Request\/ApplicationJson.php","hash":"cc4d457c1819abd05e9f9bbc3430a1ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg\/Request\/ApplicationJson.php","hash":"648679de4976d1bd0e42088392dd7de9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsInOrg\/Request\/ApplicationJson\/Groups.php","hash":"8e706ffb7cdaccdc84a189811ad26904"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/DeleteCard\/Response\/ApplicationJson\/Forbidden.php","hash":"0f20248b6fb3d2167948444ec543a062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Projects\/DeleteCard\/Response\/ApplicationJson\/Forbidden.php","hash":"4f05e2dfbcb8a9ede63ca819b83a7d64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/UpdateCard\/Request\/ApplicationJson.php","hash":"b11b7605cfa2be7f23903f7dbecb90fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/MoveCard\/Request\/ApplicationJson.php","hash":"fc53db5e2535339fe837d12f0ef856c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Forbidden.php","hash":"a7b4cb387fbe60bd33bb319908dff93c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Forbidden.php","hash":"c7ef6222138be4210ec459bae7c78d1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Forbidden\/Errors.php","hash":"c978edfc9046c0cd514d7b5b262e5832"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"37b1dbcac499d1050121f9dd07497dd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Error\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"937607c34f865c604c5619c7d22e6321"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/ServiceUnavailable\/Errors.php","hash":"793739afcfa4b42b59366209bb2acbbb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/UpdateColumn\/Request\/ApplicationJson.php","hash":"47428854f53377f67e668bb668b768e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateCard\/Request\/ApplicationJson.php","hash":"52b83d1eb037e2a38731942e1ff87ef5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/MoveColumn\/Request\/ApplicationJson.php","hash":"d577821f1c07ff34bdbd9de3db6af1cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/Update\/Request\/ApplicationJson.php","hash":"c844c92b56be079fad5d03211e0d007d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/AddCollaborator\/Request\/ApplicationJson.php","hash":"aaeb019022e328965acbf6c7898d3a70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson.php","hash":"6f445c6b6c70d74ad21bcf36d88692f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis.php","hash":"bafd6ae6a716bfda3476dadfb4d3ef64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis\/AdvancedSecurity.php","hash":"2f70b3d1715b2d127b748dd719a07818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis\/SecretScanning.php","hash":"96e57c5f2ee9332d93dc0054b5ce64b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Update\/Request\/ApplicationJson\/SecurityAndAnalysis\/SecretScanningPushProtection.php","hash":"4998e60d90c33550f0bca0162556c492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListArtifactsForRepo\/Response\/ApplicationJson\/Ok.php","hash":"ff4f2eeb72ca7c3e2a11cbb21f7a8622"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReRunJobForWorkflowRun\/Request\/ApplicationJson.php","hash":"0a39382275ef5ede62630ab24e14ed5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoOrganizationSecrets\/Response\/ApplicationJson\/Ok.php","hash":"0a8cb1c350874a85aaa5b6dd2dda0c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoOrganizationVariables\/Response\/ApplicationJson\/Ok.php","hash":"28478aea0a17408149306f9b56dfd40f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetGithubActionsPermissionsRepository\/Request\/ApplicationJson.php","hash":"1c6820725f71fefcd1e4e17d1e69e997"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListJobsForWorkflowRunAttempt\/Response\/ApplicationJson\/Ok.php","hash":"e492429ae5f670380685e023ec1615f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReviewCustomGatesForRun\/Request\/ApplicationJson.php","hash":"040613ef976edceaf99c5e64c29d4699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReviewPendingDeploymentsForRun\/Request\/ApplicationJson.php","hash":"825da23c2c198ddd442786fc6d4c1919"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php","hash":"66000344037b2d0c48a250cad5e7687d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateRepoVariable\/Request\/ApplicationJson.php","hash":"941cdd0458942457b67513b671a5b131"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateRepoVariable\/Request\/ApplicationJson.php","hash":"d5a8ade71db0641b10d11dee3aa53485"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoWorkflows\/Response\/ApplicationJson\/Ok.php","hash":"7be670d077c76c4c4097369592818130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateWorkflowDispatch\/Request\/ApplicationJson.php","hash":"80f3eeaa0021414115a9c67c1d95e75d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateWorkflowDispatch\/Request\/ApplicationJson\/Inputs.php","hash":"42393e3731b2e28ac0f50ecba85eed39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateAutolink\/Request\/ApplicationJson.php","hash":"192a37b97b41b2eee25753eb7f4a4650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson.php","hash":"642ec59a4d4b9ad581387b5691e43db8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredStatusChecks.php","hash":"5b9370b845955d5e21458864bfce97e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredStatusChecks\/Checks.php","hash":"a07263ed0b83e8f4269fa9d2426e1d15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredPullRequestReviews.php","hash":"9e1cbced54b8e80f4e6d3b8487227b86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredPullRequestReviews\/DismissalRestrictions.php","hash":"b414e5e197bae357a631319d966fb8e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/RequiredPullRequestReviews\/BypassPullRequestAllowances.php","hash":"2cc71e014683ea309bbe5f924141fed4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateBranchProtection\/Request\/ApplicationJson\/Restrictions.php","hash":"b5a397eb0c6b2a095250b0186dc0762b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdatePullRequestReviewProtection\/Request\/ApplicationJson.php","hash":"f69cda3904bf514b4c8fb622a0f951e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateStatusCheckProtection\/Request\/ApplicationJson.php","hash":"6f4d6b65af9ee4774ace5e5792bcf193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetStatusCheckContexts\/Request\/ApplicationJson.php","hash":"2d36e000435ebaee427b5f8c366f147d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetAppAccessRestrictions\/Request\/ApplicationJson.php","hash":"5f9b4af52345590c365b807d9600bf70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetTeamAccessRestrictions\/Request\/ApplicationJson.php","hash":"ea632102249ad9b1cfb421f51ef1e5a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddTeamAccessRestrictions\/Request\/ApplicationJson.php","hash":"3fb59945b50c8a8177b40dff83a8a15e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/SetUserAccessRestrictions\/Request\/ApplicationJson.php","hash":"f46a80fae5fe7f815f1f73729c7c29f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RenameBranch\/Request\/ApplicationJson.php","hash":"8890ec27be1c57efff76770a0d7d2149"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson.php","hash":"3cecbf5414ce9b11764c346955785803"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Output.php","hash":"2837ae74e80e0a998aad790bd24e1c15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Output\/Annotations.php","hash":"706c8c4b50563d4665766450c9aa93bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Output\/Images.php","hash":"8226dc50e090309cb967200be4821777"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Create\/Request\/ApplicationJson\/Actions.php","hash":"4376e9eb6d47763943d795280ed3eec1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson.php","hash":"01c9d3fb0d72b0f726fa96b358a7853c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Output.php","hash":"5fae39e1c0982291a5d613b21b8db038"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/CreateSuite\/Request\/ApplicationJson.php","hash":"f41ac951e898e77217115867ee3b3205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/SetSuitesPreferences\/Request\/ApplicationJson.php","hash":"1c0dcf7c24d126470dd9b11d606b2858"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/SetSuitesPreferences\/Request\/ApplicationJson\/AutoTriggerChecks.php","hash":"a3ba2d9f0fbebd8277cd00c9b1d7e1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListForSuite\/Response\/ApplicationJson\/Ok.php","hash":"50a6c59ca18898dec5300be481d9ffb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanning\/UpdateAlert\/Request\/ApplicationJson.php","hash":"d3d60d750c4615ccb82c5bbffad01a5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanning\/UploadSarif\/Request\/ApplicationJson.php","hash":"7b1e73806074204ed886fd3a705cfd3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateWithRepoForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"3c5d8f7130261969c94414c8b747fc2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"7171791d98a3310d128d127bbc1178c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListDevcontainersInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Devcontainers.php","hash":"af1639897b8a3a0ea47642f7d92a0ba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/RepoMachinesForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"e7eceabfd7d99f981336cf5648ca7787"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/PreFlightWithRepoForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"fd49df6a8b3042a0c6c6fa4074bb6dac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/PreFlightWithRepoForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Defaults.php","hash":"3179f24f6706c32442bd7c1b9cd7d26f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListRepoSecrets\/Response\/ApplicationJson\/Ok.php","hash":"b9c28f22eb77544a23b25791ffebbdf7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php","hash":"d3c835052ece3fe5fad2fd24bce66b45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddCollaborator\/Request\/ApplicationJson.php","hash":"e6cd42e473429dd28ee14f9d50061f45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateCommitComment\/Request\/ApplicationJson.php","hash":"5070c1786649da2a7f1a2ccd69d1e831"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForCommitComment\/Request\/ApplicationJson.php","hash":"533a257ec1f2cf0dcd4a5afe7c3551bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateCommitComment\/Request\/ApplicationJson.php","hash":"e10b240f6907b574c06b0f817c3b4eb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListSuitesForRef\/Response\/ApplicationJson\/Ok.php","hash":"a97a58ee17285fe2ed107b76b78773cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetContent\/Response\/ApplicationJson\/Ok.php","hash":"ac58059a1f6d84946661de9a6579530c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateFileContents\/Request\/ApplicationJson.php","hash":"0db67885d07b48096a01683c0fe93a15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateFileContents\/Request\/ApplicationJson\/Committer.php","hash":"d069b01effebd47bcfbeb4bb5220f58e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateFileContents\/Request\/ApplicationJson\/Author.php","hash":"7923793e93b4f9c46bb11f063a800802"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/DeleteFile\/Request\/ApplicationJson.php","hash":"ff67d3db07db36b864e4b3f26ee621d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/DeleteFile\/Request\/ApplicationJson\/Committer.php","hash":"fdf2e44c48deeb9e111934dadb66b693"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/DeleteFile\/Request\/ApplicationJson\/Author.php","hash":"bcca6d5026ad29b566c1f7093793d9cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/UpdateAlert\/Request\/ApplicationJson.php","hash":"4e601aeff1d455d4326101aec5229330"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListRepoSecrets\/Response\/ApplicationJson\/Ok.php","hash":"c0cb9e3cedcacffbe6c826e18b76bfd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Dependabot\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php","hash":"015934898a565d2026c7e46c39957cbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/DependencyGraph\/CreateRepositorySnapshot\/Response\/ApplicationJson\/Created.php","hash":"64a060872b8a71b122a0b680516effdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeployment\/Request\/ApplicationJson.php","hash":"a5f3be2a9df1b89ac95f6419f468bb59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeploymentStatus\/Request\/ApplicationJson.php","hash":"db69e10f85386fb31a2e05c8a6850993"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDispatchEvent\/Request\/ApplicationJson.php","hash":"6198de64d107f8de7546edad4fc02047"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDispatchEvent\/Request\/ApplicationJson\/ClientPayload.php","hash":"db2a0c66987c6ff9bce27b6ec7589bfc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetAllEnvironments\/Response\/ApplicationJson\/Ok.php","hash":"821c647292ef22d59507e00301f6e575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateEnvironment\/Request\/ApplicationJson.php","hash":"24c2d98f2dcac43966f68aea58ada6be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateOrUpdateEnvironment\/Request\/ApplicationJson\/Reviewers.php","hash":"1c907372fe82b35014191c492d75fc0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/ListDeploymentBranchPolicies\/Response\/ApplicationJson\/Ok.php","hash":"e691590d44bb0d52987c6b542af843f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetAllDeploymentProtectionRules\/Response\/ApplicationJson\/Ok.php","hash":"4bfe77416f501625ad670902b0b8e7c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeploymentProtectionRule\/Request\/ApplicationJson.php","hash":"03f4b0b2c81c2530e219dc22d978ec78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/ListCustomDeploymentRuleIntegrations\/Response\/ApplicationJson\/Ok.php","hash":"92b46fcf1c59d53ae562a24a57b01350"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateFork\/Request\/ApplicationJson.php","hash":"3f8662e2a1e605a0c04a1964aabb46b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateBlob\/Request\/ApplicationJson.php","hash":"ea72ed94fb2e60a590bc14f7f9a456da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateCommit\/Request\/ApplicationJson.php","hash":"16dd522ceb6c3a0531575cfaa2b13a52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateCommit\/Request\/ApplicationJson\/Author.php","hash":"23ce5ea2ce6366648a63adadf1e5bae9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateCommit\/Request\/ApplicationJson\/Committer.php","hash":"940338d7dbc15bb882280b7928318f18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateRef\/Request\/ApplicationJson.php","hash":"b00100aeb156b3098ec1d6399d08e377"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/UpdateRef\/Request\/ApplicationJson.php","hash":"aaa98d991a3c7131bd1fa043a5ba9c6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTag\/Request\/ApplicationJson.php","hash":"91a3f87b1753c4c5f20a3fcae4d8fd45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTag\/Request\/ApplicationJson\/Tagger.php","hash":"dd073c5fec4cbde036e93d8fbeac6bcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTree\/Request\/ApplicationJson.php","hash":"b4d877fdd983338fc720cfc1c99cf5eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Git\/CreateTree\/Request\/ApplicationJson\/Tree.php","hash":"22b87b2176fce97551eab54e32156a68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateWebhook\/Request\/ApplicationJson.php","hash":"ddf0e755c4b66da95741e6994ebe7c59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateWebhook\/Request\/ApplicationJson\/Config.php","hash":"17ae916c39bd6f0f5cf0868d8688c51e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateWebhook\/Request\/ApplicationJson.php","hash":"7efd244fe8657b8cdcab8dc1d0903fa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateWebhook\/Request\/ApplicationJson\/Config.php","hash":"4090791cd09c3b1fe6e2ad25a14bb374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateWebhookConfigForRepo\/Request\/ApplicationJson.php","hash":"4a0aa2ea6bdbc5bd4d2f16d9c2059755"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/StartImport\/Request\/ApplicationJson.php","hash":"f7a80305dc607f5664d77f46116be537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/UpdateImport\/Request\/ApplicationJson.php","hash":"a6c206bfbfbb4427ff15f097cdf640f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/MapCommitAuthor\/Request\/ApplicationJson.php","hash":"107fd78a99b94467f49fc22f1c577d34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/SetLfsPreference\/Request\/ApplicationJson.php","hash":"e791e81e424f0c4163516c34a57484d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateInvitation\/Request\/ApplicationJson.php","hash":"b3e56b14bdb8a6460ee332277c5bc710"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson.php","hash":"0d036f997a203095d5f4751a484b0e36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson\/Labels\/One.php","hash":"064eb8586fe87cff511b522bbe482aa8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/UpdateComment\/Request\/ApplicationJson.php","hash":"eaabcde66b8a6a7ad7f5e77397ce6f46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForIssueComment\/Request\/ApplicationJson.php","hash":"17dee1fec4dc45cdb4ed9d07b33c8741"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson.php","hash":"51e690cc7de77f883106810988748e30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/AddAssignees\/Request\/ApplicationJson.php","hash":"35d39c2ad466eb452029ad2a10a7adce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/RemoveAssignees\/Request\/ApplicationJson.php","hash":"88bb3ea392ff3c212a22172b5cb210be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/SetLabels\/Request\/ApplicationJson.php","hash":"30412449c8997e5d3b9f84c87339c7b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/AddLabels\/Request\/ApplicationJson.php","hash":"d7e5644b669f0e16bc92b0304f976e97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Lock\/Request\/ApplicationJson.php","hash":"61652397b218d45dafffee10c4f0b569"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForIssue\/Request\/ApplicationJson.php","hash":"d1317205e27a66c03484619ed1b5f4d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeployKey\/Request\/ApplicationJson.php","hash":"f3cc91b10f343129ed2caed3afe7249e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/CreateLabel\/Request\/ApplicationJson.php","hash":"a9ff92cac52f95db111c6bc8e3c2a086"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/UpdateLabel\/Request\/ApplicationJson.php","hash":"86e3f625be4089f6d42a4ed4e1b0fe68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/MergeUpstream\/Request\/ApplicationJson.php","hash":"69f47f88d7a5dddb6d5cd2a6d3261ac7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Merge\/Request\/ApplicationJson.php","hash":"2218936e1eb347cce1029a25522be16c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/CreateMilestone\/Request\/ApplicationJson.php","hash":"ef03868c80d39031c2d7f77b8b7e291f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/UpdateMilestone\/Request\/ApplicationJson.php","hash":"83eb06070bea3555644e6842ff6b5f54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/MarkRepoNotificationsAsRead\/Request\/ApplicationJson.php","hash":"b15851016ed5974b4249d50c27908383"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/MarkRepoNotificationsAsRead\/Response\/ApplicationJson\/Accepted.php","hash":"253ace86f8edaa3b284dcd449349a61f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateInformationAboutPagesSite\/Request\/ApplicationJson.php","hash":"1ae430c2207ef84ce8c1f28cf4546419"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateInformationAboutPagesSite\/Request\/ApplicationJson\/Source\/One.php","hash":"b8f6eb55af597cb19fc03c1a8d4bf13f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreatePagesSite\/Request\/ApplicationJson.php","hash":"e8c83e7e5690b9058d1a826f738621d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreatePagesSite\/Request\/ApplicationJson\/Source.php","hash":"c7349dce9d538d31b966ccb36929a4e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreatePagesDeployment\/Request\/ApplicationJson.php","hash":"6df8570aa10d68b0c83b4e07b1234491"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/Create\/Request\/ApplicationJson.php","hash":"3b71a44f99b0ccbcd66a092eb0fce544"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/UpdateReviewComment\/Request\/ApplicationJson.php","hash":"60e8668e8edf04971b3c5a363761f0bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForPullRequestReviewComment\/Request\/ApplicationJson.php","hash":"6612ca30ac18e6873c6334e606a0ddb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/Update\/Request\/ApplicationJson.php","hash":"4f3387bc333e8d1b0685ab46db917f4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateWithPrForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"40e65f28ae523ec134656fdce7b8ccb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReviewComment\/Request\/ApplicationJson.php","hash":"61763e22fe19fa9735b54bf0c4bf9686"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReplyForReviewComment\/Request\/ApplicationJson.php","hash":"7401a8e11e0dcec7e81d64b8315addd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/Merge\/Request\/ApplicationJson.php","hash":"dffca54c694878ca9014443682ce5390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/RequestReviewers\/Request\/ApplicationJson.php","hash":"b67adfe9ab1eecdd0791dd3c6ea1c8bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/RemoveRequestedReviewers\/Request\/ApplicationJson.php","hash":"135b2d4996cb69077a792cc1cd10c686"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReview\/Request\/ApplicationJson.php","hash":"5625be97d8e6ed8dbf50960b7d97d280"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/CreateReview\/Request\/ApplicationJson\/Comments.php","hash":"d9b1ca752215e976651463077af56748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/UpdateReview\/Request\/ApplicationJson.php","hash":"0d9bc53a93653f72b5f60dda12aaf66e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/DismissReview\/Request\/ApplicationJson.php","hash":"2fe805074d561090884e74d4b7917446"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/SubmitReview\/Request\/ApplicationJson.php","hash":"15ffce9af7d5ab9d6be6075f282a2603"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Pulls\/UpdateBranch\/Request\/ApplicationJson.php","hash":"39a6998bcd652d4dde4648b28d3fac45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateRelease\/Request\/ApplicationJson.php","hash":"de4859a24ec522f14e02b1c86b8e8d78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateReleaseAsset\/Request\/ApplicationJson.php","hash":"92434d6f69d48533a775f59a686b7bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/GenerateReleaseNotes\/Request\/ApplicationJson.php","hash":"202cfd9925415e88943f1cb7a296f097"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateRelease\/Request\/ApplicationJson.php","hash":"1aa8f1321a5a425f993e691c4fe2c1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UploadReleaseAsset\/Request\/ApplicationOctetStream.php","hash":"03de65654a23f3c623c521698ddf1656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForRelease\/Request\/ApplicationJson.php","hash":"5fc21153008a6d80b51d109813aa67b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateRepoRuleset\/Request\/ApplicationJson.php","hash":"47d8753d93cde19809373292ca6782a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateRepoRuleset\/Request\/ApplicationJson.php","hash":"5089dc2b1ffb60a1157eecda2ae9e97e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanning\/UpdateAlert\/Request\/ApplicationJson.php","hash":"1243d316204ea1790822c3a714b50eab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/ListStargazersForRepo\/Response\/ApplicationJson\/Ok.php","hash":"37370d5a91d50a84925a9ad50e892eab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCodeFrequencyStats\/Response\/ApplicationJson\/Ok.php","hash":"cc3ee66c2bf555d0b76b5ca88e628f31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateCommitStatus\/Request\/ApplicationJson.php","hash":"600761bd3116a726e06ca792c44a0e46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity\/SetRepoSubscription\/Request\/ApplicationJson.php","hash":"586d472a366ef532c720d4f7d1105e6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateTagProtection\/Request\/ApplicationJson.php","hash":"de5fd1d0b85f3f096d41d16dc699d697"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/ReplaceAllTopics\/Request\/ApplicationJson.php","hash":"c282bd6a17e502b53913ea74dbf9afdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/Transfer\/Request\/ApplicationJson.php","hash":"3fc61877f19367730e8da1fcb76bc47a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateUsingTemplate\/Request\/ApplicationJson.php","hash":"c4072be6c137d2f4f422d482d9adc8c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateEnvironmentSecret\/Request\/ApplicationJson.php","hash":"5c908a707b39c8a1b8f27cc435b95d3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/ProvisionAndInviteUser\/Request\/ApplicationJson.php","hash":"02ec18bcd858765921d7a18a3985273d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/ProvisionAndInviteUser\/Request\/ApplicationJson\/Name.php","hash":"472791d3dce0c0cd01e16489da915905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/SetInformationForProvisionedUser\/Request\/ApplicationJson.php","hash":"08061617da29ca40e695841f7e463143"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/SetInformationForProvisionedUser\/Request\/ApplicationJson\/Emails.php","hash":"ba5c3df405c1d6d2f43f986bcfcee649"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson.php","hash":"54a7189d32ca6e34f69c263a3af0fb92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations.php","hash":"b74045a6332323c945192c7b67c1fbd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations\/Value\/Zero.php","hash":"90b4e290cbf773edd440e04316006614"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations\/Value\/One.php","hash":"4a4ce349d8d78f17ee272788be8b2071"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Code\/Response\/ApplicationJson\/Ok.php","hash":"00694e66d7a8e39b23b2e7a77d9ad8e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Commits\/Response\/ApplicationJson\/Ok.php","hash":"ab2efce86a2cd3cc3678a10f40ccd0e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/IssuesAndPullRequests\/Response\/ApplicationJson\/Ok.php","hash":"c1bb4b7d3ed47f9923d43dd6243c6e3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Labels\/Response\/ApplicationJson\/Ok.php","hash":"7f8645c98ac3dbec5bb3e5730ae7da2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Repos\/Response\/ApplicationJson\/Ok.php","hash":"6c79b503cdebdd94c7021abd78eede03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Topics\/Response\/ApplicationJson\/Ok.php","hash":"971c336211ccf393f2d7f52a1a3c4c6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Search\/Users\/Response\/ApplicationJson\/Ok.php","hash":"d7e06955ea088e8226052211ce56bc5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateLegacy\/Request\/ApplicationJson.php","hash":"324fb358dc0c066b27a7c216ebc1ee8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateProjectPermissionsLegacy\/Request\/ApplicationJson.php","hash":"6cd4f2c430bb36147a678e098f34505c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateRepoPermissionsLegacy\/Request\/ApplicationJson.php","hash":"7089ca242ee1a5ad846609de3810059f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy\/Request\/ApplicationJson.php","hash":"b77dd4d7ebfda8cc8fffebbbca494b93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateOrUpdateIdpGroupConnectionsLegacy\/Request\/ApplicationJson\/Groups.php","hash":"9c85a4fcb286d3f31154f78af6e259aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Users\/GetAuthenticated\/Response\/ApplicationJson\/Ok.php","hash":"76142a317f93e98d22681ff0b019dfb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/UpdateAuthenticated\/Request\/ApplicationJson.php","hash":"a590393ca49abc011a83a2acbf1da292"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"81d5a346d8d2ba5e2635037a9192175c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListSecretsForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"d63709b22b51c87d75f1344a131c4fc2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/CreateOrUpdateSecretForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"66ed4a41ed91265d2a75a06a470f534e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetRepositoriesForSecretForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"97957f0338190b003bd669c117a403b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/UpdateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"31ec9a7325dc691da759d318da505f31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/PublishForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"bbf37665425a4ef6f9e771a3f33805d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/SetPrimaryEmailVisibilityForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"c89943f8013bbc6761e730fb75635915"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/AddEmailForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"b8181a2e0de9a7275f3f118e7b93d2dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/DeleteEmailForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"be6df0b07a4ce4ccf88d9276da46498d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/CreateGpgKeyForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"6b2f7c20a100e10e4ab8170036c52cc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListInstallationReposForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"3e1ade30735318fcb4bbbc2d8df304b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/CreatePublicSshKeyForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"eb2bf6d14e9f56745def9cb69ed4db78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateMembershipForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"b52a41dee04f5ef10d4087e7d452ae43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Migrations\/StartForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"1687983ea40b891c4e41d67a6b1d2f5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"7acca234994e591ebf8124d9cdef5e11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"565957ffcf6d2cacd96f5cf7cff1291c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/AddSocialAccountForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"b9b391ccd358102ae182b543011a1496"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/DeleteSocialAccountForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"c675b591daa9e90a07c70b9923c3291f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Users\/CreateSshSigningKeyForAuthenticatedUser\/Request\/ApplicationJson.php","hash":"be1036613a416054d4ab00876d5f91dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Activity\/ListReposStarredByUser\/Response\/ApplicationJson\/Ok.php","hash":"b0b99b96798aefcfcc5454a3a83e754d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Meta\/GetAllVersions\/Response\/ApplicationJson\/Ok.php","hash":"96e185a1c2696c346c16d9fcde563fcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/ClientInterface.php","hash":"a47ebbd614462af81e268cb9e5f8c9b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Client.php","hash":"5ff01923f97b317afd7bae9a385d98a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Meta.php","hash":"a53481b59e594b70650e8772c13440a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Apps.php","hash":"97b1089362ee37dea038f8a711bc0f30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/CodesOfConduct.php","hash":"2078abefb4e8a5e441097225fd9f0ef9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Emojis.php","hash":"7718761810f34c12a97716d77bfe0cca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Activity.php","hash":"515746929d98d6196e716b317b36569b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Gists.php","hash":"2e021f94ca2f5da1dc477306c1c42159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Issues.php","hash":"6c266f2f00db2ce2482e590c30d1a687"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Licenses.php","hash":"f58a29f1fc220c720d38a7e9e092f00d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Orgs.php","hash":"ec10cb21632d45cb4742a45f992bea50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/RateLimit.php","hash":"3306c7478e0426f3e9501d21a444881e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Repos.php","hash":"d97efe19c717a82dee1005556f4616d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Users.php","hash":"0fcdaf0f0c7bbf7d956ea9ab4010d684"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/EnterpriseAdmin.php","hash":"39802d50ddf9df2ab3365246a7f72955"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/AnnouncementBanners.php","hash":"17ae9fba6e42a5b9a27ccbe7563558a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/SecretScanning.php","hash":"0bc833d58050a471e192470c4374d7e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Gitignore.php","hash":"fdb9b23b5dfb6c2591475a42d8a6479e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Codespaces.php","hash":"4b019bd773bb7300f35a98a68ff5b364"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Teams.php","hash":"b9f5f60dd69a059857c1e6143106dfcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Interactions.php","hash":"6b4914178489fdc13a89a6b3ad0a5b1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Migrations.php","hash":"a138f3100048427042dc2e06f4768fa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Packages.php","hash":"faaaae24c72d0b7fac3fc12083a932c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Projects.php","hash":"446fb42e99f7ccf6c3438675b95e820e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/CodeScanning.php","hash":"595e85867648ed694003688837c4df0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Dependabot.php","hash":"1797ce72a5e362a4b6fd180f428face1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Actions.php","hash":"566b2d83e61521b1397bb20ddeaa39af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Pulls.php","hash":"b0fadbd19c8bb6c0b296e259a7a85dee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/SecurityAdvisories.php","hash":"add678c2d7af1bb6bdf7271f48e6b00a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Search.php","hash":"c053bf1a3a7027a713320cb185571fc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Billing.php","hash":"74cf1aae72f2c8152d493cacb5cbdd4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Checks.php","hash":"b75e06a0a0c11b27c374c11103696c7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/DependencyGraph.php","hash":"89c652ac75640824169c2cbca264ad22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Scim.php","hash":"db2c79949e00f11777104aa2ac5aa032"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Reactions.php","hash":"664d3d8d507592633e9b7fb3c08bebd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Oidc.php","hash":"2a891e5dc57043b69a78db9a645fa477"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Git.php","hash":"848da3dac40ec56f5b453cd6b6601fdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Apps.php","hash":"92fa3ddffa7f4f5a8bf52d3c048866e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Gists.php","hash":"697eb8603011db5c5c4b41d05a43f2f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Orgs.php","hash":"1b9194d7774bee73afc8ff15b318d743"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Migrations.php","hash":"f19841bb13db1f5b9d663b15fa40eb99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Projects.php","hash":"e71c3b9e5e93305ee034e4f4993a345d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Repos.php","hash":"5c42f88cab1fe649febf436d967c58df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Teams.php","hash":"02c89d4bb409e23e55066f50665e7823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/EnterpriseAdmin.php","hash":"53079d8a05a62fcf076462feb53f745f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Actions.php","hash":"6c01ab8fefca2a2392a3c01518dff865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Codespaces.php","hash":"a41f5e946120c7c048954ea0ac2efdd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/CodeScanning.php","hash":"b1ad9fa100ea0e321f79f511747d6f48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/DependencyGraph.php","hash":"24b41b90455a95a14d016239502260a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Git.php","hash":"fe79567c2a110bc7e9633ae7e7bb82da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/SecurityAdvisories.php","hash":"dc0d0691fd4e457384ed4eb5b1ec32cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Scim.php","hash":"1a01a893d03e51270a743e25b1fbfc4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Reactions.php","hash":"bc30c984002ed3eaf1d844990a2c1211"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Packages.php","hash":"82ee3a4fef9949ea1edab0fdcf0c1e49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/SecretScanning.php","hash":"480d64521e97cd554fce908b2dcdba06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Checks.php","hash":"8238f5603525613be6afe107dbe8d58c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Issues.php","hash":"250ae9c5c12ec6e3005e5107d0dac962"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Pulls.php","hash":"9098bc8dc5bc977bd321c5ad1ef2757f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Markdown.php","hash":"64f2853aa0a156640022e383e39fdf5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Users.php","hash":"b48c7f475382e0fa35dfd14097677c1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Apps.php","hash":"f0b72fc3966669c8914bee78035a7b11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/AnnouncementBanners.php","hash":"d337a77099f4999780128e10bb1929c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/SecretScanning.php","hash":"c5b1b6b1b7768d5da937da810e7849fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Activity.php","hash":"e29bc6212b13cd5687ec8fc286edd190"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Projects.php","hash":"c9e85fec7d39287c127ba83b809efdfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Repos.php","hash":"7c4931c2c963c99e978651fe3b0efea3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Codespaces.php","hash":"a62b3136c9945bbc72fd517ae2d7bccc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Users.php","hash":"0783da9c02b23d4524ae5ec8692518ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/EnterpriseAdmin.php","hash":"bc06c0c72e379ef40e543a351dd56fae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Actions.php","hash":"9bb05c42127ad14d0ab1fcfe93aa490d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Orgs.php","hash":"8294ba7a3f27ef2e198b50091aaabd2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Teams.php","hash":"6af46345d969bc9875c0c85986e99876"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Checks.php","hash":"529382c8fabb4258afda5c028855d3ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/CodeScanning.php","hash":"a62d289fb90f692c92d5de14911da955"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Migrations.php","hash":"83ceef558a3ce7ca7975f6739359499c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Issues.php","hash":"eaac0b23b99c5e9d040f7b268a469030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Pulls.php","hash":"63a88854bb2339fe35a0d5f72e28fdd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/SecurityAdvisories.php","hash":"c3824a2413cebe9d730a877ad140a0a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Gists.php","hash":"185eee31dc9b4d8de4ee40261cd5761c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Dependabot.php","hash":"7343a2661e28b4f2e2c21f58023015a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Git.php","hash":"7f015e9571520ca674d251bb00f722eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Scim.php","hash":"8003a30676a3b9f12648b3ef571a338a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Apps.php","hash":"8252b460b2d758d71ae7211ce0b37283"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/AnnouncementBanners.php","hash":"c2f09bb69da47df2f8f61836563e1d23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Gists.php","hash":"969d9e9c9b2b9cdd8280f92886f3acc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Interactions.php","hash":"fc50308974c1959b4b1253b9f64eac14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Projects.php","hash":"83084be14084c13ab66ee012c1240009"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Repos.php","hash":"6d5962cbcb34e302176d040c72e3131e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Users.php","hash":"1f628a29e1460779b07e16980ed6cee7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Codespaces.php","hash":"af84fdb0bb3acdaf805be8f67c822592"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Activity.php","hash":"8f03edc6ef907972d5b3093239aaf04f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Orgs.php","hash":"6512d8f2295e155271c85ed05979c159"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Teams.php","hash":"74b497bba2e25092c7251fd18d12f1d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Migrations.php","hash":"a21058965a933586139482fdca408843"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Packages.php","hash":"d795aa6983796a17e4b07b9157d5d607"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/EnterpriseAdmin.php","hash":"0e2b4b92a3168668e0f78e41ada6a1da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Actions.php","hash":"feb97bfa90791f858510270e9b9dfe75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/CodeScanning.php","hash":"c2985d8c6901428839abdf365b71faef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Dependabot.php","hash":"7ee7191a1fbf37a4e8ed4669ee565ff9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Git.php","hash":"3b198fcb95c7aaa42f242ef7d10d1689"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Issues.php","hash":"1ecd97d14cd51485fc7b7f03bb38303e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Pulls.php","hash":"2da07890115e78fc7f35945b9ead0358"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Scim.php","hash":"64c9b22ad0a1b0a569b1a35a2d13c011"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Reactions.php","hash":"33481cd83f7c2935fe904cc30dd1e856"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Apps.php","hash":"7085e48b03400c3ec260c91be76f87d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/EnterpriseAdmin.php","hash":"5d26efa8615498f8219c4a2df4aa16f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Activity.php","hash":"c7ade66a060d308a865f12c0d03727ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Actions.php","hash":"0df5f4401f053dbb5842ff855b5d9d50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Orgs.php","hash":"fb66b48e28d188270e69835cacb80803"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Codespaces.php","hash":"2d6e35f499049cdea1635cf23cfb621c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Repos.php","hash":"37a3378b693b6989c865f837b34abd1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Projects.php","hash":"0601fc6a3e30b1b4983e9a30739c5139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Migrations.php","hash":"260b27d42f9c05d2e8725c9960c8917f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Interactions.php","hash":"701e37452c531ec33aacfefa23f8c69d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Teams.php","hash":"199654bdff4c190e69c68106b41458fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Oidc.php","hash":"70e77ae9407b6d63c048bd9e79301b89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Dependabot.php","hash":"423a386cd97e33f42f9b479c70a640d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Issues.php","hash":"51dc06083ea5665307f4038c18ed01ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Pulls.php","hash":"a5e081b607f55a23a4211152904dee92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Scim.php","hash":"6e9dd73f51efb93069626b53bc64918d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Gists.php","hash":"b4e3da7e59493845421302ed210ce122"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Users.php","hash":"5b223fd4a78d1e69c958e5ee0af4dfb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/One.php","hash":"4acf6c0083d0ef75d0507e97cce620bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Two.php","hash":"95b61467975ef68acd0a4b1bba5dabdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Four.php","hash":"cd199769e385381cdf0ed17a51f6554b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Five.php","hash":"d1f4a8c3b4feed4e85df5c73a9554981"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Three.php","hash":"df2b1dcdaff39ab5ae3765f049d1da8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Six.php","hash":"2b021c6d6f8c46e2bc6b0f1c3771bcb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Seven.php","hash":"d00275d7f0b69ffcb69068a6db3a8c56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Eight.php","hash":"bd09683e4ad734155da912dddfc0fc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Nine.php","hash":"44108bd44c94e3c2b505212aa28787f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Ten.php","hash":"290f5ac10177835426e898b22f62e198"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Four.php","hash":"dde236ae68c846621b29d5b1dbbe7ef8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Six.php","hash":"982869b873cf4af427e90cf839957ec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Five.php","hash":"d71be0995232fdb4e3e8f7db6cf84544"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Seven.php","hash":"a7acd28390e8ef13e65c27a0e684d8eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Two.php","hash":"f6c53cedd9423e982c74594e09ad6873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Three.php","hash":"0c8f2f71fdd90d64da1addf6dca04e40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Eight.php","hash":"0a99faf70cda4af951d874599b7fbe45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Nine.php","hash":"89f3f30475601ba08419d3e22cb981a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Ten.php","hash":"1d31edb22c4ab31b4b40c0b828539ae6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Four.php","hash":"69a24f05cd00c42c5185afd914c6c55f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Six.php","hash":"d1a012b4b7558dde7d8d9431bbb758c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Three.php","hash":"ce923715f4d07e118fb9a00499a468ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Five.php","hash":"8a94b37c76325db0366040c881dc8f3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Seven.php","hash":"0b18c99c33317928b4e123ea521eba63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Nine.php","hash":"3cd5e8089df48dcd43daf04011297731"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Eight.php","hash":"365823d88a5a482818bd1a3e1976270c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Patch\/Two.php","hash":"87213c9271997edc9a0c8c347723c9cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Four.php","hash":"d84824a6b091fec6d019bd270a9724f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Five.php","hash":"cbe439d23bf2f3a60f3c62ae1c848295"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Seven.php","hash":"0c9ae4606a1b80475f8c39255de80e05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Six.php","hash":"44c4fc4b86447a407ec6a6111e3e2a69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Eight.php","hash":"b8d41d2ba6f923516e0a1abea7ef8a53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Three.php","hash":"76753d0a9bb65110bedf33bd7b701756"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Nine.php","hash":"291fa92ea0717a944f2d282d2e977fdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Eleven.php","hash":"b3e762ff780491e00e00f2c2ebf81f44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Five.php","hash":"7524bf742a745a43fa72cd04e72e23df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Seven.php","hash":"4fe8f352653b8da8cfa77ee65bc10b39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Six.php","hash":"62d7fa8d00e0304d75ea6f669417b9dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Eight.php","hash":"f4ca2cfc6f5a13cbeb32ecaea67b30de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Four.php","hash":"38abd95ec0109c4de3f6e94cafe3ddf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Two.php","hash":"c0b038f63896f59ab72e3973d3339689"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Nine.php","hash":"d31fb1ac9bd5c684e06bdb0cb8e0eb8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Put\/Three.php","hash":"419adb51fe64e7780ba15317d552e8c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Stream\/Six.php","hash":"4bf9e0069221797f30069d3e96d1d1c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Stream\/Eight.php","hash":"83d70f3a6ac3f3d4076f6172317315e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Stream\/Ten.php","hash":"3988845d20c001c424576de38235f921"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/OperationsInterface.php","hash":"8442e52d3b67c1089ffb03a4fdf7a657"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Meta.php","hash":"e0d5c9c4ada27cf134c924e8480bffd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Apps.php","hash":"ee91e0a41cbf4e811bb0908fb82b9ec6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodesOfConduct.php","hash":"79f59b3fe4ed5181fef9b12d4ea3db39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Emojis.php","hash":"73fb5a597ca9ab725e81f0f73cf4d971"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/EnterpriseAdmin.php","hash":"6c218cb2e3aa910d5ffadfd5f93e0741"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions.php","hash":"13788f07e610269a43cd460b29862095"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/AnnouncementBanners.php","hash":"9234c73ac040a48899fe07a5b8b0dfb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/CodeScanning.php","hash":"2a51b32097a5b5a0fb8007f0ce9bcfe7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecretScanning.php","hash":"da5676d34ce20c0a294221b630c22776"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Dependabot.php","hash":"91d76a24011954b3fdffcbd2ee0f4ec9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Billing.php","hash":"29f2bf885ee87feec824676a3d73e3d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Activity.php","hash":"3c0e95efbc52b7a1b2f448a971ded0a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gists.php","hash":"52b962cc347a04264fe33a90bd487a17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Gitignore.php","hash":"91078ea4a8976dc60ea855b4c6bd268d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Issues.php","hash":"145d2b3002ef6838d6577ec5a0ad7c61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Licenses.php","hash":"73f5a20a1cf09df800a385944842c3a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Markdown.php","hash":"f4d6effa3cb3f10f582377aaf8b1d861"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Orgs.php","hash":"09cc82768de9c34f116a4360fb99a814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Oidc.php","hash":"7498fe6e361094758f82ab4aeb70c1a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces.php","hash":"4e48e3fd834acfe74adbe0e9a9c07653"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Packages.php","hash":"df7d77f4b1280d4a1f78c2fab003a707"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Teams.php","hash":"881e12a2b0cc483d40869b718e874f4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Interactions.php","hash":"d423ab8b1143de1ba8d26ee68c7ee135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Migrations.php","hash":"df95a84e32bf27600f70c87495498388"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Projects.php","hash":"06c9f7dd6648318c54158c7ccb779c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos.php","hash":"47b9030165a16defb599c8710d48ea7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Reactions.php","hash":"018ba820bbcec5a6905f578b821a82c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/RateLimit.php","hash":"c749de15924215ceff3a3c2be4bd8bf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Checks.php","hash":"db078c93c52585feff6d8f19ed5da07d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/DependencyGraph.php","hash":"3b56e9bb71e06b5f16fde36255831cdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Git.php","hash":"9410bdf31bca406cd3c2c71a0798c79d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Pulls.php","hash":"0d4e821f39f6ff0316043ba16deea2b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories.php","hash":"087d519985dd4e5cbefd086a302ed5dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Scim.php","hash":"3bd60b75e15fc774cba47cdc0b666c58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Search.php","hash":"2ef644acd241ff8938156520a90b81d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Users.php","hash":"39bd34c17bccd24b334926874772b5d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operations.php","hash":"22c3f8ff70fbbf721d7bb522e21cff6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/WebHooks.php","hash":"336bfa37721974ed164525674208e503"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Root.php","hash":"2ed1cd01c285b7813d8ca8b98b951882"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App.php","hash":"e184acd57120e553798016220f2ed174"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/AppManifests\/Code\/Conversions.php","hash":"244d1bd50cc33634d93088cf8cfe92da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Config.php","hash":"369aaf51f1d3229b6020265fbfacf6c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Deliveries.php","hash":"56296ecfbaee28f772862688c116daab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Deliveries\/DeliveryId.php","hash":"5795445f40d3fc9f24a2feb8a7ed4c96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Hook\/Deliveries\/DeliveryId\/Attempts.php","hash":"7d0aeacd6762504d593c918128f0c971"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/InstallationRequests.php","hash":"9f7d1b8bd87f400e8a4db40ef4985714"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Installations\/InstallationId.php","hash":"bd4061b376560aa9f4c87b25985fef91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Installations\/InstallationId\/AccessTokens.php","hash":"8649dfa0bacd2da47ddb4d3a6e9411fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/App\/Installations\/InstallationId\/Suspended.php","hash":"3d84fad26941882e9f2a812dd172c18e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Applications\/ClientId\/Grant.php","hash":"d5145aeda50cdfe9fd475f23c0ff1406"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Applications\/ClientId\/Token.php","hash":"e4b59207cb50265d602692064fb3c6f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Applications\/ClientId\/Token\/Scoped.php","hash":"a30215e54e47c9ba94f7a39254736e2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Apps\/AppSlug.php","hash":"be53d77feb19b408350d72843a5c7b60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/CodesOfConduct\/Key.php","hash":"65641ca20ccf5c86333b1b9e45a30afd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Emojis.php","hash":"2a5d11def0f10505499d4c742db4f8fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Cache\/Usage.php","hash":"85cf2228484bc2eb142a670feac5e818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions.php","hash":"4c92b8c1a14da8c15d6fd83120f8d814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions\/Organizations.php","hash":"c3a9f6fd039db3d06deb5b67a387b50b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions\/SelectedActions.php","hash":"d790dfff5d799e939f182b21318dbc00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Permissions\/Workflow.php","hash":"8051f6ceb7ba1e77a24902eacf6237de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups.php","hash":"6d50a975f95e9323d3b82ef5f4823ebd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups\/RunnerGroupId.php","hash":"dc06a2f60ba96885632f535e926dada6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups\/RunnerGroupId\/Organizations.php","hash":"448d46ec5a59574a5ad89851601eec07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/RunnerGroups\/RunnerGroupId\/Runners.php","hash":"ee222c0eaef1cebe04c3548881918b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners.php","hash":"8717a36464c54b1776420a51f2b3fd14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RegistrationToken.php","hash":"c20d71cebe41d4559a440484ba8af5c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RemoveToken.php","hash":"5a5dd8db2b4f5932e945a95e94fb6ca5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RunnerId.php","hash":"6b298e474cef509b32de74452cdf7c19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RunnerId\/Labels.php","hash":"77c541f06a0015b718d72cd54f920e0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/RunnerId\/Labels\/Name.php","hash":"237180a3dcd64ad148e02646e0eabe70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Announcement.php","hash":"60c8d6a5a5a53982b2c6a2aa1751f284"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/CodeScanning\/Alerts.php","hash":"14d95693afab9905fd950598a015484f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/CodeSecurityAndAnalysis.php","hash":"1b27d46d5ee8d75f4e2b5584cdede0e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Dependabot\/Alerts.php","hash":"7d3601f156a9be380e58e8f55f3e2bcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/SecretScanning\/Alerts.php","hash":"0235789835d89615483c3e2d8d5c278a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/Actions.php","hash":"f668123e4d1bc56d4df685f693a98eaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/AdvancedSecurity.php","hash":"14980c7ce7b29829b4915dd275a796f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/Packages.php","hash":"a9126fc2e2633f989b02c94761d9f174"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Settings\/Billing\/SharedStorage.php","hash":"20e6310deca2e62464bf3265df635ffc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/SecurityProduct\/Enablement.php","hash":"d98a6887996702623311b9a943c7a8fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Events.php","hash":"6f5fbea7e306dbc7d38f23c6aac3f1c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Feeds.php","hash":"479a7b61aeea5ba33f6c548e11bddb5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists.php","hash":"890ac50351764e27e1fbdea3cb192da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/Public_.php","hash":"30e36461e0a6e84b75e3bf0a895e6205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/Starred.php","hash":"d85e2cb5c5625a78b397b83b8df63362"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId.php","hash":"245c4945fd831f18eeb74da36f0d5160"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Comments.php","hash":"ccdf5838cba32b38bfda99347687797d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Comments\/CommentId.php","hash":"19adb5ec96392b0e374f8cba57e84fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Commits.php","hash":"fa7b2a4bc10101a120a2d6cda01d89ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Forks.php","hash":"8d7b6d0165f02e0bb43a99bf2a92a26b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Star.php","hash":"e1f2c9e8d756a5610c24f8ac7669be2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gists\/GistId\/Sha.php","hash":"9ed9fb668db6f209a405331fa9176ffe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Gitignore\/Templates\/Name.php","hash":"cab4911a4ecd504149d04361326f10c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Installation\/Repositories.php","hash":"5825230c4a6e866cc6a15ab47f149e5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Issues.php","hash":"8b3babe97d8eec386fdb9edba0525fb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Licenses\/License.php","hash":"3120e6978f21bb522405b4b580dc4e59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Accounts\/AccountId.php","hash":"527a58ebd170c7ec0aafad141244c7e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Plans.php","hash":"7e3f2e6083eb6633605d94160dd4948e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Plans\/PlanId\/Accounts.php","hash":"f984356636c8dfbba302c17c25d6c1da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Stubbed\/Accounts\/AccountId.php","hash":"026d5bf8d3a04ebb0c2779ba33ab3862"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Stubbed\/Plans.php","hash":"f28e4ce4ddbe2d50c76062a93a7ad80d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/MarketplaceListing\/Stubbed\/Plans\/PlanId\/Accounts.php","hash":"5114748d208b3d726823e4d5b8e996ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Meta.php","hash":"9daff6058c8df5be1887c7379ddedba5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Networks\/Owner\/Repo\/Events.php","hash":"5cda4f0e59aae706ea52cee21b37b32c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Notifications.php","hash":"3b6e6fe678f4599c88bf24402dab63df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Notifications\/Threads\/ThreadId.php","hash":"cae16936dbf5c71e07632d4af8760443"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Notifications\/Threads\/ThreadId\/Subscription.php","hash":"7c0905073a70a0aea71db60d3bb71342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Organizations\/OrganizationId\/CustomRoles.php","hash":"9b24a9ba5a48140a2062a5bdde810514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org.php","hash":"445e1a33a53d338683d70ea05264b00c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Cache\/Usage.php","hash":"36d31fab4d6e2e96830bdfcbcfeb7209"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Cache\/UsageByRepository.php","hash":"d1d940fda7b8a3d8026f69ce6cb268b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Oidc\/Customization\/Sub.php","hash":"51be84b18e1b4882070e7f76ef625a0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions.php","hash":"f882472616f40049848c07e761e3a28f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions\/Repositories.php","hash":"cb99870f6a8460c57aab061c077fc995"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions\/SelectedActions.php","hash":"66aa25f1d9062074cc29ce62f68f1ca4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Permissions\/Workflow.php","hash":"a94a44793034941ab6a43880e5e412a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups.php","hash":"702519ce0463a1e32338ff94b38d215a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups\/RunnerGroupId.php","hash":"372da7229fca83e76b0e22fb1818ea13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups\/RunnerGroupId\/Repositories.php","hash":"89543dfc82374dab8ac1bf62c3371f54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/RunnerGroups\/RunnerGroupId\/Runners.php","hash":"237d1d56414b411d79ac572582d85827"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners.php","hash":"45d502d4d6d2dad41ad3942195514a8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RegistrationToken.php","hash":"4cd4e65a16a5bdae51afff179fcc4f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RemoveToken.php","hash":"13602a5e2e24a9dc45513839e0437e71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RunnerId.php","hash":"005e727afa553fb1c3e9de9f0223b42a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RunnerId\/Labels.php","hash":"3c292087d2269c85b311fa6fc56b945a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/RunnerId\/Labels\/Name.php","hash":"c575198be73631ee56a210778d4e6cb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets.php","hash":"106f8e8c48c47540d65106cbab9034f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets\/PublicKey.php","hash":"3af2da45acf9a38f327d6a9ca1a1b7d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets\/SecretName.php","hash":"f0844db70ea0bdc564fc0bc6d5f1838e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Secrets\/SecretName\/Repositories.php","hash":"2ad4218dcc8444aaf0f2b4efc0e69e3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Variables.php","hash":"c1f02126b44e6cee01eb16d9eb8a6ca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Variables\/Name.php","hash":"32cc8dc7d6ac003a32dd19595e1a40e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Variables\/Name\/Repositories.php","hash":"f394cb6c9c2b941be298f0e941e41e3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Announcement.php","hash":"cdddfecb6adabd38ebb786143ebe1273"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Blocks\/Username.php","hash":"87f66b9c0c9868de9f79da44c96cfaba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CodeScanning\/Alerts.php","hash":"9c980afd8f5c38666c77292d7b2a498e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces.php","hash":"a8b0baa54625030c7d4b5dc3d0df28fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets.php","hash":"8d3717330a2b95d319d11d591fe8e1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/PublicKey.php","hash":"1fc153265e27cbe3ee2957972260f0ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/SecretName.php","hash":"dc9ebb1477070cf969221ae2d62c69eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/SecretName\/Repositories.php","hash":"efba6b95bc9386d2d8df8c668acec232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Secrets\/SecretName\/Repositories\/RepositoryId.php","hash":"7994fbbbaa439bfa5c9afedfbe5ab628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CredentialAuthorizations\/CredentialId.php","hash":"30a52aabb723036bbdc2a665b0a5f940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRepositoryRoles.php","hash":"7e4c214192ea1cae2ab7d4ab4fff8c8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRepositoryRoles\/RoleId.php","hash":"66990e730977afc41d6d63c8a2da15d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRoles.php","hash":"b15332067d7e8fcdcbc1f58be2eae569"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/CustomRoles\/RoleId.php","hash":"7f17634235d3ca612dbc3b8073423227"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Alerts.php","hash":"e3a852bf282e42a0055486ab44e824fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets.php","hash":"db3f7d9aa4214f14dc93304f415070e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets\/PublicKey.php","hash":"568e79f9ebc7d55dec689e328476ae35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets\/SecretName.php","hash":"faaa4fd677c977d2c9d561bf60c268e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Dependabot\/Secrets\/SecretName\/Repositories.php","hash":"09edbb2839426d2b436d6f2c60a5e72f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Docker\/Conflicts.php","hash":"bea0e2383adf90cf386fe7c890144f5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/ExternalGroup\/GroupId.php","hash":"b0779ffc2394a7104e51c26a6d6f73e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/ExternalGroups.php","hash":"539b8d109bf98852722a2686c6633c3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/FailedInvitations.php","hash":"6397b1de7e4d9e5bd19d33097fad3400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks.php","hash":"aca69a3d7848cdb5c94ff967422c9342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId.php","hash":"362df6491bcc7684f831812ef6a9a788"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Config.php","hash":"ce2d234722c28730b4eb5905fa76e387"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Deliveries.php","hash":"e1b5ad2382fc19f837e2b4bc2eca55a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Deliveries\/DeliveryId.php","hash":"20035ee1b900f41a98637db0737a527a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Deliveries\/DeliveryId\/Attempts.php","hash":"89b94aead975f406936b75d26b7909ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Hooks\/HookId\/Pings.php","hash":"2b3eb108c0d21d24626282b86d54f699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Installation.php","hash":"b652edaac91642e82a2c1eb461440ed6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Installations.php","hash":"d9fc7281cfcbdecb4af5b4f371f7262a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/InteractionLimits.php","hash":"c86e5818627ab9834f98f7403a0e455e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Invitations.php","hash":"d73348e283325e9cfb6ebeeb45ad3b7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Invitations\/InvitationId.php","hash":"479c32209a384f8befdb95e296de079d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Invitations\/InvitationId\/Teams.php","hash":"e7817a4073a9d6d3898c7abd319a82c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Issues.php","hash":"7770fa0349d6e07f0c956ee01c2284b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members.php","hash":"802e7f546205825cf6cd937a08b87a79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username.php","hash":"312108f42f2a4bc8283fbbf37805315a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Codespaces.php","hash":"cc42ac4a723bf9ac13525235c57f60ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Codespaces\/CodespaceName.php","hash":"fa61d112f0df41aaea1edd8b14ffead0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Codespaces\/CodespaceName\/Stop.php","hash":"f2604451603cbed1cdacfb9d73ca5124"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Memberships\/Username.php","hash":"2bbc8572f396c5d23dcc41d5f1dd7f5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations.php","hash":"1a78e6883b4fd174fa788ddcc2e5bb94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId.php","hash":"1b42ef34d91b3822bc697a95f2260e1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId\/Archive.php","hash":"571df6d05463faefe576bebf101b6cad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId\/Repos\/RepoName\/Lock.php","hash":"af341197ab907487084a2eca9566088f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Migrations\/MigrationId\/Repositories.php","hash":"84ac87bfc820c093d155c3c6b1958a0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/OutsideCollaborators\/Username.php","hash":"ee6093a589aaef26b05ebc9a155a2c7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages.php","hash":"f305cff7780fbf97bea338a415b25d8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName.php","hash":"585f95bd34175f0845a44a423ff8d9f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Restore.php","hash":"fa47c0459025ba0a8aa1cfd3d44d8e5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Versions.php","hash":"262b6be5fbdbef58072413172c21b2b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId.php","hash":"ac7840acab9f8b621a322d674853bf28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId\/Restore.php","hash":"8c0b0cf08a80cd808773a4b6992fc9bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Projects.php","hash":"571d95f008dd816df7e5303e766e491b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PublicMembers\/Username.php","hash":"fa88333a4d4baf81e7c4ab962fff4bf5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Repos.php","hash":"044bfae65dd23ac9ce6b24446ed14556"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Rulesets.php","hash":"e527c890f4b5dfae92121ee6491ab1a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Rulesets\/RulesetId.php","hash":"b466f0e1daafb416ebf5b4cc9b16e8ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/SecretScanning\/Alerts.php","hash":"566d0c3de13b9e5cb56e5ac1bafa85f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/Actions.php","hash":"a47519f9c279d271d2ead8c2afcae669"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/AdvancedSecurity.php","hash":"0113fe096d24353f4ad92a3c401622c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/Packages.php","hash":"442ed62040890c0ac17f57ba0ae364e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Settings\/Billing\/SharedStorage.php","hash":"b1b234d699e1c0dfb282ca3b17a640fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/TeamSync\/Groups.php","hash":"2209a6ebb68971e76a1cbaa151a824e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams.php","hash":"7316bf069dd88aead5247ec3e6d7ab14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug.php","hash":"e297a6bc9fd683e27e06d70557159792"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions.php","hash":"0a0d6684164ea94f82f722c0bb52fc2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber.php","hash":"8f3afe0596068f1534e6f06fdd45e5e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Comments.php","hash":"c0f19b2411c5a8aa78a920404d9e0d99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Comments\/CommentNumber.php","hash":"cb0939b9a5eff7c00f22c507cef22767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Comments\/CommentNumber\/Reactions.php","hash":"7ba2b326f98154c43136b98b1d95bc9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Discussions\/DiscussionNumber\/Reactions.php","hash":"96bf6f3315a58ea8574a55c195f9ac90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/ExternalGroups.php","hash":"2d15598a58678183d9e100ca1903ea1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Memberships\/Username.php","hash":"43df3b50867d75152596d84446cd6399"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Projects\/ProjectId.php","hash":"9a334749cdd6e0481309dfbaf2b405c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/Repos\/Owner\/Repo.php","hash":"cf864ed5c70023554e9f90c654e3e528"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Teams\/TeamSlug\/TeamSync\/GroupMappings.php","hash":"bda68482333f49f454fd5b94c5173e3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/Cards\/CardId.php","hash":"51a69c1ba2ca42047be13512394dd310"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/Cards\/CardId\/Moves.php","hash":"411e5d83427a6cdcc950636422ec21a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/ColumnId.php","hash":"99410e83d712dfd42bee314ca00b80da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/ColumnId\/Cards.php","hash":"4ceb0d6779a882bef1ecabae43fc9311"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/Columns\/ColumnId\/Moves.php","hash":"ea3c1087bf22b9f760aa55bba4be3ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId.php","hash":"05c410c70436158861dae8acd709e007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Collaborators.php","hash":"2e7b1b9332705fa65cb8937ea38f763b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Collaborators\/Username.php","hash":"5a61a0eaec76066226649a5e225ab9ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Collaborators\/Username\/Permission.php","hash":"06d06c8215852b2af5afb5b3eea25299"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Projects\/ProjectId\/Columns.php","hash":"a7c1c396374e867dd0530a8737166fb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/RateLimit.php","hash":"bf47601701cd8cff0346829e8bff20e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo.php","hash":"93df1aafca0ea8f69f9093b2cd51e1f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Artifacts.php","hash":"3016b3d1c56989538a603d2ba8e433f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Artifacts\/ArtifactId.php","hash":"50646a7218c15eb5d7faa406bff8c78f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Artifacts\/ArtifactId\/ArchiveFormat.php","hash":"919e9c5ef70009c25acc655d9077e001"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Cache\/Usage.php","hash":"0b6c2ae1b2419bc9f300e512c8bc6479"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Caches.php","hash":"2597a14637ad6be650eeb65ae0c0d1ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Jobs\/JobId.php","hash":"6fa0b5145a81ac8d257cdb33904c31d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Jobs\/JobId\/Rerun.php","hash":"c6c29130aa0b96c78775dce7299eca59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Oidc\/Customization\/Sub.php","hash":"2b17f6ec2e3985aeb6d7c36d3f8acc88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/OrganizationSecrets.php","hash":"564330c7d09fba58380c205685a3f172"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/OrganizationVariables.php","hash":"c358d9821f46b84b415547c2cf5dc8f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions.php","hash":"d07a8760283615330f8403419c9b9976"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions\/Access.php","hash":"6e88ee8e0ed4845d07ff02a320393824"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions\/SelectedActions.php","hash":"64187977de1ee4b4a1cd5c232b408ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Permissions\/Workflow.php","hash":"ec1e6e54eadc1ee211f7fc6bf89318f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners.php","hash":"8428ef0949b95c3937c19b5c1544b29d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RegistrationToken.php","hash":"1011ab43fcb8dca8d62a92b09c13ddae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RemoveToken.php","hash":"4199e9a5b3b2c15a31a534c4805a6dab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RunnerId.php","hash":"d198e155f294c0a73acf785ed75ccb3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RunnerId\/Labels.php","hash":"d5e016ca14cd066cfba6297d12ef039c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/RunnerId\/Labels\/Name.php","hash":"91f3d06bf36886cdf3ab6406f9fe21c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs.php","hash":"8f557f6f4b083c364bc8015ab7770255"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId.php","hash":"d28955957adcbeb6889edccf1b51411c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Approve.php","hash":"7ed2ba000e620a76fbdb0a7c47bd66dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Artifacts.php","hash":"00e7f82493da22f55b3790f6c24c82ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Attempts\/AttemptNumber.php","hash":"5983a649ea971da4f3438ee643d87408"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Attempts\/AttemptNumber\/Jobs.php","hash":"318459dba4e2e650501f38e58b4e38b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Cancel.php","hash":"4bdebd69e320a2361b2a4f4d8e417ddd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Jobs.php","hash":"eb40dbeca43fe9302f16e1682d218944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Logs.php","hash":"da02ac82cbfa180365dff9a6bc256d42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Rerun.php","hash":"40295d1a35f835364e1a2ee7acf88ac1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/RerunFailedJobs.php","hash":"27caac2fbfa9474fcc5d4e4aabdd70e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runs\/RunId\/Timing.php","hash":"25a605e7a232ff644d250c773760cd22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Secrets.php","hash":"70742ba3f543127373a87bf75f084684"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Secrets\/PublicKey.php","hash":"da563d6323837d415198d83946ee58e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Secrets\/SecretName.php","hash":"d23bc8b744b87633ae6d42c5f85ccf8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Variables.php","hash":"df712b939970724833e49ce2d74a96e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Variables\/Name.php","hash":"66322945ac417837fea440d64dd5e77f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows.php","hash":"d02847e7e7231c9d601abfe2aa9579f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows\/WorkflowId.php","hash":"0994e44b68b8a179f6c1cce9ef884995"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows\/WorkflowId\/Runs.php","hash":"13ceeb05f4933e33e6944cc39e946a87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Workflows\/WorkflowId\/Timing.php","hash":"9ece6c844d5f133fe45f736061c6929e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Assignees.php","hash":"d2e86c6b6a294cb500bb120563acdb61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Assignees\/Assignee.php","hash":"0c0ffd869a14f43a6536806f5773d003"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Autolinks.php","hash":"4fd95a52cfc8941dfda01e93bb20c608"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Autolinks\/AutolinkId.php","hash":"01a85e0d41822d33d1d712db31df41bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches.php","hash":"995d0dba4b809c5ddcd391ab10bae8c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch.php","hash":"2a7559aac02b0e5b4e16854924032787"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection.php","hash":"487249c6ff45d75d81fdc0349a4359b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/EnforceAdmins.php","hash":"1eb1a41a1d927ce985ebb4a09905ba33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredPullRequestReviews.php","hash":"56845036ff488bd4593813fb3cd2fb3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredSignatures.php","hash":"958210ae4bbd5ce68f5687e7a9b3da2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredStatusChecks.php","hash":"b278317413861150f078c23011d5a786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/RequiredStatusChecks\/Contexts.php","hash":"ce89fbb1c89b3ddcb4d1eb770007d3b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions.php","hash":"16f740e51197c6fe0a35f59864fd9284"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions\/Apps.php","hash":"0457f8304f4ac3b54df82e8e10f9a374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions\/Teams.php","hash":"9cb76a19b856a92ab390e7713b5eaeb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Protection\/Restrictions\/Users.php","hash":"f509ee1efe204ef457794cc4a1c7c6e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Branches\/Branch\/Rename.php","hash":"22b29d8ba3836a064d79bb876f5aadf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckRuns.php","hash":"38d757651081d538ddd82f4304def069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckRuns\/CheckRunId.php","hash":"9a2e337b494a82431a2bb2d7868345c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckRuns\/CheckRunId\/Rerequest.php","hash":"8945815f41640f4635daa4b8992015c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites.php","hash":"ed78d5e794fa303f040aecd88d897f92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/Preferences.php","hash":"429aa0eae27f80cc24f30fa7cd7a07be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/CheckSuiteId.php","hash":"4b9b2325ba944d5fa218ef81422045fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/CheckSuiteId\/CheckRuns.php","hash":"d5da4387fca545eb59fef4e5cfac2b6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CheckSuites\/CheckSuiteId\/Rerequest.php","hash":"ef6d775ff07aae3498b4356dd76d47e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Alerts.php","hash":"5c06b5f814c7b48406e86a77e8b2d458"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Alerts\/AlertNumber.php","hash":"fbbd7a8d8312b101acd727a80d3aad91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Alerts\/AlertNumber\/Instances.php","hash":"fe918cd65d7c6e5777944efd02dbdf01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Analyses.php","hash":"b53ad3baf094f54598b6632b922c0372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Analyses\/AnalysisId.php","hash":"3371ed8114cffb344f7710086090fe6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Codeql\/Databases.php","hash":"cc781f7f128524f89e3fbd23f876e7d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Codeql\/Databases\/Language.php","hash":"e494d215e5d0aea85fa999d2fefe530f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/DefaultSetup.php","hash":"e83dc65d56cea1604d25d4fc7decab9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Sarifs.php","hash":"3aef1126983074bd951d99e164c3d195"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/CodeScanning\/Sarifs\/SarifId.php","hash":"2a41d078a377aec6e4737d4cc7aa00de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codeowners\/Errors.php","hash":"934feaf44a1aa865418eada65a998505"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces.php","hash":"0f3ee939e7c8e72d3edf3f870d5fbf64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Devcontainers.php","hash":"fb1f18de7ae9e54c6871077ed011a2ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Machines.php","hash":"8ba7e71d42fe974c85646cab2c2887c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/New_.php","hash":"0a24f07b553ba2fda1993b32f4cd4659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Secrets.php","hash":"1f8eae06e825311004fe5313ffdad3f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Secrets\/PublicKey.php","hash":"740b0d9a3cc41571b01bcb76b1593aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Codespaces\/Secrets\/SecretName.php","hash":"056f438bffeeaef3caae76e8437209da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Collaborators.php","hash":"05b4c3a56bd1349992b767fa52c71796"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Collaborators\/Username.php","hash":"1731c1e80986773c1f4f4a145658fe19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Collaborators\/Username\/Permission.php","hash":"5286990cf83a0aa1e444d0c3aefc4306"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Comments\/CommentId.php","hash":"2c7ec7216fad4888b66993deaaffd58e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Comments\/CommentId\/Reactions.php","hash":"91d7bb9cb992a6b5d063612e1d7c6865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits.php","hash":"544e7c38252e3fcf5cc8fa21ad13e2d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/CommitSha\/BranchesWhereHead.php","hash":"6ff165a90219dcc159919bd9a99da348"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/CommitSha\/Comments.php","hash":"0bc68be114d84e9c4dc9637baf012213"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref.php","hash":"0a1816193b029f28b05138bd8c95c893"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/CheckRuns.php","hash":"f4f46d75bec3ccd756a566759c25695c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/CheckSuites.php","hash":"6bf5b44a232497f383f2159ca7338488"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/Status.php","hash":"9892fc93b12081a22c4fbcd563a87da5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Commits\/Ref\/Statuses.php","hash":"3190aea299b4702c703443b66f73a6a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Community\/Profile.php","hash":"60f77742496505c557a7119caecfda4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Compare\/Basehead.php","hash":"749628ad3adb7bb45afdf37964c60ccd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Contents\/Path.php","hash":"75053ad2600677cf29c0b20e4cabd794"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Contributors.php","hash":"1c55d080990eb0053f2dd184c682b6e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Alerts.php","hash":"d1da4119c55d9bffccfb6a2406ed5a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Alerts\/AlertNumber.php","hash":"3d8273617da1241d18de1800e9aeb8b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Secrets.php","hash":"3c108a5e719c2cc1cb5e45385e76b232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Secrets\/PublicKey.php","hash":"2a107b96f77137dc8c513e5a1c245647"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dependabot\/Secrets\/SecretName.php","hash":"4ec95c287b9040e63b937c4c951dc80a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/DependencyGraph\/Compare\/Basehead.php","hash":"caf7a76147ed07beb419eaf85e281c71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/DependencyGraph\/Sbom.php","hash":"ebd41127499217e9d32d337b51e207fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/DependencyGraph\/Snapshots.php","hash":"6a4e3924825249e0a58567420dd01374"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments.php","hash":"faa1527354bd8c09aaccb06732cd3664"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments\/DeploymentId.php","hash":"88b9daf2100c0f4e1462bfd823211333"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments\/DeploymentId\/Statuses.php","hash":"914ab01743bcda4d64155dd3eb35580e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Deployments\/DeploymentId\/Statuses\/StatusId.php","hash":"31bd16deedf0eb4e77cd40a8a2cb6894"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Dispatches.php","hash":"73aed909d6be2e9305137923e08adc2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments.php","hash":"8faa533fc4a1af9463ccce735a3be4dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName.php","hash":"9fba41f88e31448bb697d6aac779f746"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentBranchPolicies.php","hash":"36938f7f76975a09eb70c568e05c6f14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentBranchPolicies\/BranchPolicyId.php","hash":"87101f2ec763fe9531b1c131c3454527"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentProtectionRules.php","hash":"f8fb39399b9c69212fa151f6bd9318b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentProtectionRules\/Apps.php","hash":"78dc01b537189c3744dec1d51e4804a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Environments\/EnvironmentName\/DeploymentProtectionRules\/ProtectionRuleId.php","hash":"78f9d122e3e277e56d7504a1c8d7f575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Forks.php","hash":"b120d3316600b90cbdab40c45f9e4057"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Blobs.php","hash":"f26ff3e89b2a16f41c6ba2785b1942a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Blobs\/FileSha.php","hash":"a4a62e1e107a23adf52a638472a407e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Commits.php","hash":"bb9cf74a67ad35b5673a2e140ca3ccca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Commits\/CommitSha.php","hash":"41c3c70ba4765a3767b57f39cf974199"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Ref\/Ref.php","hash":"08e61c50b6296326e6d63aa81b15dbb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Refs.php","hash":"601daae62fb65c4d042eadbb29ca8f14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Refs\/Ref.php","hash":"2dae7caa56dbacc240c6ca0df2b9fcb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Tags.php","hash":"f1687e9e90bc442951646e26dfa11994"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Tags\/TagSha.php","hash":"9624034b70044098b3632e22da9bf329"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Trees.php","hash":"c8b9ea50e89073cfe70385ea0fc79b5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Git\/Trees\/TreeSha.php","hash":"86bc94b66490c0613deee7f2ac09101a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks.php","hash":"068cbb9084dc61485a180d9318339007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId.php","hash":"a8106d22a48fd61411d88513af1e22a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Config.php","hash":"196f9ea678354827d979edb7f129be27"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Deliveries.php","hash":"8066db170644ef97630b99dc17b26da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Deliveries\/DeliveryId.php","hash":"db9d4118ba040c7152a0f9228d2e370b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Deliveries\/DeliveryId\/Attempts.php","hash":"e36d89303896f2132f1e8beb8e125708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Pings.php","hash":"bc6a6dcad405a3cb1bc15febb28c5e74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Hooks\/HookId\/Tests.php","hash":"595f88a40d888ed7770738323645b62f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import.php","hash":"a6464b24651c47e519e4d9d73c2743cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/Authors.php","hash":"b00c474a50b410935523aad5abdf0c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/Authors\/AuthorId.php","hash":"20a06a3bcd5ad8b62dea9c038faa56d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/LargeFiles.php","hash":"5dc15afcf5121377faff285485f96db4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Import\/Lfs.php","hash":"d484e47d1af382d74aa9de7d17fd78a3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Installation.php","hash":"b2f1607756450788e8cd2c09e5808ba6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/InteractionLimits.php","hash":"e425532cd2b787aba45d4d87df9c8cd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Invitations\/InvitationId.php","hash":"c0f1f16cdfe24b669b22062441647fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues.php","hash":"9f815109496a06a98c7f2a7c88b0f0d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Comments.php","hash":"fa463484c598e30a45dcbe785309c209"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Comments\/CommentId.php","hash":"cc970391a29a26767410cb5020108d9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Comments\/CommentId\/Reactions.php","hash":"6f9ad48c0e8953ebd4ab2fcd739cb66b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Events.php","hash":"2d3e46c886720b8ae07362893fe7e42b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/Events\/EventId.php","hash":"0ca112a780ec254120f1b68a91177afc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber.php","hash":"29626ee9f6cc0c64d683a7d48b2c8a38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Assignees.php","hash":"23115bc28b86fd846563a3f713dc8f5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Assignees\/Assignee.php","hash":"8bb3346e0b15309168306559aa2d7aa0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Comments.php","hash":"86f6f34abf17140bbabf7906113e3757"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Events.php","hash":"9166be5156bca0ee4cc78b63f72dac8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Labels.php","hash":"3f6bbd896cdc98d36e7c2c59899baf88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Labels\/Name.php","hash":"e9af1d611bf83be049ab2420dd0c3cf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Lock.php","hash":"7bb2b5faf35f6d67ffec21d9b0b95760"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Reactions.php","hash":"9d95aa2ad1fee6e74cb24e974f045149"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Issues\/IssueNumber\/Timeline.php","hash":"a56bea07875af983a5e400fea4f3292a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Keys.php","hash":"264377b8ae6bef1b820599d2b0010d38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Keys\/KeyId.php","hash":"32b31a19b1215029f0e073fdad7732af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Labels.php","hash":"8718256dd95713add1c84f36a8c61acf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Labels\/Name.php","hash":"f3884acf861cdbcc2dfa6a88da1afbcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Languages.php","hash":"f92d05a0955035791268a1ba1d260733"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Lfs.php","hash":"75882c65958c0311582afbea38053d74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/License.php","hash":"355c4820b032164c5ff0fd3ee562f0ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/MergeUpstream.php","hash":"db839253adab8a9dde71c69d47c1f863"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Merges.php","hash":"659f679190b7109b97136f52176f7e06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Milestones.php","hash":"2f0de6771b1a2657de153d450e8bb7c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Milestones\/MilestoneNumber.php","hash":"99068bdbaf52cd6bf31a6c39af787527"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Notifications.php","hash":"a2aac5dac969f5ef136a857ff1e84663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages.php","hash":"a9f01ed3bf83797f1caf84756432dc6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Builds.php","hash":"986dd939af04c2bb4ad67f7755cf6170"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Builds\/Latest.php","hash":"f432752a4845b7b5030b009b38dc8a28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Builds\/BuildId.php","hash":"e2e06852b7d3deb1d752f79db6a57964"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Deployment.php","hash":"f54f152bb44c039372a6291d688873cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pages\/Health.php","hash":"0757c17773e904e4f3a6a2053446d047"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Projects.php","hash":"0f90d8df7a5b3625972f53b9967dcb58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls.php","hash":"6048485fbadc6292cc64c7ecafde2ca0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/Comments\/CommentId.php","hash":"39f6ff55adf5e0abff372ce1e2f91706"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/Comments\/CommentId\/Reactions.php","hash":"9fb6659594d883af7468ec45afa38723"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber.php","hash":"ee0b3650f20bb6cdf0d1876fdd4e0fdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Codespaces.php","hash":"658c0cf74995e97f0ca7156e2acf30b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Comments.php","hash":"fff295a5ee819310b0a9d2c3d22c7899"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Comments\/CommentId\/Replies.php","hash":"59f5bd6c7ad49b4388f818e693c49ae1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Files.php","hash":"e5c9da6300dfa0ba0f67ff95a6acf5ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Merge.php","hash":"df8d0c49e06ba5d58d82ceab69471611"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/RequestedReviewers.php","hash":"79bafbb421c411281c171f65696ddcff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews.php","hash":"ca73ff449efce4cd2c6bbb3402d2bb95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId.php","hash":"06c6e335ad1ca4fd461d6904a3675e42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId\/Comments.php","hash":"de1f99342812f46275f3e1e30c93e713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId\/Dismissals.php","hash":"c395c9bbd613c788e7b696f983cb534b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/Reviews\/ReviewId\/Events.php","hash":"734e6e999d66ee89e5ae178a531fae1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Pulls\/PullNumber\/UpdateBranch.php","hash":"a4169b1d9aca2e1935bb147b21404530"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Readme.php","hash":"893f81fa7adf8484e201139e091802c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Readme\/Dir.php","hash":"00dbebe473708888759efe2392274a4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases.php","hash":"5a6e60033fc957ae2ff6a1a6e8dadf9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/Assets\/AssetId.php","hash":"536d214b8afe2e72ff7af0badc17e9de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/GenerateNotes.php","hash":"7361bf658855e20f8e51bed959251e1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/Latest.php","hash":"69d4039a65fed7efc8f68e5244870358"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/Tags\/Tag.php","hash":"6ab08621622b7d846d24d815e70ed462"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/ReleaseId.php","hash":"97c996e8d9e11461eb9c939047693232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/ReleaseId\/Assets.php","hash":"9d5e8497c06dcbf08bf9ff8b51e33736"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Releases\/ReleaseId\/Reactions.php","hash":"0d86a86096fe197f387547f4e84cf9a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Rulesets.php","hash":"b071735a3832dcc0067f5c57d88359e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Rulesets\/RulesetId.php","hash":"9e8f01e0e29e2196e3856b2612fcb3a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecretScanning\/Alerts.php","hash":"f444975b144f44bd40018a768864e7d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecretScanning\/Alerts\/AlertNumber.php","hash":"40ab765f538699ddc75603d8d43f3d25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecretScanning\/Alerts\/AlertNumber\/Locations.php","hash":"2e6e2ff0e8d65fc346639f86b893f3f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories.php","hash":"a673801e38657c5e440d365ce86fad62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories\/Reports.php","hash":"ff6cc48218c731b63e39e9673dcdc02b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories\/GhsaId.php","hash":"2f3997b7847eb4885883ec713c2cabe9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stargazers.php","hash":"81cd2abdcbad1494a104109ae59407a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/CodeFrequency.php","hash":"4f33c605c4365723693b87c5a0caa631"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/CommitActivity.php","hash":"0d8a02fc821f1e22f9d6fdbbd84cd52e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/Contributors.php","hash":"48df683a8bf19c11ffaeeec60729b46c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Stats\/Participation.php","hash":"3c4e22c7b4925dbafd9d48ea045d9c35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Statuses\/Sha.php","hash":"89c0600b958cca2fd6cac4808b70fe89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Subscription.php","hash":"85b281252d40c581131138b01799ccc3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Tags\/Protection.php","hash":"8689f9665ad552046b01029cbc9b1b38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Tags\/Protection\/TagProtectionId.php","hash":"c6928d7698a56d747ed823ed5ce2c403"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Topics.php","hash":"068445bbd2194795bf31dd40c8313c16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Clones.php","hash":"b773bdc089910a58bb55005a1415b868"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Popular\/Paths.php","hash":"563614dab8e473b68343d5b9b2ac0f15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Popular\/Referrers.php","hash":"77691ccb44ad8336257433e92b0188ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Traffic\/Views.php","hash":"16a0322f0d3347ff355ce58045d9c7f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Transfer.php","hash":"583c2821a54e84483030c573a25793fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/TemplateOwner\/TemplateRepo\/Generate.php","hash":"a35b44d38294f1756b4ff6b4e9a62f8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories.php","hash":"c6bb451bf1375cd0fc725f8187c90f0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Secrets.php","hash":"27b0f7f7691d48858627da1ee16764e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Secrets\/PublicKey.php","hash":"2f46048be6d79361212f1543146b0b18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Secrets\/SecretName.php","hash":"9c009d530a53fbc7f4d0a352885f77c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Variables.php","hash":"1bf6e2ff1eb18e52b107c6151ddec534"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repositories\/RepositoryId\/Environments\/EnvironmentName\/Variables\/Name.php","hash":"82c1c3c334c7da78c3df4b45e96b3c66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Scim\/V2\/Organizations\/Org\/Users.php","hash":"1535ccec354ffe0fce6d3a5580386e3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Scim\/V2\/Organizations\/Org\/Users\/ScimUserId.php","hash":"78436ca8a2b1a5cf6e19ec8f68418106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Code.php","hash":"9f8e73d11147fef95ad13da71c9052cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Commits.php","hash":"6030bfdc25706ea5757656b75d5a8928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Issues.php","hash":"ea016d98a3791cbb7c8400a2425c7d88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Labels.php","hash":"a8069da53014e709adfdf9da941e22dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Repositories.php","hash":"e961c1929d2409bcce43d7c96fd29f64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Topics.php","hash":"31aedce258897a24ebcb9138acc95ab8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Search\/Users.php","hash":"e98b08cb591eb48b1bfb06cb37efceb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId.php","hash":"0a7cb89032952b7e3141ad263afe99ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions.php","hash":"4fea10290198bf0ac0a95eb75c12bb47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber.php","hash":"75e10912245d472d880e5195ec407b8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Comments.php","hash":"c223d0856ce9bad8b8d9237812fce6c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Comments\/CommentNumber.php","hash":"0caadc98b1486cd235e82e2f54e587ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Comments\/CommentNumber\/Reactions.php","hash":"b193dd1ee7f013529127d3b786000a8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Discussions\/DiscussionNumber\/Reactions.php","hash":"1b281e99a0884acfdcdc9789bb18f82c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Members.php","hash":"3c9d917303d1690e3c995d5828810be2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Members\/Username.php","hash":"be419598ca56b888a8a4bfd39e15f266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Memberships\/Username.php","hash":"f0216d8c73b4d062ebf071e1ba3c53bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Projects.php","hash":"352832b3414d4dd18b06741470a7d4c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Projects\/ProjectId.php","hash":"9f52ae2c1edf6a1595b8702e27dc74db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Repos.php","hash":"beca9716aed2a45cea8dc453fed934d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Repos\/Owner\/Repo.php","hash":"4a27029d947026632cd52e576bd794b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/TeamSync\/GroupMappings.php","hash":"d930506e1034a601c5a8bf712900366f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Teams\/TeamId\/Teams.php","hash":"71071c0f09cf0fcd296b0e6dae63e852"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User.php","hash":"02cd105937a9f1876fb2da1258f5b44a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Blocks.php","hash":"88c27a07e3fe0765f6dc54baa29d6ab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Blocks\/Username.php","hash":"64272daba5d9d1c86c4fcd0938cafb35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces.php","hash":"e64121030666aada87913c65cafbba8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets.php","hash":"4bcaa2605423dc8976414f98e128fd9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/PublicKey.php","hash":"22f2a397610f1a344e9588af4948ca65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/SecretName.php","hash":"8fdd47bd17940dc20ed4d7712bdde7eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/SecretName\/Repositories.php","hash":"6036061a32651b35a833926431cde3cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/Secrets\/SecretName\/Repositories\/RepositoryId.php","hash":"0606e24457e47e5ce8af893e534693bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName.php","hash":"8b33902a51e2ecd56c90be4f23d30dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Exports.php","hash":"51475252a4712167df82726b24922e67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Exports\/ExportId.php","hash":"fa280afafa5458dc5dae3dcc956be1af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Machines.php","hash":"fe75b56197e57daea98ed6066684853a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Publish.php","hash":"4dec2c03bda9801b7d0edcc44ba235e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Start.php","hash":"2db110cbb103d1a24394c875ef841f3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Codespaces\/CodespaceName\/Stop.php","hash":"939a24b20a29110b8618f5192abb1afe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Email\/Visibility.php","hash":"f294c185789f72f5b78d845ae741fa7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Emails.php","hash":"ef1c253ac549d92f6cdbd9088dc15500"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Followers.php","hash":"db094eeb2b837217e24ab272143ba77d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Following.php","hash":"35a066fcec4814b5c8c899e390088171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Following\/Username.php","hash":"13d902ac43766c37d5428ce7661bc32e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/GpgKeys.php","hash":"7f292c6c0676606205193cad6eda9cb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/GpgKeys\/GpgKeyId.php","hash":"1a415ca23da38be6ce2bf50613efb695"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Installations.php","hash":"064851b6264f26b5f85e37d32a93b2b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Installations\/InstallationId\/Repositories.php","hash":"db6fbff23fe4c4086c66542385da010e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Installations\/InstallationId\/Repositories\/RepositoryId.php","hash":"0671e45109a89ef8dddea60f3f06bc2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/InteractionLimits.php","hash":"ef968ce09d6c416649cc42c87cdad555"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Issues.php","hash":"8663412d2b738689d948db82ff2741af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Keys.php","hash":"3dc4bcee985676ac180e92d5392a1451"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Keys\/KeyId.php","hash":"d1e67c9c2fcc714c92ec5e4d94011481"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/MarketplacePurchases.php","hash":"ae5d3bac1647e8e24c63a2c5e7b77f44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/MarketplacePurchases\/Stubbed.php","hash":"575aabe962ef60d209817a65969f5be3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Memberships\/Orgs.php","hash":"b17925fc51d180fcb1837dc237e55d7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Memberships\/Orgs\/Org.php","hash":"d814a7a5e19db58fece2ede1115bd940"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations.php","hash":"67e52fd31a75f89ea9da707708f315c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId.php","hash":"caf629825a31438a33475d2813fd034e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId\/Archive.php","hash":"ba2694703d374375c70294f35a80f582"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId\/Repos\/RepoName\/Lock.php","hash":"3e1750cd3506b96a9c32c125122478de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Migrations\/MigrationId\/Repositories.php","hash":"4e480ccb6667298e8da0bb1520a7f9e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Orgs.php","hash":"be278fc7e9c135c933a2b0ba02239c9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName.php","hash":"93adde582d84be0251369d443f99a9d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Restore.php","hash":"4ca5bfb979c3ca85ea415aef525889b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Versions.php","hash":"e4eb84a7b334a7f0b30ac0c6d0baa30e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId.php","hash":"8cd9830b14f445dddef3dfe271f78c57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId\/Restore.php","hash":"4fbf938ce031301f6fc43d2f0a1196e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Projects.php","hash":"dabe6fefefa987125c908a52374e8e82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/PublicEmails.php","hash":"63a47b45e677f89cc77420b8aebadc0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Repos.php","hash":"8c6cfc21d01533c004e72027f9944ab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/RepositoryInvitations.php","hash":"b391ad332860f02f25073c04c73772ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/RepositoryInvitations\/InvitationId.php","hash":"f11196f68795e88a082556a29a4314c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/SocialAccounts.php","hash":"9a6e9f3b525cc99a15ae05914d243280"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/SshSigningKeys.php","hash":"f2047693eef3eacf9c15d497237c7630"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/SshSigningKeys\/SshSigningKeyId.php","hash":"9ca8a1bd750f6f66e89ffad859394c62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Starred.php","hash":"4696b681a4018fb87a70cebd6f31ce21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Starred\/Owner\/Repo.php","hash":"f6a29bfb868f212dd3d645c1e14cef18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Subscriptions.php","hash":"f7f5ffa8b5a1ac33bb904b0a04a65eef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/User\/Teams.php","hash":"00a0b73020b7c18d5fa4ac0232b861e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username.php","hash":"9de64432843728b7758e37a297860a2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Docker\/Conflicts.php","hash":"7ce81018b0663b00d188a5a165926aa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Gists.php","hash":"fdec0cf2d7cda48ccd799235869b0399"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Hovercard.php","hash":"7a14adfcf686b73920057b75bbc0b326"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Installation.php","hash":"2e804be920f9795e64b7d67e54c46e14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages.php","hash":"4d701f2259f2374e58463ff370122f0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName.php","hash":"fe1af7d7b5d6e4a242f7df28f3c72301"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Restore.php","hash":"7f2b42e0ea8e7a00823c50afa127ba3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Versions.php","hash":"dccd101e9c63a56d7d01979ece6d95ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId.php","hash":"08827f431f55fb3c77ec3dceaf053841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Packages\/PackageType\/PackageName\/Versions\/PackageVersionId\/Restore.php","hash":"37cc9aa53a6f311f2faa36f11728fbdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Projects.php","hash":"9eab6ae8e654a97c32af1fd0814d559a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Settings\/Billing\/Actions.php","hash":"8ed79118eb4c7ebde8afcc6930d7bf14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Settings\/Billing\/Packages.php","hash":"b0c3545fe8bc22b1bfaa19008868db16"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Users\/Username\/Settings\/Billing\/SharedStorage.php","hash":"0516c237107313c7509ef17be79ec0e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Versions.php","hash":"ce8338725795eec138b862bcfcc212ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrators.php","hash":"fe2ffa49ef07ad9eaf5a9d371bc79f28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/IntegrationInstallationRequest\/Account.php","hash":"86b0748a9ef59e52c89856c24985b44b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Installation\/Account.php","hash":"a6c32a6d924f89e127cfdd3094c036cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/RepositoryRuleset\/Conditions.php","hash":"b28da78ecf22a235a7f06c03d6634dc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietEB301A03\/Tiet504AADCF\/Tiet2FEB0C19\/TietF58BE94A.php","hash":"273435ce35a5874319adb20c2c9481db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetCustomOidcSubClaimForRepo\/Request\/ApplicationJson.php","hash":"0fae0b1c1c49bc41caf50f80dd54d0de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Deployment\/Payload.php","hash":"78f65b447de692c486b5a3640015ea50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/SecretScanningLocation\/Details.php","hash":"2865dc8971d719a7bed4a2596da042c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookProjectsV2ItemEdited\/Changes.php","hash":"8589389f90340cad7d1030e40519e377"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet70F737A8\/Tiet8657D2D3\/Tiet4F5D0048\/Tiet4DA29806.php","hash":"2c0a1d1b2900894da4e04d2125cd100a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamRepository\/Permissions.php","hash":"1c7abb72bee17fce2879a28aab7231b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE98507D8\/TietF41EA699\/TietAAC5DBB4\/TietFCFECF7D.php","hash":"1dbeee133667d50af0147e42bfc1f674"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchRestrictionPolicy\/Users.php","hash":"62c442cc510f6bffc589e5d3679d062e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4D4265E3\/Tiet514E6BA6\/TietC4D32F0E\/Tiet80494F2C.php","hash":"6356d07214ea3397ae1b9747098bd56c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MinimalRepository\/Permissions.php","hash":"df339c08678ef5c9b89fb25849650b2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2F9C313D\/TietE3F7BFD4\/Tiet586BCC09\/Tiet6B11A634.php","hash":"33e2ebeac5497786999c0264016eb41d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Deployment\/Payload\/Zero.php","hash":"2b35b7133d2c3489e1a9d934cf999e26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Metadata.php","hash":"1872e361b3d865d3592025360077f510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Metadata.php","hash":"1a282d23212181010a5763ac05ef05a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Metadata.php","hash":"a76e215561fa510c9c1fdfa92be2f063"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Metadata.php","hash":"ddfccb45ed7ffae98d0dac910bf3448a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/CodeScanning\/GetAnalysis\/Response\/ApplicationJsonSarif\/Ok.php","hash":"c7ab20ce27b397e34afdb10b44ff8fcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/CodeScanning\/GetAnalysis\/Response\/ApplicationJsonSarif\/Ok\/Application\/JsonSarif.php","hash":"deb92bd78e0809214f1ac82c803f3f2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/CreateDeployment\/Request\/ApplicationJson\/Payload\/Zero.php","hash":"c4b00399751d6f60e433a288e4ac7018"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet01FC056E\/TietED58C88F\/TietE1C507FC\/TietD84DD4B7.php","hash":"4eda5a4ce788da3f7b5ca452f5388314"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/ConfigWas.php","hash":"586f5053f8fe9f65286f4308c37fb850"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/Events.php","hash":"923ccdac5e4d030539e65fe8face4bf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AuditLogEvent\/EventsWere.php","hash":"6b25f60095f4a7960bcc15f6b2dd38e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ScimUser\/Operations\/Value\/One.php","hash":"acc30bc6eaa1dd83284be89358b80c22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/Payload\/Zero.php","hash":"8e5ae57f330a9fb8706d4cd9ba86f8f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/Payload\/One.php","hash":"f5bab263ce96c7fee8ce44e07db88579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Body\/One.php","hash":"e1404a620a65037275b07b37129075db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Dependencies.php","hash":"91d80d090c7a855c5f59b211a512788a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/DevDependencies.php","hash":"62445e1541078d47dccae3c3107b4511"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/PeerDependencies.php","hash":"c50b2c11423338b01a177e03b898fa9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/OptionalDependencies.php","hash":"77ee3b2ec5db671df2e0fe85a227ee9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Scripts.php","hash":"956cbaef4de3c0593153baf0ba09b5f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Maintainers.php","hash":"cfe84404353156478647fe3612f9dd1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Contributors.php","hash":"70dd9390f1a2f05cccd8913e950f4e1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Engines.php","hash":"006b6e4f31aa7b4fe01108320ea9e1b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Bin.php","hash":"945cbd494f0efa8343bbb095e37f9dfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Man.php","hash":"339896856c21cf3c3b69e3adbecb5ba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Body\/One.php","hash":"b181315777a8232ef7da87e6c49006fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Author\/One.php","hash":"f27ee7279f66aab953732e6b59686871"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Bugs\/One.php","hash":"b5960bcf5530ae34b12f2fa63ed48ef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Dependencies.php","hash":"5595dc813a55635dfcef046992c5ac6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/DevDependencies.php","hash":"9593d69ca1ece3a74c8e7258ce1b87bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/PeerDependencies.php","hash":"004d8155e77e771b740d4dd07c235bbd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/OptionalDependencies.php","hash":"2c438ed3fd253c9428a579cadfe25106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Dist\/One.php","hash":"3286ee7ec54e422bbb36933eed2f6bd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Repository\/One.php","hash":"7e70b3aae9f52ca89dc14f65ba5e8966"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Scripts.php","hash":"cfa915d230b4e599d991622c80519026"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Engines.php","hash":"81e6a0e8125595a137855f9cad585169"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Bin.php","hash":"8a8c93815381f7927a3be0dfe24c6223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Man.php","hash":"766a38dfb6e6f46fb47333e5f9eb48ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Directories\/One.php","hash":"d176e878c5e76c2ce0bd3627b998c38c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Id\/One.php","hash":"fd612c5f4256979381e959ee493a6f40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted.php","hash":"76d962d6e4573ac592d664b8b63503e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"bbd1a56685d5b778d455e6e89398925f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ReviewPatGrantRequestsInBulk\/Response\/ApplicationJson\/Accepted.php","hash":"efe621d2eafb593fd7a81503ee2f3654"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ReviewPatGrantRequestsInBulk\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"34434b8a95f0137bad5b2045562d2261"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/UpdatePatAccesses\/Response\/ApplicationJson\/Accepted.php","hash":"ceb700d5acf816a05d5874e0108f0caa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/UpdatePatAccesses\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"61be56ecebf2a6214fd28b7efee0aaba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/Delete\/Response\/ApplicationJson\/Accepted.php","hash":"dd3e4bd0c4ebc65c771d606d16b97a2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/Delete\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"2c8c5f80fb9fa235262d1b7a3cbb2206"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted.php","hash":"f902e260d4537d4b6980f4c73b7871e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"010d8b3f8a203f8bd1704108722a7cf4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteFromOrganization\/Response\/ApplicationJson\/Accepted.php","hash":"1d74373f49c027b6eb14b6c7139880a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteFromOrganization\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"91e94dc88af6c7bf4df4d0ba35497c8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted.php","hash":"852a5770aef973bd3cd392de7d0a9031"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/RedeliverWebhookDelivery\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"cacda5c8998f1c5e09b081f030997c83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/EnableLfsForRepo\/Response\/ApplicationJson\/Accepted.php","hash":"3de9373cc621cac8536a93efa1f56f6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/EnableLfsForRepo\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"b5f040c0afcc88d18cb570ab9b7778d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCodeFrequencyStats\/Response\/ApplicationJson\/Accepted.php","hash":"54086a37072b2e877528ee3b5d9ff72f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCodeFrequencyStats\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"a373ddabe161236b26348cffe00c89fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCommitActivityStats\/Response\/ApplicationJson\/Accepted.php","hash":"bf3c211ef89fe05f9d75bf554e4a2895"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetCommitActivityStats\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"c883bcaf7465fe918171e74814d4a9f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetContributorsStats\/Response\/ApplicationJson\/Accepted.php","hash":"920840278c956c73d17c805662311e32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetContributorsStats\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"7d9bf90e6cc6feb4c13b24e725574b64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteForAuthenticatedUser\/Response\/ApplicationJson\/Accepted.php","hash":"ffc5f312ee676f2e95d6eb4ee66d018b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/DeleteForAuthenticatedUser\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"258c9593e6b0c960f3aebb8d4ab405d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0317CEE1\/TietB8FB65D0\/Tiet6FC68DD1\/TietFE0B93B4.php","hash":"037b4982e84c6eec855969121082700b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/MostRecentInstance\/Message.php","hash":"52a4f2992fd33adc4ace47594246a0cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/MostRecentInstance\/Message.php","hash":"73530561978f97e34cf8b7d5b387883c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/MostRecentInstance\/Message.php","hash":"cad68c8ff485e7ac8bb4c826333f1f8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/MostRecentInstance\/Message.php","hash":"4d9dd45401f02bb0e3c2ca67d715f133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/MostRecentInstance\/Message.php","hash":"e12412570a5f457448c09130a410abb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/MostRecentInstance\/Message.php","hash":"c69a59b93307ae47caa3710fa3c4b2fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2BF61F22\/TietD40E495C\/TietD2DCD6B6\/Tiet9D8D9B32.php","hash":"692463f1264d399f4dc612639f9e3933"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DependabotAlert\/Dependency.php","hash":"4b6cd08198bc4f62e5066e052705341e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0B6D5155\/Tiet9712C7F9\/Tiet6BF72693\/Tiet5B5B145C.php","hash":"ea0f94eaf030ad60132e410acdbb0da4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/IssueSearchResultItem\/PullRequest.php","hash":"9b3c1835f995f8be57127364a42cb01c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD335746C\/Tiet406EDE4F\/TietC95BE99F\/TietC8083F83.php","hash":"ce58efe42003923c9a8a5621ef5d5e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistSimple\/ForkOf\/Files.php","hash":"51d7bf4075849d0b2bc2ac66225dc793"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3D775F5C\/TietC5097624\/TietA99A13A4\/TietE24C2E4A.php","hash":"a248077858481db90a2d87a5dd5917f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateUser\/Plan.php","hash":"eea2df6e1b0540989039d3eafe3c02e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet94175255\/Tiet59973F8D\/TietE4020312\/TietC4BDB422.php","hash":"0c79f81da295dcce4a8dd00d497ca826"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GistCommit\/ChangeStatus.php","hash":"b3242fa722cee495d20cb6e4a7d346e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBB00E1D0\/Tiet5E9A25B2\/Tiet94F90620\/TietEC1A306B.php","hash":"1d6c33b35cbfa2b01d442c2ca0e0d447"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/SecretScanning.php","hash":"7e6d777eeff3d13ae80a617f641626ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/SecretScanningPushProtection.php","hash":"5bdd2eb6a5f5b2ee70fbc6305a78210f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7EDBAE9C\/TietAB82B9E6\/Tiet0B3AAF7C\/TietF305338E.php","hash":"0bbd8c60fba11c0cfdf7330be95a3664"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions.php","hash":"5a1b64cd02d773ed71d59633d1837c63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet79A542C6\/Tiet0FEA0A93\/Tiet9B2FF624\/Tiet1FC22CD9.php","hash":"0fc318bafea12557b456b241309b1e52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions\/Repository.php","hash":"35bb56a0ec0aac8701155176c0011a95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrantRequest\/Permissions\/Other.php","hash":"dadb5707f75c0840ffb50b7010e5687f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions\/Organization.php","hash":"53fc29c39af7870b8ef537cf2c4a6aa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions\/Repository.php","hash":"367d08862d5a6d5cd82fcfa3a0b84bac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/OrganizationProgrammaticAccessGrant\/Permissions\/Other.php","hash":"77b4d00037ec505e046f43d631fc62e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded\/Organization.php","hash":"1203082706bf5271d72166d3e3e22221"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded\/Repository.php","hash":"09cc79f518e323b94d2a3a5aa0bae6d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsAdded\/Other.php","hash":"ffdb6edeb9c8387d6f240211c0e22afb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded\/Organization.php","hash":"c7847c559118be84d041f0d9945e8cc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded\/Repository.php","hash":"7ed587ca5216e3065a6f5e98e2872216"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsUpgraded\/Other.php","hash":"0b17797ed9f6dc0e4895fb546684a4ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult\/Organization.php","hash":"9f3dc5f2d35627ab22bd49a6255e2594"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult\/Repository.php","hash":"97861bc1e2a567340e75eeab14579b2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PersonalAccessTokenRequest\/PermissionsResult\/Other.php","hash":"10ca4c1634a127c22f7ffc641c8d8277"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata\/Metadata.php","hash":"47be2a44a0136387e5de73350a46e689"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRubygemsMetadata\/Dependencies.php","hash":"1e7a984bf46d3ea4e2cf6158e38a465d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Emojis\/Get\/Response\/ApplicationJson\/Ok.php","hash":"51f35d549ad219e76cc5e180adf3ec11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Emojis\/Get\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ca508200558faf8cadf11b8344e8db69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE8742810\/Tiet7B8AE220\/TietECD4D320\/TietD87356F6.php","hash":"07a7b8a30769da2955ee5e6cc96f92ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TeamOrganization\/Plan.php","hash":"5ddf4d492c77439166b6554038989bb8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet142001D1\/Tiet7E3EA0E8\/Tiet2E5552EE\/TietDBD699D1.php","hash":"dd70f3220a2b34c4fa87a2691bcecd37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceWithFullRepository\/GitStatus.php","hash":"4edf766b081f1ecd95be9278604ee617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD34F4F2E\/Tiet4FFF1066\/TietAA7CD8F5\/Tiet2CC7E7E7.php","hash":"8c16726e66326784df3484c2c2adcc97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodespaceWithFullRepository\/RuntimeConstraints.php","hash":"f23cdf2c7ced4bbf9de00c655dd51104"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet64F93E7B\/TietEB03B140\/Tiet2B202B0B\/Tiet2C35EA3B.php","hash":"29519da4dc4437a32ef909f405087e57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitAuthorEmailPattern\/Parameters.php","hash":"6a60e293661d3ebde4eee83799cdd97c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleCommitterEmailPattern\/Parameters.php","hash":"0dacc59093b15cda112f7c2b718d7097"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleBranchNamePattern\/Parameters.php","hash":"5fd8bce8b1e4e44a3f0eb07d1d1b6e6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleTagNamePattern\/Parameters.php","hash":"7017e0f1336aa261c44566598b2bd178"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet976A6376\/Tiet1CB19A6B\/TietE56A9693\/Tiet9C643BC5.php","hash":"ffc109be5ed72c9cbc4d019a8d81c10a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable\/Macos.php","hash":"16244a8d2a507b8358d3ea8c587d80b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowUsage\/Billable\/Windows.php","hash":"78c75809a20a1a692d0b9ca6e35a1a44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet205818DE\/Tiet09BC5C97\/TietDE84B773\/TietBE223C26.php","hash":"ce41fff31acd59199fe597badb242735"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/Repo\/Permissions.php","hash":"8649379d4e9071b3e58ba0bf5a81272b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/Repo\/Permissions.php","hash":"5e268ff07942016be66c460c38f863ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepoSearchResultItem\/Permissions.php","hash":"642532ef4fea2a319c6804672036f63e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet650E46F6\/Tiet982C8A8A\/Tiet4228F05E\/Tiet17A996F3.php","hash":"e917fbb1c5b15708a9f09f3438cd7f60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Base.php","hash":"d1f1c79c8cd780ae85ff4f2ac7587744"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet72F32616\/Tiet6A9787BA\/Tiet9DDC9E7E\/Tiet8E246D35.php","hash":"eb8077f9530b4aa01713d1ec94f342a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestMinimal\/Base\/Repo.php","hash":"aa5d9db24514c40ef061084db26186ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/PendingDeployment\/Reviewers\/Reviewer.php","hash":"b48cf60afb6195ff11688b1778c89434"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4464FF28\/Tiet6C0A72F8\/Tiet0B27A7A8\/Tiet10B71D36.php","hash":"d98c7e15bffa97f304790d5ef5087066"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Environment\/ProtectionRules\/One\/Reviewers.php","hash":"670d126caff6cbcbb1acf6cc5275e7b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6CEF235C\/Tiet04D453D8\/TietD14AACEB\/Tiet20BF342C.php","hash":"c348fd2d9eba9456ab8d0b5be869fe65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Macos.php","hash":"c315b5d8e902d675cfe57db7e71dfe21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Windows.php","hash":"f400e0d27454678f8600109c55f6b6b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0D99B45B\/TietDB2C23CE\/TietE6DDAAEE\/TietFEE070E4.php","hash":"ced5dc216f68a19ef5a1f7402e7fe968"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Macos\/JobRuns.php","hash":"26d479edbfc73c7f42da22818d8a2afc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WorkflowRunUsage\/Billable\/Windows\/JobRuns.php","hash":"01059f2469137fbf6ef0d992669bd6d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet47C5EFDD\/Tiet650C68E6\/Tiet0F894B5D\/Tiet312F53C8.php","hash":"699194d0d67aaa62865daea3e740845d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/AllowForcePushes.php","hash":"0a2cfc20e5c6943055c8fd70826035ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/AllowDeletions.php","hash":"0f1f178c08473a98caf937cb8c08de83"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/BlockCreations.php","hash":"ffb25348d28a8e121aabeeb77bef8d29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/BranchProtection\/RequiredConversationResolution.php","hash":"4f6d590d6f6c19efc2b457f32720e30c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF50ED868\/Tiet44C35399\/TietEF6AE628\/Tiet51A21942.php","hash":"3af90643d0b665e219f46d0ad4f142b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/RequiredSignatures.php","hash":"9ac0b585551e3850ce1199a05be0fdc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet35C6300C\/Tiet6FC8417E\/TietD1DC9061\/Tiet517F1506.php","hash":"41139d5895891d8f2057b220a08762a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Tag\/Commit.php","hash":"bc21c1b3be7d11b43aa8d22ac694f26f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Commit\/Tree.php","hash":"4e0afe810be21c482b38d71cbf6844f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Tree.php","hash":"adb94c29f76e4555757db2b429c17d39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietAEA81627\/TietD9F257C8\/Tiet586483E5\/Tiet737DE0E4.php","hash":"d83ace34fe590ad64f8964befa0d8839"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/AllowForcePushes.php","hash":"8ad33662057d643fb352b2ffa37f55a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/AllowDeletions.php","hash":"9db3d561555041b368cb72602279314e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ProtectedBranch\/BlockCreations.php","hash":"c0eb6a4b62299352f086f83ca33619b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9FF3B263\/Tiet857AF71A\/Tiet652E401B\/Tiet6D831DEE.php","hash":"a85cb3cad758daf2c1a0b14c9b06cef6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestSimple\/Base.php","hash":"463d3658e29a43da55c4700bed246c85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7041333D\/Tiet2B9B5CD7\/Tiet6273FDFD\/Tiet58068E3B.php","hash":"afbaeeadaf00292c75ee8dc85bbba161"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Links.php","hash":"e33a73878ab87900f67e251dd0fdbcf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB382E06B\/Tiet8099E759\/TietEF95167A\/Tiet295E84AF.php","hash":"45709404c7291a8e486e50af1f050873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentTree\/Links.php","hash":"cdcc528bb067710b9a468760e325948f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentDirectory\/Links.php","hash":"08f6c436dcf2fdfd38ce4597622ad0c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentFile\/Links.php","hash":"31a881b0728aad65713c4585946e4bab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSymlink\/Links.php","hash":"a4b491eaa1b6f4944b9baa8636671767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ContentSubmodule\/Links.php","hash":"2124ea156989aa27a51d1b7f6ab59b28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/LicenseContent\/Links.php","hash":"5d0b51641a00463f6bf8cc1a6f892264"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet291BD1CB\/TietF6B97AC1\/Tiet36E0CD05\/Tiet2426F5B8.php","hash":"72d68da011de0991e7bbef0d1b66c157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/FileCommit\/Commit\/Committer.php","hash":"974cae33f23edc52261034dcdf170652"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8249B116\/TietF3B5B097\/Tiet6B3D07C4\/Tiet1D00D525.php","hash":"f669f249e7e8f2de335532b5779c11ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CommitSearchResultItem\/Parents.php","hash":"088aaf2e8bf728d60a0d30d074746875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8125B6C0\/TietA3A7C028\/TietA198F122\/Tiet78BAFF69.php","hash":"f8bdd034e1b010ff5ca886dd468a5d71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GitCommit\/Committer.php","hash":"0b4ae160725c975a1b610d435f8e681b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Author.php","hash":"2c05271889ad9884e77d4ee3b6738278"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Committer.php","hash":"768cdb4866ae7a2d69a72550b3bbc663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC4E7FC39\/Tiet11CB7379\/TietF21F84C0\/Tiet104418A5.php","hash":"1674f2110af86ec33f35729eb1bf996a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Tree.php","hash":"7bd5be21017b24ae0db86de2961d25b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB84D28B1\/Tiet7786E045\/Tiet3136B62E\/Tiet5DF48315.php","hash":"2a538ff746630f9b3f40b733d5343fc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Parents.php","hash":"abd1a7de00fa94d5d41dcbe45917bccf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet015670A0\/Tiet1383EE50\/Tiet883D61E6\/Tiet94035AC2.php","hash":"4847aac00beca8ba0b1e6fa3ee8fe59d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineCommittedEvent\/Verification.php","hash":"861cbade6ebc6ec77125528cdf94eddf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet89D46EC0\/TietEE21A228\/Tiet63FBE554\/Tiet65D1C42C.php","hash":"e116b8e8f619ef7552691641ce0eb568"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/UnlabeledIssueEvent\/Label.php","hash":"388a473943c0ea0bd94d9bbfaf6973fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet359AA3A3\/Tiet8E01C5FA\/TietFDCA314F\/Tiet344F71DC.php","hash":"15ee2a4373572dc8caf5e249574636fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/DemilestonedIssueEvent\/Milestone.php","hash":"25dcd32a0fa21d6b134054525a5deca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet209D04E1\/Tiet27A5F898\/Tiet85DF3848\/Tiet973B280A.php","hash":"f7f2b7e515136a2091c6d2ed9e7ee263"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/MovedColumnInProjectIssueEvent\/ProjectCard.php","hash":"84f7b8b9b32127d85efa87ac27c603ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RemovedFromProjectIssueEvent\/ProjectCard.php","hash":"a57b1790f003670406570435e6a1adac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ConvertedNoteToIssueIssueEvent\/ProjectCard.php","hash":"cd68042361662c137c4e9faa88cd68a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet07DCB36B\/Tiet91F472DA\/TietA9474AC9\/Tiet7F1CE862.php","hash":"c801a8408f0bba5ae657b3d6ffa04442"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview\/Links.php","hash":"f5fea1639d8514e4a175b823382886da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF77B7BEE\/TietD3678F70\/Tiet1DF1EADE\/TietBE02277D.php","hash":"157c7bda7f881b45f39a48ec7794b875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TimelineReviewedEvent\/Links\/PullRequest.php","hash":"a5848813bd5cb49d6d612ea39a2d5fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview\/Links\/Html.php","hash":"3b5b45797e24637290630a766dd52b92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequestReview\/Links\/PullRequest.php","hash":"8f9436db3333508e85c676f57d387d2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet64B7D8F9\/TietB1B1693D\/Tiet6F7EB3E9\/Tiet2C64727B.php","hash":"bbb1026a23e061dc7812d19703eae230"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild\/Build\/Error.php","hash":"275acafad5d9103c4c6205d2107f19bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietABBE4B49\/Tiet95080E7A\/Tiet912BEDC6\/TietEC5CA654.php","hash":"125bf691c21df2e9d498cb12fa012682"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Head\/User.php","hash":"81c58ee64074c96cd9bc9da709cc6266"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/Repo\/Owner.php","hash":"35021afadbfd15e8baee032dcc828f12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PullRequest\/Base\/User.php","hash":"2303021e9945026223d6dd9249c7fa91"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateVulnerabilityReportCreate\/Vulnerabilities.php","hash":"135972d76f8f87c47ea226f4ea5f8e0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate\/Vulnerabilities.php","hash":"0e8271647e9352f01567b207628542f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/PrivateVulnerabilityReportCreate\/Vulnerabilities\/Package.php","hash":"c63a4b2658c2360f20c7c67e05bf4d96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate\/Vulnerabilities\/Package.php","hash":"28e02df6263fcd66655c88d73bd42c5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet370EB938\/Tiet2544BE96\/Tiet0D047C4F\/TietF5CB2139.php","hash":"22ea6d91f6e3dd7126b62a4ed3bbac25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryAdvisoryUpdate\/Credits.php","hash":"46607b9dab0bc990beb9e481c4f6949a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet412D10ED\/Tiet7F92108A\/Tiet0C76FAEA\/Tiet10EFF51D.php","hash":"ad732393ae150b126825dc098147b1a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/ProvisionAndInviteUser\/Request\/ApplicationJson\/Emails.php","hash":"3ab39ec1f278af5fffd09b0a06a09efb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/ScimUser\/Operations\/Value.php","hash":"d7282d83b6d5dd658928cd133da7454a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD9DFA38E\/TietD9136D28\/TietD1296A44\/TietA1883F7A.php","hash":"30b63f6a62efbc5b514e6295005b17a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Aliases.php","hash":"042527421db3d536764d42218b6f543f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4E17EE5E\/Tiet95EA0B99\/Tiet92121B64\/Tiet3AFF3F5C.php","hash":"1eeb42d3104f617b3b8ea9ba30319071"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/TopicSearchResultItem\/Aliases\/TopicRelation.php","hash":"1be8539b32ab89cde584be74a3942f7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0FCE66A6\/Tiet71ECC1B1\/TietC3D362CA\/TietD6E970B8.php","hash":"a75cd3d7018c5846d66747b04c23e2ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GpgKey\/Subkeys\/Emails.php","hash":"0d55ff24c1238a5777f223be51da5e51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet93E44327\/TietD0AB6C73\/Tiet62032077\/Tiet6B97FD42.php","hash":"14828b79f5b46f37f616c734c9cfe02f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Discussion\/User.php","hash":"451383dd5495e2bf110c527dc4a8af21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/App\/Owner.php","hash":"5c6ab454ed7cdd26a91f76503eae0117"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/App\/Owner.php","hash":"905a427f3e927cabd28a76586367fb77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/App\/Owner.php","hash":"076c102fbd3787ea21ca87cd729a3e84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertAppearedInBranch\/Alert\/DismissedBy.php","hash":"903402816a9f01371f69d3fe98b11b09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/DismissedBy.php","hash":"bf5a671b1972aa1c224966615a48540f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/DismissedBy.php","hash":"a4eaaba17b8047b7b87669fd9c9d27ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated\/Comment\/User.php","hash":"82a4e7f2e0471c26e8fa22f5fc28b2d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/Creator.php","hash":"d7d2a5fb9ba812c7d5daf22f59452d2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/Deployment\/PerformedViaGithubApp\/Owner.php","hash":"0742bda47d3b3064e35892a619046ed2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/Actor.php","hash":"c4695bb1ad877dc7feca439825a6a9d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/TriggeringActor.php","hash":"2eb8af9d6032b29a09cb7e070cb2820f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/Creator.php","hash":"a146d6881d3e6bab233aac9f6a35aae9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/PerformedViaGithubApp\/Owner.php","hash":"446bccad5719546e68bfc0e5bbebf941"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/Creator.php","hash":"8e14ba124bfd9d265488c63ca3af326a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/PerformedViaGithubApp\/Owner.php","hash":"5fa51207e57ccb35d0321771bd218a96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/Actor.php","hash":"1ed69bfa03941c3ce2468e5de317fb79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/TriggeringActor.php","hash":"2f89765a8d1416c6dd4ae4ef53787dd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered\/Answer\/User.php","hash":"5578dd5dea8854979bd42b4c98349018"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated\/Comment\/User.php","hash":"dfd91a763f928d1070ed1f4f9a83fcd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted\/Comment\/User.php","hash":"621809601d1ae5633268d1012a5cf3b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Comment\/User.php","hash":"ca9370b3f0bebe57111c58bfef887294"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/AnswerChosenBy.php","hash":"36f9dff6c8d62ef8041c015c8096457e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/User.php","hash":"64706dbf4b9a58a5c4bcfc301ef51838"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered\/OldAnswer\/User.php","hash":"a7a55bad3b4444a1703b3c3a5fdc94dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookFork\/Forkee\/Owner.php","hash":"8e5184ec7e24579cd4e6f88adc4ad6c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationCreated\/Requester.php","hash":"21ccad8ae91ddbcef129f1244efde6b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded\/Requester.php","hash":"2fb3e4a9e82ee6ac9e53a25e35e4d142"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved\/Requester.php","hash":"3b4c98be53ea8d2283abf37af717dbe8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Comment\/User.php","hash":"80a3c32704a107a33e987a48e5f59c62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"501d0f78fa450ddd104b56be76e0819d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"a6ced38784874e67dfa4d7f71059660b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"bc57073938ebb73b837a64b6723563f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Assignee.php","hash":"11f119f9247a5b5cb95c1de94aa6018d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"921ad35d148b4e34ac6f209358a6facc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"4e71ef1dd19ca42cba5d02d6dc518818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Assignee.php","hash":"3a6c39908d58bfe0d917548a37cd5815"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Assignees.php","hash":"21554601628e7c41f4e40c9530b4513c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Milestone\/Creator.php","hash":"02506191f749f71ca1696669d32836a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"cfb4da6c9e0af73adeb10715b5b19956"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/User.php","hash":"dd0ef08f4cf74b378c468ec37b7610d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"02c4c24fc874022c44ee19a66c2b29a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"1312fb53a3ef2d196cf2f1469c88511c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"515212dc81c0fa0213f4bf1da719d087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Assignee.php","hash":"82182cfb672f1c904c3050f62e3738ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Assignees.php","hash":"801b66f2314d1eaf3512d0de2f2f7b88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Milestone\/Creator.php","hash":"ba7579f0ae4200ca51059496824ac0d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"998ba424467bae724569a5cc68fa6a82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/User.php","hash":"71f947d3c47765fc0ed1f9608c1a9a77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Assignee.php","hash":"2838163de7823ad5e21ec10a7f5731bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Assignees.php","hash":"10bc3d5b6a011d07a2c50e7ea170e6f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"edabb9ab456f4790d3af30e22516caca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/User.php","hash":"2c36225d54a88bcdd03c665c0715b63b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Assignee.php","hash":"9fd947a6eb66eb49f9ce580b4b7783e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Assignees.php","hash":"f2c7c30b1a65b0f154bc2faca4db3b76"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Milestone\/Creator.php","hash":"602d1f65102beb7cb0843f87fc2c2d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PerformedViaGithubApp\/Owner.php","hash":"8726b60e264644016807cd7e096b69e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/User.php","hash":"374006744093cc71b9450ced75161e45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository\/Owner.php","hash":"35f6b724d8135cbc8d1eaa81ccc451f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Assignee.php","hash":"a3d50090c80ffb70bba372c896724caa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Assignees.php","hash":"fb5b9c7a2786fea005f977f2c4afaeff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"3854c0f63c91ea2299fc4af680be3e72"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/User.php","hash":"3afa2bc9939b00a50bfc1a8f00b25d3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Assignee.php","hash":"52f30b9006b38346140dd4cad5c152f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Assignees.php","hash":"8e184f13d5699290c82503228dfe325f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Milestone\/Creator.php","hash":"4a7acaa7ee5122b611fd1a6e33079bd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"058aa7110f74753f16033ad617206ad7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/User.php","hash":"12242f1676e3b47a8a823c718df07462"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Assignee.php","hash":"f986f373bd9987932732d90facd0c64b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"cc6ce3fb69670f0f2cf5373fe1511d9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Assignee.php","hash":"d8cec0a11210a3b13951f2f0c1d6d2dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Assignees.php","hash":"db63dd4f7bde1ef8df888152400000cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Milestone\/Creator.php","hash":"a84ec4d370c8bbc3d64aeb8d0d768d6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PerformedViaGithubApp\/Owner.php","hash":"d0b83063e7474f51469a2634a6c031e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/User.php","hash":"c6fec5cb61ca3e6f741602431501523e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository\/Owner.php","hash":"1b853350e8e39770d4411bde43de4d78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Assignee.php","hash":"1192c86da436f61a937934207338e6bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Assignees.php","hash":"e8759bd6a95928e80b6ed58efbefbdaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Milestone\/Creator.php","hash":"ba99d3521bf769c7ceea5b69579920fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"3180e1f6758926d634f033cec3233e5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/User.php","hash":"b7759c8aaace69a7fe5ce51560741f48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"ee8d109f9fa1676dcbff2afd9a20c7dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"84494df14c9feb7de0be18b1de040610"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Assignee.php","hash":"62de69817deb712fca17eada1b727580"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Assignees.php","hash":"e43f347ac9600bdb3260fd12ab773a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Milestone\/Creator.php","hash":"b5ebd2eb3def7d3685d729fa73ba9492"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"21e4ffab5ab092f9cbac51efe875b205"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/User.php","hash":"b3ccacac4c6fb538e6fb7121a9935e97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Assignee.php","hash":"355be31da14b128b87260e4ca8b3b2c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Assignees.php","hash":"f9f73343ef3d9996368a1e6632b6f9fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Milestone\/Creator.php","hash":"e610f4ae841dd5b06b932e6e17faf4a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PerformedViaGithubApp\/Owner.php","hash":"2573f528acc01bc06494ad44963c9cb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/User.php","hash":"18a1e6655ea7a7a20772f604d517f06d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberAdded\/Member.php","hash":"c21a23089da12cdbb2d9ab507137c878"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberEdited\/Member.php","hash":"05c35b860713659adca8338597e98cd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMemberRemoved\/Member.php","hash":"67896c634ca56cbb6c17280c0693abd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Member.php","hash":"ee8125eb6f19d46a66535e9daffcb723"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipAdded\/Sender.php","hash":"be189ea14c7c7fb0c001831b68b81916"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Member.php","hash":"5ecb1374c3fe42bc643f06502f4cd11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Sender.php","hash":"14e21bbd6c111cccba5edfc61a1db545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneCreated\/Milestone\/Creator.php","hash":"5bdccfd84d35660e1e5110da2775b7e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneOpened\/Milestone\/Creator.php","hash":"2bc03e64139a6ca65be56adef29a320f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockBlocked\/BlockedUser.php","hash":"8bdb29049c8079711b2cfb2dff794ff4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrgBlockUnblocked\/BlockedUser.php","hash":"3c9192638a4e83c817b3fb6e95757d7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationDeleted\/Membership\/User.php","hash":"44450e4804ad9eaceaa334c531834437"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberAdded\/Membership\/User.php","hash":"12164c8f3f7beb7686e141f43de8d8e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited\/Invitation\/Inviter.php","hash":"ebd3fcd97edb4acfef149095eed8672a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberInvited\/User.php","hash":"29b95aab6f3d32f3b16fad8c44e79990"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberRemoved\/Membership\/User.php","hash":"f89f9c16830d37ce64ac00cf6cdfa94e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Membership\/User.php","hash":"f59e1bd51ae1fce84c7288f9d972cf7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/Owner.php","hash":"7e2fe6062698cd8f39521742101726d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Author.php","hash":"b64275d961e93e82b927917f1729352f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Release\/Author.php","hash":"5b6edf9eec4b0bb61e3fa91a08f93b38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/Owner.php","hash":"9beb431378f9f62302cb9274dd2e35a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Author.php","hash":"3f85a955c03e2e8b9ed82b50c1296059"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/Release\/Author.php","hash":"ce99e2ec7d9e32169df463035b4049cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPageBuild\/Build\/Pusher.php","hash":"d5512a4fb83754bad69e36a174fb0e3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/ProjectCard\/Creator.php","hash":"573e977c5f540d9ea075e0f8bb4eb5ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardCreated\/ProjectCard\/Creator.php","hash":"fbbc1e6e0e5646bd7d835611336d99a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/ProjectCard\/Creator.php","hash":"31d28f5e00b5fa7b8c184bdde0100cca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectClosed\/Project\/Creator.php","hash":"02f07651e02747c78beacb02d44292a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCreated\/Project\/Creator.php","hash":"5f7c35ade2aa3053d4a2a2e9fe153ef5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectDeleted\/Project\/Creator.php","hash":"b8b5637df2ee034af96fd0c757564f19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Project\/Creator.php","hash":"0c02652368e721e0232a4eb69fdcb359"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectReopened\/Project\/Creator.php","hash":"1e4282a042a1b4073cd0992433969b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/Assignee.php","hash":"24261fc50d8b1cfc3581d6ae8322c29e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"fa497159536c4051b1af52643bb07c9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo\/Owner.php","hash":"b57c23a16191af63b00855ac07ed39a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/User.php","hash":"c4391c77ac39c5f1b7ddab491a1da641"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo\/Owner.php","hash":"8c58940001788f0c288a0142c3173873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/User.php","hash":"62ac3a6ff33a7f5951045449594e49d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/MergedBy.php","hash":"5a0d7c30bd83c0a3253f0a2407c5716d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Assignee.php","hash":"5aca81ca2809ca51225a5e272d6aff99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Assignees.php","hash":"8c914bf5ca53d7999851931cb3e6a9fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"df93a5aeb7ded573a6c7065a1dacd9af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo\/Owner.php","hash":"f182002d16e8f50634da7f25b22472b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/User.php","hash":"9920974ff2fe7d7a866eb65bac5eb958"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo\/Owner.php","hash":"c020a0e32ad6e41e5fd77aadf4b40bd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/User.php","hash":"74266634f37d4c45c76796f48557b8b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/MergedBy.php","hash":"1a70f0e38bb8e97f5e0a02c7e45a057b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Milestone\/Creator.php","hash":"08c2af5bfb059408d9c42c684c7e71e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Assignee.php","hash":"23b440f08476fcc8b2e0227ec0134cb7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Assignees.php","hash":"e187cdd347fac42f6882b40a1ee66b60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"9016390e24a0fd0bebbbd8af4159ea99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo\/Owner.php","hash":"670f0437f38a66491a9f068724de829b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/User.php","hash":"ea8dff308df914ebd9557b190e4edc93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo\/Owner.php","hash":"cd66589ca6232e97375f2e9eb8093130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/User.php","hash":"ab871aead2975f9d28a4cd4b8e2ce71d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/MergedBy.php","hash":"8e293eb8d38fc417b5f1b5908fd16c05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"45c8c63bfc24b018b5081c5aacbea898"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo\/Owner.php","hash":"0b834b2e992abfcb35a5c3fdb583fd6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/User.php","hash":"6ada080431ffa7ee16287a72028b3a3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo\/Owner.php","hash":"e8e703a23b600c29be2c5b8985aff341"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/User.php","hash":"f64f509d52b6f28fc137cca7c841d082"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"da239d7d74fa9fbb1dc6d6a248e4a94f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Assignee.php","hash":"ced41ce3f23fb33cb50a7103f4a26559"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Assignees.php","hash":"c0481d9ab3a2cabe84b2aa6123e12b54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"6132794fd75d72f19cad0e8fcc796575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo\/Owner.php","hash":"d76624cc9c86a7d350d8f10ae279d57a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/User.php","hash":"9e1cd7a4606a2ff4557050b1bc048c89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo\/Owner.php","hash":"4090c5c6fe218c9e929bdaf7cf0e1390"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/User.php","hash":"3789b57217948fc04b408e94e78ef406"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/MergedBy.php","hash":"62fad9b8c32e5e6d4f7338cb9321e67a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedReviewers\/Zero.php","hash":"f263136460f30aef689cb35a12992b34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Assignee.php","hash":"ce22440a8d75acd7be3333db6497f769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Assignees.php","hash":"2d07a7889998aa2d22791311161c0046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"e8c8b6afaad9b94ceacf3cf8dbe43559"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo\/Owner.php","hash":"1a8163c70add1bb64ff16b297cf5237b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/User.php","hash":"eb60bd1860a805306d85745547604437"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo\/Owner.php","hash":"a661829eec53445c1805f0b00105f414"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/User.php","hash":"44be4b39c1ae6fc79b909ebb77396b52"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/MergedBy.php","hash":"e9c6781a3b74b92299cfcdfef504ade1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedReviewers\/Zero.php","hash":"88834efc8924e684b9ecd97019617ea9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"ea679a95215977dd5dd48a2e4dcb0110"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo\/Owner.php","hash":"5857614b64f29512abceec38af0b39a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/User.php","hash":"ecd2078bcd2c7f465bbd25bfb86212fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo\/Owner.php","hash":"df4c3ae66bfa3344d0756511bb730795"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/User.php","hash":"435210893a460e73a8f65ee8d608de25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Assignee.php","hash":"4e92c52d93d14df33b217c15b6a3bfd0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"1c0e16c541389b6cb72e166d6dab894c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo\/Owner.php","hash":"2ff8104c486fbc7f52719ad8f3554a6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/User.php","hash":"7c85e0148339ebbe949434c9a5f68181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo\/Owner.php","hash":"b955e3795fb1993f9367f64274610a00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/User.php","hash":"8656f714b444a9ed09a9a2844813301d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Milestone\/Creator.php","hash":"719077a0fa7026ebba028d7b89a23ae1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"79be168a85ad844867965031c7824de3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo\/Owner.php","hash":"2c7b83758f4026452a744b7e9ee309ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/User.php","hash":"0a23abcabe70a5ea77088447b48794bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo\/Owner.php","hash":"c09c33089fa692295655683a9c051082"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/User.php","hash":"f453d87a736fc6800c881e165b4697ff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"130b3cfa3cc2595d1d3eaa2f07706e87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/User.php","hash":"114a74ff0f160525f2804074a20e7ae4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"578d280e010a6d28ea320da46fdf6114"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo\/Owner.php","hash":"c23bbc16113237f8404391a86b389a60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/User.php","hash":"fde44044652f1adf6e62d07d82127070"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo\/Owner.php","hash":"7e4b36afa66f78ea74dc1f62f1307bfd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/User.php","hash":"2a2f9c30831c4ddb54b36c6485fe5f61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/User.php","hash":"2f81fe371d42b34eae0ad596cdcca879"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Assignee.php","hash":"7242737c33009372251cc0c9ca735f8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Assignees.php","hash":"651002cf50fc54cca53c307dd9d45c88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"a62dd263993e497baf76d313e135cf0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo\/Owner.php","hash":"0bc67087fcc865fcd9672c7cfc548778"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/User.php","hash":"0416ad0ea33f8173e6ed4a8835a6d43e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo\/Owner.php","hash":"f9cb728b44d52377a55d2104d9579c8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/User.php","hash":"d494da9206c149fd27abda58eca2a8a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Milestone\/Creator.php","hash":"63fcb8ec857a19a0a14886e97ce8f553"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedReviewers\/Zero.php","hash":"4763c9c6c4d3831f540378ea79629139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/User.php","hash":"703b71dca47f366083bd2af6f742378a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Assignee.php","hash":"9d005d4c0ee826ad08cb9eedc2672e0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Assignees.php","hash":"cc3bb3825ea7c8e1215fb19f3996d635"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"ca61b8ca7ccfd5c22096297b328307be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo\/Owner.php","hash":"78aa31ab076346f924890bbd62900f58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/User.php","hash":"d9c1dcb5835bd21495f304aef9595d37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo\/Owner.php","hash":"49f52ded570653ad39dfb44a67f37879"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/User.php","hash":"5316be23dd53226d3075421868402f2f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedReviewers\/Zero.php","hash":"68e999ba1d0d2b191b0d00174cbf90df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"7647a0259c0faaf94d26be7a831242d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo\/Owner.php","hash":"a504d74562fd320cb0c8e0ca1341a0f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/User.php","hash":"eb0fd590db04a6166942db72d26b95ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo\/Owner.php","hash":"746aa280000f34851053b776e4816003"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/User.php","hash":"478343c1cb316ffb71fbff5753e50062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Milestone\/Creator.php","hash":"2641297be6cb51f46ea4d9e60807dbb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"7779baaee7c5a160ce20b9f85e2db673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo\/Owner.php","hash":"396a37c4b4829e05224217f47df720ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/User.php","hash":"1feb315e441bfe2ea4015bb091e5e409"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo\/Owner.php","hash":"fa280b06b755dddb8ec03736d3d9272d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/User.php","hash":"a619cf0c3bb1f494227d8ebfca587e93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/User.php","hash":"3f85c86620349ca475f190e96179ed6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"21188979a438989016033e29137689f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo\/Owner.php","hash":"4ddcc22791a20ab0246c5c469914d52f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/User.php","hash":"b9870fcc8eee2f82b3dd71cdd8e69c30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo\/Owner.php","hash":"1d7d0088fc65681e2274599d4527324a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/User.php","hash":"676eb6cdb3833da0afde34aa87facd23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/User.php","hash":"ba2c4b331dc3039cdc6b20a9caaab0c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Assignee.php","hash":"7001b018043026f0cfe8e24f53c4abe8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Assignees.php","hash":"15ab0ab0c79b9e5c46c5c45178563301"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"4f293e77489a367a2c4f2367aac6bd50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo\/Owner.php","hash":"e149797e41841dc8adf6ff0b2b56ced4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/User.php","hash":"a120d3fb41acb98e40205b0e4a9f7337"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo\/Owner.php","hash":"7afbdd5584fb21909fff7ada2becc3f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/User.php","hash":"ae94e90fd35242b9b292f26b2c03d85a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Milestone\/Creator.php","hash":"3a389720d4527e1c5ada64a09ef736b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Assignee.php","hash":"02aeb57611a503e0bd44bea30249e749"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Assignees.php","hash":"67848a912742b68a350e8921b3774439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"60ccf9d72d7c90e25464d76f9fbd7a14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo\/Owner.php","hash":"869e33f57a09f8e255b146dca85766c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/User.php","hash":"dd41d9df89cf0fda9cf97f97e874ec11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo\/Owner.php","hash":"888a40447641acfb6c20ef1734f2ffc7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/User.php","hash":"5e076d584284cb81b77135ef814e352e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Milestone\/Creator.php","hash":"fe486fee2167980e0b807d4bc1663231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedReviewers\/Zero.php","hash":"acc39e3928949d32ebe9521cab8ffc81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/User.php","hash":"7c2bd23c5dcb71d5d274d9b719a1016e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/User.php","hash":"bf316eee28c2a56fb74e645a3a20c8c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"8f0ae8baea26cbfe706e8f5a7e97f9c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo\/Owner.php","hash":"711a3fa5c81b51a9c488275ad00f14d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/User.php","hash":"26eb82d73d512db017ea4fcf99d86472"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo\/Owner.php","hash":"4f3bb29b90ded68480186dd3a23bc35b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/User.php","hash":"abcf61c30a77d68fb7dd4e24a6f81414"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/MergedBy.php","hash":"baaee83f1665c352ef263bc0d17a18aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"c0835e058f639f0caed01682a3ca557c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo\/Owner.php","hash":"b66614172400f5e8791d08765e4c9ca5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/User.php","hash":"6a8319961693a7093cf3879a9488ecd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo\/Owner.php","hash":"e532f4cb50e8bef527c2bffda7ca3680"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/User.php","hash":"ceda7802514da9807063deb28e318c3f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"054950b61ba80d917b3bfaa90c05baf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo\/Owner.php","hash":"0dbdea21f9b865a79499440bd7a0a171"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/User.php","hash":"7e85e71ec2da09819d56931b17b8749e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo\/Owner.php","hash":"0b6928102f0e7e520f37f8f97c3a53e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/User.php","hash":"158a5ae5d1e3ec1625ddc0a2ba72560e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/MergedBy.php","hash":"86490104ddda566ba21ba99cf7e1a0db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Assignee.php","hash":"05bdd667ba63b63d52fcf78976345439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Assignees.php","hash":"75fbdeea97267e7776380cfe399e050a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"e2a94d3e5a080d790f99b6649020a133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo\/Owner.php","hash":"9d25b3ad8626a632c45174e72535df95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/User.php","hash":"4ca855f3292c61a16b0e4d264af9ad0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo\/Owner.php","hash":"6902e1e187995ebff8fbee306831f3f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/User.php","hash":"eadb1f546ac9f1da0a1c59f325468500"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/MergedBy.php","hash":"4a17953f2ca36deed3583c1875b157f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Milestone\/Creator.php","hash":"fabdbac3540e560bdba6b3e339dad1a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedReviewers\/Zero.php","hash":"cd71e9e767c13413ccbda5160a2af2fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/User.php","hash":"1c81f278abce82c1388f0a7d6bd953bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository\/Owner.php","hash":"4719873dfe2ad638309c852814c20ff0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Assets\/Uploader.php","hash":"54075f7fbd8a14a587c69bfcf09f717d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Author.php","hash":"906c56d50640ec3242d7dec45509cae3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Assets\/Uploader.php","hash":"3d69e9ea571a9c7c95c78564660ac81c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Author.php","hash":"a3a27e0cd7e30a5c03604dbb6491fb6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Assets\/Uploader.php","hash":"3a0d7443843ea6e1a5411bb5a8c5bde1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Author.php","hash":"ca8e3469da04c7b5187023a91a8283c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Assets\/Uploader.php","hash":"0171271cc35a60cbca71393e97c4e784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Author.php","hash":"51d3b4ae448691f3c8d8561bc40fa5fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Assets\/Uploader.php","hash":"794f91062933155cdfe5174325fa64a9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Author.php","hash":"63c782ec83386662675da862791abd53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Assets\/Uploader.php","hash":"c9c2ebd8b91057d765ffbe9be7c75ac8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Author.php","hash":"1323ed8a55fd53eab0dbd52bc8ad28e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Assets\/Uploader.php","hash":"b937fd9b9fe96d642be8aafb7b8a5be2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Author.php","hash":"109bb84a403df9cbd885aeb12f014931"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryTransferred\/Changes\/Owner\/From\/User.php","hash":"4bc0475a555b72e7544d8f2aa2353d7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertCreate\/Alert\/Dismisser.php","hash":"e7e1a661b9614824aa856474033d9340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertDismiss\/Alert\/Dismisser.php","hash":"376fc5ad1e07f92880d8f3070ac45106"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertReopen\/Alert\/Dismisser.php","hash":"ecff25da103af64d765d77310b8ee54d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertResolve\/Alert\/Dismisser.php","hash":"0f12344f45f5616e348acf86cfd897f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Sponsor.php","hash":"6b8abd52e921957204bd636aa5435272"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Sponsorable.php","hash":"fe09ed62b7507e1a8021ac3b5950f448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Sponsor.php","hash":"10165543c1779b74e776036d5ad252ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Sponsorable.php","hash":"b88ef00ee3104550837c18a561421c7b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Sponsor.php","hash":"56bd0610fb9faeb5cd53edddd888e06e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Sponsorable.php","hash":"0f7b100340416b8f316436a3f9f75e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Sponsor.php","hash":"b03a41d4535307014431cb64a82cbcf9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Sponsorable.php","hash":"df8f8f8b618ec4e0fd00a416eeeccd2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Sponsor.php","hash":"f79e707e37df365caa2882eec0b1520e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Sponsorable.php","hash":"ad9f941b99e844fb4f70ed5cd2c05a08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Sponsor.php","hash":"eac2c688a2083b7a237b987853aa70f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Sponsorable.php","hash":"69c1d38207defb77efd54276b6df85b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository\/Owner.php","hash":"ce8b3e3853224b109182ddf856bbdb0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository\/Owner.php","hash":"f11988409e695101f8d876b5fc875184"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository\/Owner.php","hash":"7772967ef6edfc38e172558431cbd27b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository\/Owner.php","hash":"b9260cf72ed32db936f0e5be5c3ead21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository\/Owner.php","hash":"a94c89dc06171cf5058928e75c3183fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/Actor.php","hash":"70ecde93120fa6e549fcaf4de0919ec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadRepository\/Owner.php","hash":"1e281292a510a4d3213d9625a5ae202c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/Repository\/Owner.php","hash":"5d81e8ff0a029f0e6f07182e53123417"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/TriggeringActor.php","hash":"8724a6e805eaac57ddbb9a0f7a744b04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/Actor.php","hash":"014bb395d7e6e9c177099b5cd2ba0b37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadRepository\/Owner.php","hash":"7428927965f0b0f913c3bee4b2018c9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/Repository\/Owner.php","hash":"2ec152828dd07033aa8646310b971ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/TriggeringActor.php","hash":"4c14daac1a902b2b6690d74abcc5d2a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/Actor.php","hash":"a581f233198a12b602c958b59a0ad291"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadRepository\/Owner.php","hash":"e70715c18b2e1a8cfec3ab2825271b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/Repository\/Owner.php","hash":"3233a40a5229c05c7bd1b421afcde94d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/TriggeringActor.php","hash":"a918eee8dfa287b84948ea49b9ed4a34"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet789E2F6A\/Tiet7FD1DA54\/TietDAD16BC4\/Tiet25B29EDD.php","hash":"cad9b5b2fed5ef5ae00001212ad21ff8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCategoryChanged\/Changes\/Category\/From.php","hash":"ac5a56432b8b6a105a7e23337d78f844"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/Category.php","hash":"ed9dea7ae18e81dfad66c86741fe449a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet559AE5A2\/Tiet1A070067\/Tiet14156653\/TietD2E15261.php","hash":"49e779ae6b99992bb0c015b308f3881f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCommitCommentCreated\/Comment\/Reactions.php","hash":"62973f5835eb1477a8ab88f0ea1ae3b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionAnswered\/Answer\/Reactions.php","hash":"fa77f0483dd5a7c395053c083aa61340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentCreated\/Comment\/Reactions.php","hash":"eaa20a2d363006767486d4b46ed7e1b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted\/Comment\/Reactions.php","hash":"86b50782f1d296898e4fb0417b523beb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Comment\/Reactions.php","hash":"1f481ddf335b865bcbb4922ee5ab4aac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCreated\/Discussion\/Reactions.php","hash":"29f095bea0b699b139f4a8706c452140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered\/OldAnswer\/Reactions.php","hash":"59b70e5f0f72e5a4755afd960794368d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Comment\/Reactions.php","hash":"59ed2a2dc1439239e9d2c04513a47e44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Reactions.php","hash":"c48043d6a42bfd0b9de5b5876dcd5439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Comment\/Reactions.php","hash":"d3875c2ec9ae070c16a973476c703b78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Reactions.php","hash":"9ac30515023d2cb33d3266f2fae1e8ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Comment\/Reactions.php","hash":"604a1e607f4093d793a1856ee82bd63b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Reactions.php","hash":"8cafa6c7381c39bd3443e1b7e9dfcf46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Reactions.php","hash":"96c66af4b3f7ffcfe49a9839cf5b703d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Reactions.php","hash":"75985897bf299241d66552cb578364c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Reactions.php","hash":"cc5d97abd871002b4869911f96fe9878"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Reactions.php","hash":"25edeb01086c5c0937eb7adb890f2fca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Reactions.php","hash":"26491c07d63c985f34dffdf7e99d96e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Reactions.php","hash":"0ebfe6a9e843d9b0d714c30f6409bbb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Reactions.php","hash":"af074dfed116eb295cd23e957a0c721d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Reactions.php","hash":"0346f0bc3cd345b4df48bb7be7cc22e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Reactions.php","hash":"fda76cfb22360f3062fbfb1768aab13b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Reactions.php","hash":"fb93725fc11b0b8f09061f7334f252c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Reactions.php","hash":"341fecbe19a95418b879f9610ea91b01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Reactions.php","hash":"cadc63fbe3bf96bf04f0890ebe7d2d19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Reactions.php","hash":"60c922938c34664d28b8d190454a3497"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Reactions.php","hash":"83c64d23ce004b18d5ebbb3e98bed5f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Reactions.php","hash":"0028452f6fe6f8b485b4c1b70521e7b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Reactions.php","hash":"99077430f2123d6f9c243d621fd2379b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Reactions.php","hash":"56339d111d8130d8865ab3309b1a079e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Reactions.php","hash":"01f5c13b2f681b31beb17d93a8c00fbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Reactions.php","hash":"975f329e1c09b4b6f28e811d6f536e73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Reactions.php","hash":"858e818e9275e4da3c31b518e49baeaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Reactions.php","hash":"c83bff792e1f1216f96a6961a3ffd5f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Reactions.php","hash":"cb15b56415ac4eb56e1713c37913c86a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Reactions.php","hash":"79b59209affb219857421a6727cd3928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseCreated\/Release\/Reactions.php","hash":"0f46402a978f3e0a399c6f8ebabf912b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Reactions.php","hash":"5880202f6230a1a87b1d7fa6de610747"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Reactions.php","hash":"1962c7448cda47c6a0ece2723911d98a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Reactions.php","hash":"afff959600c039a41cf7010f719e4b18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Reactions.php","hash":"a6f9af4d1b767481f43058742e6b209b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Reactions.php","hash":"294f0222a4d38280e93cc9222295b8d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Reactions.php","hash":"e5574b618c9dea6322c9ba729f43393f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2E0BA6D5\/Tiet0526ABE6\/Tiet815D358B\/TietDD2CEF24.php","hash":"be61acba456a909f00739b61473bd45c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationCreated\/Repositories.php","hash":"a7a266ceefb66399f6df3a28091c2b25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationDeleted\/Repositories.php","hash":"cde004ff6ff5c70b4dff82856a6d2d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationNewPermissionsAccepted\/Repositories.php","hash":"29508bac7033920af10025814de0c0bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesAdded\/RepositoriesAdded.php","hash":"2f3a07778f52c51fe2a8701d001cc38f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved\/RepositoriesAdded.php","hash":"ade89c89f6246e6e90b8072fd2d15aa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationRepositoriesRemoved\/RepositoriesRemoved.php","hash":"f08f3f8d9f2bb16b31dc22658b2c64f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationSuspend\/Repositories.php","hash":"c2e75905c61b645e60ccd969428cf2d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationUnsuspend\/Repositories.php","hash":"b89e3756489668d9abdd884308e28095"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleDeleted\/Rule.php","hash":"7eea18aa9e438a4a24150a46bd202bfc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Rule.php","hash":"caf47e975fd54983b209a5b2ae62ee9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF72F794E\/Tiet2732DFB6\/Tiet73CCB569\/Tiet295F5040.php","hash":"5ae198bb970a2dbc52e65fce2bdbe921"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AuthorizedActorsOnly.php","hash":"85dc31d694dccb7f8f3352735174e762"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/AuthorizedDismissalActorsOnly.php","hash":"03c0b89d8e3aae3497588bc243c8d0d0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6229AFD3\/Tiet64100D1F\/Tiet8D5C869C\/Tiet17A05C57.php","hash":"5da674ff19c305d540707fd734d27d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/RequiredStatusChecks.php","hash":"f952399b41bffa5a846c9ec686579867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6EB176F6\/TietA0BEAF77\/Tiet2D79F2AE\/Tiet70A0066C.php","hash":"0bbf554e5cac1e4720f79d3921659c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookBranchProtectionRuleEdited\/Changes\/RequiredStatusChecksEnforcementLevel.php","hash":"79447f0aa7ba8f9e0e419f939fbf5ba0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDB3B0EA7\/Tiet7D168182\/Tiet903938E3\/Tiet5938F560.php","hash":"063a9cfab85cb0a422a760bfa317df33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/DismissedBy.php","hash":"c7dcb96bceefa17524d9c3d24f63c1ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata\/Labels.php","hash":"eab2f96ed2278336a7e21aab65c8f5dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/ContainerMetadata\/Manifest.php","hash":"c542b2534ab94d1b242326cc1ef9020d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Author.php","hash":"e4807f3ae4dff7c9464c9e514e81fb00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Bugs.php","hash":"6b2eebbf5ef0dc911f1278d982be6cf3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Dist.php","hash":"5b30a214b52ed3e89cb2511e03291036"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Repository.php","hash":"b9bbc0b9468fff5c5e481a11a0c9eb71"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NpmMetadata\/Directories.php","hash":"d7826de0b78284a9d4bc73dd1f4f0cac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata\/Labels.php","hash":"fd784710ec61dfd0595e7fae43801fad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata\/Manifest.php","hash":"926d9ece97b858d861086fb5b47899af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/Registry.php","hash":"e08e81694aded0e9d287b92fa5083430"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet25C17AEC\/Tiet41436361\/Tiet00E963BA\/Tiet6FAE6C79.php","hash":"07eb4265e1bbe9a29846cd103687aa19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/App\/Permissions.php","hash":"e0cd33ae59248436bc0a3be4c9db39e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/App\/Permissions.php","hash":"e24ec6a70366a90ee8318647c9e8cb2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"1d8b32fb74a6dc486c3200dfc3006c49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"53a72f6b68121e6f0416c686d3942a15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE8FBCC67\/TietC1B5057F\/Tiet473FA20A\/Tiet7939956B.php","hash":"1da1158b1920ccac08a864daa4d24a01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/HeadCommit.php","hash":"aa2d801683e2ca30d24fd7b0845650b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/HeadCommit.php","hash":"8820a5d334490d0486f67163910bd617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadCommit.php","hash":"080b62d3791915f2786bb49a5eada062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadCommit.php","hash":"9c81c3da6b002c1e042bc7eaf10b8a13"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadCommit.php","hash":"b5c3e28b0531a23461667c0a2cd12e15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet826D3904\/Tiet8B9E90A6\/Tiet09260A6C\/Tiet25135A2F.php","hash":"28bbf0f27485b34f8a8477d3694cec5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/HeadCommit\/Committer.php","hash":"d55b8e27516bf7274647a00514847048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/HeadCommit\/Author.php","hash":"c7d7e7996fd445779bfa77df95b408e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/HeadCommit\/Committer.php","hash":"80edb9602a9e34d830f0c7d8e388f167"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/HeadCommit\/Author.php","hash":"cb428855cc7fc84d8b6c6e13baa85d64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/HeadCommit\/Committer.php","hash":"8157a5f96404fcd3d3563d8790819256"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Commits\/Author.php","hash":"13550bcabe4ec1b29289737a3e7ad65f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Commits\/Committer.php","hash":"3b6a46fc7622df17b4f6b8bc68be93b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/HeadCommit\/Author.php","hash":"62c2c43b25ea37952eb3d72626888a21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/HeadCommit\/Committer.php","hash":"3707148675adf2950c79de856ad9105b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Author.php","hash":"74c6c4c5245c5145ea1a905e1a7034b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Commit\/Committer.php","hash":"255715a5e935f2a686e7dd05720b518a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadCommit\/Author.php","hash":"d473e78c5759dd41f505cd81dbeea519"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/HeadCommit\/Committer.php","hash":"4de3f10d5ef306fe8a10f2a2f3704eef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadCommit\/Author.php","hash":"f204d9318609441eb5f08f78def59d41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadCommit\/Committer.php","hash":"d597508f3b783a0cfd6be572c3b7ad39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadCommit\/Author.php","hash":"5d9225a65404168bd79f61b38f209703"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadCommit\/Committer.php","hash":"7ea933eee1ab588bcd888bdf88442b2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFF56CC5B\/TietA763EEA7\/Tiet71AA4AC6\/TietF5624593.php","hash":"bb6b3289519d3ece7f445d35c43508b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests.php","hash":"34015aa6c47d836ab4bbcc49a9cf8721"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests.php","hash":"0c7e2902dd303ce59ad02af715cae231"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests.php","hash":"677fa9f05ad8179bae82f5c5b03ae232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests.php","hash":"94ef8e9efe3ff96572f5767da7a38d1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1E9DA6AE\/Tiet37F593E0\/Tiet3EF4891C\/Tiet79A252FC.php","hash":"b52f20ff71705531dac6990aec7e99e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Head.php","hash":"6410fbdc15effa5b16d54c5a2790bfd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Base.php","hash":"b1ad0b28a5edbc90cbe3ebc889d162de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Head.php","hash":"7302c6f05e2d660efb0c19429ee9559d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Base.php","hash":"fa9ac6167e7311cca76798917f27c5a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Head.php","hash":"9ad17f61bac4135542ef9106971d3324"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Base.php","hash":"d861f284d9ae4873bbf4457103343870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Head.php","hash":"8da0696f39016e3a245062c83d57bc1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Base.php","hash":"1c57481441f3b97100a2f7800492d8d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Head.php","hash":"30f502a2b9a26757219c87e5fef016db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Base.php","hash":"c495fbcdfc71b2bc53177f1ebd4ded31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Head.php","hash":"23ef474823cc76dd063b86c8af7c32a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Base.php","hash":"3ec3b4c30f1b941d2b1ee255bb76de50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Head.php","hash":"1fe81f0f3bf5e3be5c88b1308142aa64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Base.php","hash":"bb41d062e233c09545ffd3778cd8a3c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Head.php","hash":"4b29d4298fc7b054297b35683280ca96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet5C961863\/Tiet8BA1DB48\/TietBD941DB1\/Tiet93572200.php","hash":"7acbdc9883db7e0bc8469df6734b07e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteCompleted\/CheckSuite\/PullRequests\/Head\/Repo.php","hash":"19a9708f4ef6d9fbb281d347861b7fae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Base\/Repo.php","hash":"b3a330d9f00689f8ca24c154b24e6271"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRequested\/CheckSuite\/PullRequests\/Head\/Repo.php","hash":"4ed5bf30ad4c4e0faca3ab94b2a742e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Base\/Repo.php","hash":"abfd1c7e1eb28cdd1539e4f008e5521c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCheckSuiteRerequested\/CheckSuite\/PullRequests\/Head\/Repo.php","hash":"a55b47e8ba98e8586feba9d05549396f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"253b4e94f21fad62b53f931bd7eac68a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"d0580097722b9984ada1273de47f8514"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"2a90e9b4f549e256b5cd84de725b4a8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"a6dd7c05c65b9b133101aeeb1dc960c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"af66e43bcc40db910e8f8cc444e7780b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"8d80a90e021f0c1bd89177cd58f4bb68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"d001bf156cead06d329c2ef048bf7976"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"4b52e1cd841ef048a313fc9c5672145d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"6da06717fbee2377461d4bc96a923cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"3eac389976568bc47c67fbd0814bf4ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet243E32E7\/Tiet425E3FF1\/TietF384E47B\/Tiet16830F80.php","hash":"b3a916038db5d853a3b47bb0c93a6eda"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/MostRecentInstance.php","hash":"d64f164cbeedd6ad4ea37abeb4736701"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/MostRecentInstance.php","hash":"b300e1a837698029fc88cc0a608ab4f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/MostRecentInstance.php","hash":"6cfe4d7bf07c7610eb365126e25f9864"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/MostRecentInstance.php","hash":"d422fc51f49c8eb0f1bf79edcb7de886"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/MostRecentInstance.php","hash":"80a270a4e11cb9611957f03a62690d82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet32813F20\/TietDD588E2A\/Tiet1D094202\/TietCA3AFB31.php","hash":"f281225a384040ff23bf1434c963614d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertClosedByUser\/Alert\/MostRecentInstance\/Location.php","hash":"4feb3de22646365d9975fb98e8255f96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/MostRecentInstance\/Location.php","hash":"76f46527bfe16947e7ce7c19f8100fa0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/MostRecentInstance\/Location.php","hash":"91b605caac9833350a00bafcd0a8a0f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/MostRecentInstance\/Location.php","hash":"8af4fd14650552662a5eeaed795c5b9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/MostRecentInstance\/Location.php","hash":"8c5752a336406b80110cc493ba8fb620"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF1752FF7\/Tiet180113F4\/TietB5C2D6E5\/TietDBF88893.php","hash":"89cbc729e21c448a30e01560e71d6687"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/Rule.php","hash":"9e98dc730f2dc08689551acd85635e06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet382BF337\/TietB6C2B5A9\/TietD89D0676\/Tiet80A33F9B.php","hash":"4c7de5b4d6b337d39c68cf59709e0202"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopenedByUser\/Alert\/Tool.php","hash":"4cd1338878ce940e137277daa80cb5d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet68F621CA\/Tiet1BC17E38\/TietE93CD08C\/TietADDD8B6D.php","hash":"71d5e179bb986c1220069a32a0b37cbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertCreated\/Alert\/Rule.php","hash":"8f1d1151c09971bf0b3108bd6bfd6786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/Rule.php","hash":"5118bb03e2ac74e58c3d3f9fb262f02d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/Rule.php","hash":"db2527ede4f60eadaf81d4885f8b662b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet53741246\/Tiet83068993\/Tiet3F5D3F92\/Tiet54B2E690.php","hash":"d386f3561673b4b187f5806c3edb1919"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertFixed\/Alert\/Tool.php","hash":"d714b00904d3393a82db1953a9b4f4d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookCodeScanningAlertReopened\/Alert\/Tool.php","hash":"cc3f0552651b8f1f3658d8d7deb04175"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeployKeyDeleted\/Key.php","hash":"008e62238d210a4f3af042fafadafacc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookDeploymentCreated\/Deployment\/Payload.php","hash":"d6da100de76132fe9a09ec43a9ca3a8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4843A1D1\/Tiet865DF190\/TietBF72160B\/TietFD131312.php","hash":"8e5f22bb2768d11dad793afcbe78e39b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/PerformedViaGithubApp\/Permissions.php","hash":"ff69d381415e1ef21a7a8799dc479da9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/DeploymentStatus\/PerformedViaGithubApp\/Permissions.php","hash":"7e722e9d970b85b5d97a46aa77222a2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"7568886012aa9d1968d324982efc6834"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"3e63b8817aacc5c31fe7afe11bb26cff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"481bcdb0299446ca7592830d6bbd139c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PerformedViaGithubApp\/Permissions.php","hash":"4bf3d6dce182a301a8839800b0c69c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"a98cfa2ab5c5d137c17b6e39967f37c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PerformedViaGithubApp\/Permissions.php","hash":"74d609c7bed85def06c0b2669263a827"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"c164827e33a5d116df405c5e8b56fee9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"f20bfc0db9257e4bd314924b8b7c67aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"7163ab8198c5f37e11c70611ffeb2a19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet71EE8BC3\/TietFD9D2172\/Tiet416BF83B\/TietD2AF103B.php","hash":"51235f0faa9602cef64338dff059ded9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/Workflow.php","hash":"3ca41efab60ff213cc8a7a833c45dec8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/Workflow.php","hash":"5d9c001a23df5b49f64f4ef3b2e92f79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/Workflow.php","hash":"fa941f2b8b284acf6395b336fa0ed797"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/Workflow.php","hash":"cc27c1d7a6fd55d4ed4aa2b7b5aebc45"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB93BCA5E\/TietE4DA40E4\/Tiet6DC94A0B\/Tiet72FA76AA.php","hash":"98afeda9d0a4a29b6769f1c0387d9ed5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/Repository.php","hash":"5aab156e5ca66c2894baf77819c7ca5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/HeadRepository.php","hash":"fa9e359259ba3b37869f02389ab6aad2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/Repository.php","hash":"fc346786ab4050ae4f8a1b71fae2909e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF9F083E1\/Tiet067C6DCB\/Tiet2FB6AC3D\/TietDB318BE9.php","hash":"ffa8659cfcb50732f9b35df46f0a90ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentCreated\/WorkflowRun\/Repository\/Owner.php","hash":"b9cb396cfc3e246d481631cf9f7dffb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/HeadRepository\/Owner.php","hash":"c9885d92d8f771bdf9939a57d6437e49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/Repository\/Owner.php","hash":"b142c33f11adba5e91ce8f1654cb1f51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Release\/Author.php","hash":"146739182cdf2c866e096fc41b524bdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCancelled\/Sponsorship\/Maintainer.php","hash":"2ffe1fbd2046fbf555b991557f10f662"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Maintainer.php","hash":"250fec1ac3d84bd0a848679d6d8b55ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Maintainer.php","hash":"03eb6a8424bfbb61feb47d1720a88748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Maintainer.php","hash":"c1a84bf2aff432f195038b1fc82a4153"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Maintainer.php","hash":"f4caac496293d85309417d522685a926"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Maintainer.php","hash":"7296d5bdbb13d03c089056f6dc6f30fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet816635D3\/TietC55238BA\/TietBF74F2E8\/Tiet24A1EBA4.php","hash":"97a468761426cf7b22f96b1de216d856"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentStatusCreated\/WorkflowRun\/ReferencedWorkflows.php","hash":"10633ea50045fb0e3fdab63680bdfda6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/ReferencedWorkflows.php","hash":"677abea5132c9d645c75951541edbcba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/ReferencedWorkflows.php","hash":"811584c9451d65d9aea2130407fee38d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/ReferencedWorkflows.php","hash":"8e49f2f3b76ec50ee898f1539a275380"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookDeploymentStatusCreated\/Deployment\/Payload.php","hash":"4ffb3748406b118c3abc3f8a4c514e35"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFF05E95E\/TietC6CECF66\/Tiet82A80669\/TietA89302ED.php","hash":"93752ecc6427d8fa6c2fd79681845468"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnanswered\/OldAnswer.php","hash":"106facf0686e16079652f8ba7a5625f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet785599E1\/Tiet0A126896\/TietAA4A3589\/Tiet0EC30987.php","hash":"3c66241d287c7758c05cde9a2aa31a20"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentDeleted\/Comment.php","hash":"a150f4ff15dbf2d063e29df258b79e6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionCommentEdited\/Comment.php","hash":"c509ccb3c6308e0b0c742b5495825e9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet682653DE\/TietCAC7B5F7\/TietAB0C425F\/TietA08C8495.php","hash":"fe70b30b70bdffd5ab392f304e38517d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited\/Changes\/Body.php","hash":"22bb2c6df3cfe2e48399c2564cbea3e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionEdited\/Changes\/Title.php","hash":"6afcaea1cf5d623cd4a8fcb38b1bb549"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Changes\/Login.php","hash":"27cf89ace08cce8c36e87a9aeae285dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookInstallationTargetRenamed\/Changes\/Slug.php","hash":"9d8cf40a5b570b5e8e4ae7e12f5d046c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardConverted\/Changes\/Note.php","hash":"97136809e21432602db1c5c37fd2415d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited\/Changes\/Name.php","hash":"794cd160d0c1e0ffc100482ae1f202b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Base\/Ref.php","hash":"de9782fc749a280ae8b56bb43d672c78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Base\/Sha.php","hash":"f5409b5b6bf1c0b95f1682592a3d9ba4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/DefaultBranch.php","hash":"5ca1f98f4049279e0f64ead7783ef26b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRenamed\/Changes\/Repository\/Name.php","hash":"cd7d85552dc1976f7068bc3230828a1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCBFBC5DA\/Tiet410A0D57\/TietB65A397E\/Tiet98165A46.php","hash":"cbfb6f6f6481104c95eff139e87a025c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDiscussionUnlabeled\/Label.php","hash":"8947b4ab53d1c74ef83af633d70290fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Labels.php","hash":"13acfbc4d250f274c4377c67e794e739"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Labels.php","hash":"b384b4c17393b85369b1dea3931aa6ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Labels.php","hash":"b4888f00544c0b484120a8576680b988"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Labels.php","hash":"94eb1079bd0086d1fc0a9c590daedd70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Labels.php","hash":"aa392a79dfd07e97d6b2a09a051706d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/Labels.php","hash":"4c65d5f87d221a5bf129d3eb2dd4303d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Labels.php","hash":"6f2a1c542987d17377b65315649ce313"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Labels.php","hash":"d75484684c33842071edb40f5d9adacc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Label.php","hash":"53c67e8160f8cdf2d3cc2e0280d5666a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Labels.php","hash":"3183f2f0a3f4e2bfe416bceb9e1af673"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Label.php","hash":"64406a1b14299cb2e316bc944d969f2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Labels.php","hash":"e96195d991158340f4033d85db380708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Labels.php","hash":"f4c8953b75058600922433c0e51b38ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Labels.php","hash":"90ca80569b8d2e878736338d329b9f6f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Labels.php","hash":"1d1698e4a969b82919340a1595ac9c5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Labels.php","hash":"ac3781f260ef45bebf0fd1e1e24ea0ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Labels.php","hash":"0554790dcedbe30f4a670a68bf4f0d9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Labels.php","hash":"eae55baf39b2bab3e6c540c334479467"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Labels.php","hash":"df2670f0a8cac84e42b7dabfab467d58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Labels.php","hash":"f1acec132c34836f48a007c34b1b0046"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Labels.php","hash":"92fef9c2d81da93e633ace14628e87e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Label.php","hash":"4dc6857dff7185722e014e69f985f030"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Labels.php","hash":"a2ee4b19ea7098111ca4be375c8a0b30"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Labels.php","hash":"6d2efeccd07de1261978be16414601ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelCreated\/Label.php","hash":"217fd91bf4b411098445aeffd2a3a809"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelDeleted\/Label.php","hash":"604d1e2b6e03cf05bf048afc8dc7df81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookLabelEdited\/Label.php","hash":"1291a02810cd1856fb2c856c34fcfb84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Labels.php","hash":"95e3d20fb034b6a6b5f172dceba63626"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Labels.php","hash":"74eddc10e284b921b109038f9128dd14"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Labels.php","hash":"eefb96850f8a4abecce546b42a28153d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Labels.php","hash":"de9cfb3c4f01ec0bedccd2262db4432c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Labels.php","hash":"715dae2e9afd60cce7e7a39b882a964e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Labels.php","hash":"2f93342261b0a9150a9566202aae574b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/Label.php","hash":"71d9404d0e1ba9782ff17342abaa2e00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Labels.php","hash":"6a4890a674687c47deeaec36c58eeb2e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Labels.php","hash":"bd6b420d2b8eed4d92f3f2d5653988e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Labels.php","hash":"a9e4dee44ffe95ef61ef37e18adf904d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Labels.php","hash":"18d145eeb3a00165e6809f9325b71ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Labels.php","hash":"c558093630001791a110b6eb94050977"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Labels.php","hash":"685029a23cb8919cb809d6ae40b67b51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Labels.php","hash":"4628fc7e5e770ded506dc2a9bf748c15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Labels.php","hash":"fbc4169bb12862837b510ed808d3e0ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Labels.php","hash":"58eacab0433338faeef2c10cc39f28b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Labels.php","hash":"6cdee75df4ced5f608dde665269eda39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Labels.php","hash":"1307716f550efc2d93d821db375b15c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Labels.php","hash":"46766bf4d26696579d52739bbc204a9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Labels.php","hash":"b6303b993d6b99adc6a4e675e3d7bc5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/Label.php","hash":"f38b8b995ed920c0dce8e9b1d0b1750e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Labels.php","hash":"256c7f47aa91ee02b2e200b8b359d065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Labels.php","hash":"6a9291df39f0c8d053d7b0371cf1af59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA7378D88\/Tiet9F1485AB\/Tiet225278C2\/Tiet93F7D467.php","hash":"9e377a827448f249087ccacdf63c2586"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository\/License.php","hash":"78b4eb677905287bd755ae93819f413e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository\/License.php","hash":"cca580e2a8a80563dc08f894cb901588"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo\/License.php","hash":"96f6d2d2f0fd53e4ff3055973abdbe58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo\/License.php","hash":"7f0d927b598e32692b90d76968ff0c18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo\/License.php","hash":"b844ebcc661cfa5921d235d97e091ba4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo\/License.php","hash":"2b328f64b6ca1ba3a4f292aa83c45d86"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo\/License.php","hash":"6e0ea5ba7c0bb97d01d81ff91236e273"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo\/License.php","hash":"a286676701588c095d0d0a31e62b007d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo\/License.php","hash":"5db4951e2d649e5235b5a50d9a024bef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo\/License.php","hash":"2bf9d13609d25f5aae07a3cd87aed38c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo\/License.php","hash":"6c28ac442ac3f2050aa3e1ec5aef7a75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo\/License.php","hash":"e58c1747303cb45be049efe3b2762b68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo\/License.php","hash":"58bd3f9f5add4779deaf780cfe067ac2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo\/License.php","hash":"bc5e405c830bd5a2929f9641bd827e69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo\/License.php","hash":"8cd0d316c8867065dfbe6de7f4bf1c0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo\/License.php","hash":"c9231bc8360bebb971219a28a215c11a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo\/License.php","hash":"7b44be573acd80519a42d1c08f2b0d1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo\/License.php","hash":"e05292c52e24a90752fee2326b3ff623"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo\/License.php","hash":"efa2cbff91ddf573d929c95b90708599"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo\/License.php","hash":"4ff21e32c3d5c059f66bf91512be5468"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo\/License.php","hash":"acc0816ed43a01aa283ce6e71ce481ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo\/License.php","hash":"e74f726660f083f09fbaf49310fdf6ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo\/License.php","hash":"1c8aa02cae6bf9cd8ea085282f45c846"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo\/License.php","hash":"85230fae1ab8bd514eaaf734813e5b41"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo\/License.php","hash":"d6b01375a20b8f443e11133691da05b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo\/License.php","hash":"6e38a7345df31d4c543dc39083accba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo\/License.php","hash":"d484b55e57e32854ba572023f3d81e6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo\/License.php","hash":"a9bf0f6de3b788d0d182ced44aac0e1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo\/License.php","hash":"cbd33b7912562fd6c700beddbcc0101e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo\/License.php","hash":"140786b7da2146d64178e5ea0651b754"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo\/License.php","hash":"7294bd3a9cebc9d96a39d6cb29c66715"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo\/License.php","hash":"276b9c4a65c917040e8b8ec0722b37e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo\/License.php","hash":"a49eec8a4e2fd2d8fb435972a730e7d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo\/License.php","hash":"75f84d793a7cc92df781b18647947d5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo\/License.php","hash":"87ecdb4bcea9da3c533a4d836afbfdd2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo\/License.php","hash":"949533fe87584cb176c404713c8fc537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo\/License.php","hash":"fb226f818b8e4cd940831666d8242b1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo\/License.php","hash":"cacf71c344da29a97d6b0b2ab0b2fc19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo\/License.php","hash":"885ff27a6d410f35a4fbe78eeddc517f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo\/License.php","hash":"b5528826fd3a09cbb517748d2c4dc2c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo\/License.php","hash":"2d1059a910e8b61552ac4b0011f74a8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo\/License.php","hash":"ef3643789de3010079208499304c3140"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo\/License.php","hash":"139dabf0d53bb57045686acfa3b12764"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo\/License.php","hash":"e28c38ef40e03f26f206c0119960f2b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository\/License.php","hash":"9eee6bfaeeb2c93abacb233549a87340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository\/License.php","hash":"7646dda70af017c69b0ee278f408d4b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository\/License.php","hash":"7dc0dfd7513a13ce26da15d8318de864"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository\/License.php","hash":"efce55b103f908dca91b80a4290fc0e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository\/License.php","hash":"f900db77f8b58a20acbe46ae4ce76e0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository\/License.php","hash":"26ac195126b72e95d7f3b882b8300b80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD132835D\/Tiet06CE1ED3\/TietBF25165B\/TietEDAA71C5.php","hash":"23db170dfbd4ab73928b6b829d44cf9c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldRepository\/Permissions.php","hash":"a99d079b0dff22aadd2753a939a9022e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewRepository\/Permissions.php","hash":"c3d923eb43fb19ccd0a6d10f4f73cfa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"26e3a6d6130fe5ef35fdb30ef7f14c3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"d06b3cb385d3fc05bbbc24e9f8c9e454"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"7c20a9818bcfb33d18220584ceb158d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"273bc01b2ab2004882d09f63123c65b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"091982bfacfcfc38a72584d9f29a8b4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"e0d915563db8c16d392f6eac5a7b428f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"5a408aa07c692548db231eb4323ef1f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"81ec86dfb87500913124747fea79a168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo\/Permissions.php","hash":"873a2864b2e84902ef0e8d1284f7f8d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo\/Permissions.php","hash":"c42746c483bff0f3bb2302861952840e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Base\/Repo\/Permissions.php","hash":"6f0b2abaa128257f01786312a42062ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo\/Permissions.php","hash":"1e6faab334c811b2176c235d65261ca2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"b76446b1b72313ed37b28ef9d27bd969"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"df2afe3ef996b55640d0c49b200793b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo\/Permissions.php","hash":"e502ecd0d418b7c7dd52693990861a9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo\/Permissions.php","hash":"69d21399f1ea68e3789a74a28e9604c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"06db77617675ea8a09e7804cd071adf0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"d11114de252850cc4b35e4107063cce6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo\/Permissions.php","hash":"000ad7a06d1bb7ca74bfbd9e857c2158"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Head\/Repo\/Permissions.php","hash":"da69cce8df39730743d6ddab04e07b54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo\/Permissions.php","hash":"9bfc53e14519e49bfb029b4db8f70c04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo\/Permissions.php","hash":"ef2aabc66350d5f8f9f8276b9666fb17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo\/Permissions.php","hash":"ebebaa748ae5c9ed3283393923df3d61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo\/Permissions.php","hash":"b56f08c4af1094076eba33a2e57638d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo\/Permissions.php","hash":"5fb149a80f334917cd6e902a9ab2a5fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo\/Permissions.php","hash":"101760ebd6548cefa38bea1190440875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo\/Permissions.php","hash":"f3a9a796ad0bffb2e603d82876568229"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Head\/Repo\/Permissions.php","hash":"6a1f742c866389de64d052895d8d8049"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo\/Permissions.php","hash":"0ddbccecfaaedf8c7ec04fc6ad99c136"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo\/Permissions.php","hash":"e5058d1f90addbf17cfc91b54e47e661"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo\/Permissions.php","hash":"90f98c3affd7ba5245e2aab6b332a38f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Head\/Repo\/Permissions.php","hash":"a9416a72a9b693e12fca0afd303a1260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo\/Permissions.php","hash":"e2a06b3c9bc5df30bce6fdb0648dd87b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo\/Permissions.php","hash":"7e2641af2dcd4f504ba24daa3a438bdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo\/Permissions.php","hash":"0c141b26e645ff372d7dee31045f4dfe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Head\/Repo\/Permissions.php","hash":"21f0bb73c4cac2f0d8d51ce66e9c7ed3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo\/Permissions.php","hash":"8335082591492977aacc7feb297af807"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo\/Permissions.php","hash":"cc654e554cc6edc3df75d4c37597d372"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo\/Permissions.php","hash":"f6eef399d79b17d5622cd8591654ee2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Head\/Repo\/Permissions.php","hash":"c7652e2b1bebfc1a21c2e8bcb65cd4f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo\/Permissions.php","hash":"2263894e2ea1a36c730b037633ea7bb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo\/Permissions.php","hash":"69b8adbcf41b6962b6f7ad910e10791b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository\/Permissions.php","hash":"35799b2812230247527545c8a95f8869"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository\/Permissions.php","hash":"4b59101d67b43da21c6024c09a23494f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository\/Permissions.php","hash":"5712a5fb8fcecb33a3e35d280b504b7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository\/Permissions.php","hash":"d03e8618b30e54bdb092d87077b21984"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository\/Permissions.php","hash":"ba3374f9477254d40d4c6a9c1df0af18"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository\/Permissions.php","hash":"5f708e2f0e0c8d0e63cbb6c94dbd6da4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0ABFFB9A\/Tiet721DF3F2\/Tiet6C0961B3\/TietE2C9336E.php","hash":"244c953be3d557f63b292ecf92c0c1d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Assignees.php","hash":"61705809c4010012d42cbcdc7610aafe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/Milestone\/Creator.php","hash":"37cf0107ef3f834c8401afe755549072"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentCreated\/Issue\/User.php","hash":"7e1582e18aa9cede781c3db3fd1519c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Comment\/User.php","hash":"afab011d21c50631fedbf12a4fe30a4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Assignee.php","hash":"07c8253edb88aa4f6827fe11cddcb549"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Assignees.php","hash":"e0820f079957791bb563656328d71a90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Milestone\/Creator.php","hash":"a6231feafae0d01c514d2b4cca434922"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/User.php","hash":"18f1669f195f55e66bd73bbd82ff933d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Comment\/User.php","hash":"94eacac90fabf77ebf59d91c5985ea4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Assignee.php","hash":"4ab83b4eca2e06c4a8b312d760b47ac5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Assignees.php","hash":"13ad9cda5bed0479afbc7f37f69f498e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Milestone\/Creator.php","hash":"6a8602351661b10bbea03d21d6dce1b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/User.php","hash":"679ba2da3e6b6cae659dfa334f381e66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Assignee.php","hash":"57398c7b00fb5e25f3df2ae2012093be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Assignees.php","hash":"514fabd53a65b517de8d9270a656dfdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Milestone\/Creator.php","hash":"4e72fdc8128d5f9fa82d35d0e0475e0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/User.php","hash":"45bb4b64eb5b4d3f6f868f8eeb2596ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Assignee.php","hash":"7e4a3ae2173ba8e77da56be0c98bb8b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Assignees.php","hash":"9a1615ccda386ffe0196c7e78a10129e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Milestone\/Creator.php","hash":"800f7fd2de504b03ce08c3e4971ae66b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/User.php","hash":"bf4432539bb339d0031ff2800dbf22d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Assignee.php","hash":"08b3061d29a10909d1fad2b4423ba89f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Assignees.php","hash":"7edc6e73c0d900d4ae9def1283cda381"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Milestone\/Creator.php","hash":"3dc527761fae085ce9b8ea43fc84397c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/User.php","hash":"2f751c0415af86d99edf375464e178ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Milestone\/Creator.php","hash":"2470f6cba1013d837850a383e54f7220"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Assignee.php","hash":"91c0f4bf7264f23cb2d7c332fb175956"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Assignees.php","hash":"7ee13fc21ff0d848f61b8111f0293184"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Milestone\/Creator.php","hash":"10c55643b68d7c40d7d14e896aabc1be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/User.php","hash":"218432dc1a109c522d4c639acf1b6402"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Assignee.php","hash":"33a7cad6f72981d0c375e7a6dd668f6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Assignees.php","hash":"45016643ad3035401dbb713e9e13669d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Milestone\/Creator.php","hash":"bdcc97ae213ca8823ee203b552ff4044"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/User.php","hash":"f9a82b87c432216c3dd943c1535b3a33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Milestone\/Creator.php","hash":"141d57a030a2d2bdc8394285e8ff2213"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Milestone\/Creator.php","hash":"f008a5d84a3241325606accdae41a726"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Milestone\/Creator.php","hash":"9f1b4b1980deb0d2e508492d9b2b983a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Assignees.php","hash":"7436bd52da361dd0b31f785ed17369cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Milestone\/Creator.php","hash":"7713636469056fb0dd6bedeaa53bd8ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/User.php","hash":"ee3b060b7c5ebecf1e9997258b3bd34d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Assignee.php","hash":"5e322b69f0fbdd5548830bf6c0c51d08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Assignee.php","hash":"8c2b08523c2d2c378def760a0c74c043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Assignees.php","hash":"1514a4d57eb12c94e56f8d7bbe5fa7b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Milestone\/Creator.php","hash":"261b2e50fc0a256acb56b307a55dfa95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/User.php","hash":"147007bd85ca9c806e36617d16062486"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Assignee.php","hash":"a70d491a12c18d71b90ffc3f63b42579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Assignees.php","hash":"d2e9b83cec28e0550cea070f4513395c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Milestone\/Creator.php","hash":"2850a116738480066c7c2cb190116408"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/User.php","hash":"d6919a5f18ae5cedd27f908355289235"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneClosed\/Milestone\/Creator.php","hash":"afc803df917433b6e5836e1325d317c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneDeleted\/Milestone\/Creator.php","hash":"a81eb877608242f0489eea8257b3c2e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Milestone\/Creator.php","hash":"bb6f96733e02d6bff4d8fbdae0c21c4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardDeleted\/ProjectCard\/Creator.php","hash":"55ff359d4d76aa7d1ddbdfef6082cdab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardMoved\/ProjectCard\/Creator.php","hash":"34aaaa2b3c3c05025a54e1f00557951d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Assignee.php","hash":"9d52391790b74edb9527d41224c5b166"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Assignees.php","hash":"7f203e5bb3ea183c5649bfe19dc3424c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Milestone\/Creator.php","hash":"29f095ee9686922246cec582b2ee8007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"86fd6640183e970fbb005b40dfd0690f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/User.php","hash":"de90109bab21af6887172c54f97d3330"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"8a1ee821cf9aff54c35c4a1345c2c4bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/User.php","hash":"7b26aad217ed152bc608ef81261e8389"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Milestone\/Creator.php","hash":"74b53ad1eccfd7dc23676ef9696f5588"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"478786def4f3b10469da8539c5d028ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/User.php","hash":"d4e11cc6f669b5d547a18e8380a61890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Assignee.php","hash":"998e7e79150261d5d04ace1807795312"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Assignees.php","hash":"2f9c480c2ce4099fdaac55c2609c15ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/MergedBy.php","hash":"1dc9634b26ae6f91f5a63591903517bd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Milestone\/Creator.php","hash":"6fa5e02d7cb209f836386bca6aacbfe3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/User.php","hash":"e72f2376a3d501c31e81b6da26f93465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Milestone\/Creator.php","hash":"8e0cbe01bde9c2a625cce9ffa1a73875"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/User.php","hash":"7c1ba79f623ca14532c582b4f4110260"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Milestone\/Creator.php","hash":"2cc1011f71a62a68c2bf0fb028d5a420"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/User.php","hash":"6d9af313521ffd1da5485bb16ea7903e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Assignee.php","hash":"3d91f82c9dc7b02534c2ba3b5b1e75a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Assignees.php","hash":"d69677aea5e3c5977eb0c7575bfd6d6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/MergedBy.php","hash":"78a37679996369f998bb5599719ac8d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Milestone\/Creator.php","hash":"ff66045927d3f16e505b6eb633ab5aa2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"220d6f029c9697fab704fd75e458e2d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/User.php","hash":"28304d5ef7d1c0730a83fadd84389b03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Assignees.php","hash":"edfa3fe33da210759dc4b05ecdbaf7e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/MergedBy.php","hash":"b58f22136eee427139016681ac4eb193"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedReviewers\/Zero.php","hash":"739afb4ccf3c08afda4fe40646578fd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/User.php","hash":"bfcbdbed8d3c93d676901c1f4b49c79b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Assignee.php","hash":"45d3e652093d5bad8fb3e14a6a738c33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Assignees.php","hash":"5316f4953bafa1c160178febd4702653"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/MergedBy.php","hash":"b5e99bddaa55b5173b3ec9e31fc71147"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Milestone\/Creator.php","hash":"00a98ec653a1b6f52a971ca09a3fd1b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/User.php","hash":"55542f97671581f9835153283a572ee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Assignee.php","hash":"deaf84d7c4b27476b7e1ce85cf67f331"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Assignees.php","hash":"9d30db1793b703687edad825f1a7c7ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Milestone\/Creator.php","hash":"5aeaa10c74c2e919154ac02c6c57c9b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedReviewers\/Zero.php","hash":"fb5f1ca78be0f19ba9dbebdd075153f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/User.php","hash":"e9d3730e2dfe8dac861f12870a15d637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/User.php","hash":"7da98d0e641ca24e990ce12008dcfe07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Milestone\/Creator.php","hash":"a13a01c866b17662c3965aafc6d98aac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/User.php","hash":"d6b19c28880b85a31c941d322239dc3b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Assignee.php","hash":"ac613e01ee1c5d0461902f107f7fb2ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Assignees.php","hash":"f26ac2cb700bdc2a567b6db0f2a7d002"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedReviewers\/Zero.php","hash":"1d67be26ba62ac79fc76bc389ec8cd0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/User.php","hash":"01c34397e63fa122d8f4ee3339084c10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/User.php","hash":"4a0dea5de2662daa3e0bd7347952487d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Assignee.php","hash":"0cf29167100383ab410b5dd26c446128"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Assignees.php","hash":"7d6b8fb290023073965496eab849c4fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Milestone\/Creator.php","hash":"07c211d49fccdb51713de740fa78220f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedReviewers\/Zero.php","hash":"149efec66fbbe2af392bde96e4bdaef5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/User.php","hash":"c904e2876cd55f6efa98d78303a92290"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Assignee.php","hash":"c95363e4b84b92dca4841e92c0f8c8e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Assignees.php","hash":"573adf65336de44ee85cfce272fcc7cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Milestone\/Creator.php","hash":"1a9f530e337f2a7e9d793026e6e106df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedReviewers\/Zero.php","hash":"a1c0b89ec0bcb45975fcdb2062b7ddff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/User.php","hash":"165618af792e31618ddd6682618f91c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedReviewers\/Zero.php","hash":"0b6a941df5231d23f5e71030b5bff68b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/User.php","hash":"0512806bab33c7646aa80496a3a8675a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/User.php","hash":"23995bc7dedb0875da923ad0e038b3f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Assignee.php","hash":"7a9d0406c67c831a8726ebb088afc587"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Assignees.php","hash":"281feea17c549b0bf209c125d6a61b1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Milestone\/Creator.php","hash":"29c29d304913535b23de06a05c6c945c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedReviewers\/Zero.php","hash":"99cbc73adb8a553dc11bceb251e89859"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/User.php","hash":"7580af9dff2ae10921acc940171456f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/Assignee.php","hash":"752eff4af0139dd1f4eb74d863f02b75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Assignee.php","hash":"6390a9738e6c5703773618af73723000"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Assignees.php","hash":"951baa1cbbc4bc4b2ef81b13c02516de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/MergedBy.php","hash":"809460b0d3e7d67862a57b2a51e8aefa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Milestone\/Creator.php","hash":"4598222de38f2c9bbc602ca8edbf29b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedReviewers\/Zero.php","hash":"8bfb2488981ccc61011c8a65cf0a064c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/User.php","hash":"ad9945a16e39d7029d11c7f38edc5cd5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Assignee.php","hash":"0db55727a83fe33d99bce6e187c73112"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Assignees.php","hash":"f2ad6a20bb8835cf69ba0f29adb29f74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Milestone\/Creator.php","hash":"2cf0809e097b9adc9131de7638230d51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedReviewers\/Zero.php","hash":"1b8ece8ad328ec0126da8a31a7b3fe90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/User.php","hash":"df79d40bf11ee6953fdb6ea04a23e7ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8581CCF9\/Tiet9F48F90B\/TietE152DE2F\/Tiet393FAC6E.php","hash":"ad713bfecb337dc6400002b4a0f40f1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/Milestone.php","hash":"bfa4f42b594602b007156d7c2c2feefb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/Milestone.php","hash":"c8242121a9f9987b1a8d4bea12ddd342"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/Milestone.php","hash":"6cbec2ad8296e8bca75b6ea1eadbd828"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/Milestone.php","hash":"0c55c340609310a381f89a4a07f0f39b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/Milestone.php","hash":"f6554aa054b7f10033676e8e5e2e9210"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/Milestone.php","hash":"a332ca0ee2a8dca6802853a2a1f23d0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/Milestone.php","hash":"7a64db9c99efd209c9d5d51cadbf29fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/Milestone.php","hash":"814a7e214142ed02122feb7ad3d14841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/Milestone.php","hash":"f711e34d60aa45b33bf54feb36d95261"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/Milestone.php","hash":"2f26db3eca305fc203a5ff6e246ae214"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/Milestone.php","hash":"3e3a68357b0210ef6e437d091c98f84c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/Milestone.php","hash":"6f3a1fb87658da269e3f8f9df41b9ead"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Milestone.php","hash":"0f233a4fbe11675f67a7dba13ade3f37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Milestone.php","hash":"49ef9a779d49cb4183b09c9d569b9aca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Milestone.php","hash":"dbf98792754fc45728b37a6d6e58e450"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Milestone.php","hash":"2cc47935efbbf8d1ff6e4112a4a206bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Milestone.php","hash":"a55b51d0e472c0fd09f30ee5ad97daa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Milestone.php","hash":"1d33dabf23ddc1c0ac4e9b6216fa8ff6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Milestone.php","hash":"219650d48b963439306f6c8d98c536b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Milestone.php","hash":"a7e8f6d986f4a651b27640ac551a0168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Milestone.php","hash":"c2e5a3c2608a5a262c87ae040a847aa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Milestone.php","hash":"492e770462f52e92768f8493e1a9e134"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Milestone.php","hash":"23d51e8afd35cc1b9eadee5dcc71de4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Milestone.php","hash":"757075a4b1c086fde817a6cac2fc81d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Milestone.php","hash":"035a5379350d74734bf130cee0192cfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Milestone.php","hash":"1d47734576888053d2661a17ecf16090"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBFC83FE4\/TietCB010FEC\/TietC14862B3\/Tiet0D18AA1D.php","hash":"502da0c637ab5f1b5d7c4648069fc00f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentDeleted\/Issue\/PullRequest.php","hash":"a9f619c127bdeb88999887b9f0ffd61c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Issue\/PullRequest.php","hash":"f34986107a0eab3def83f737a742b2f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PullRequest.php","hash":"c78463990a99d093f228c735d9079d4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PullRequest.php","hash":"799cbde7f7a92f823ace0fa18648f2fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDeleted\/Issue\/PullRequest.php","hash":"f1336153b7333f6a6037da43e43d4e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PullRequest.php","hash":"88ef06c6247b97e380882dbdb80bcf97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PullRequest.php","hash":"78e73ccfaadb3c35547c2047d2825476"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PullRequest.php","hash":"1397e71b9440a26d644a96134d6964a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/PullRequest.php","hash":"202394c505c31a2d3e4280600786e247"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PullRequest.php","hash":"ebc0f706da1abd98933944fdb3dfe345"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PullRequest.php","hash":"9497d6aa1585b745594d38cb973a86ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PullRequest.php","hash":"7be99f027a48be675de72681a7a02c39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PullRequest.php","hash":"39b0e5dc78af5dff5415a25c1c1b8383"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesReopened\/Issue\/PullRequest.php","hash":"2ef11ad9b4c49cd42c2596882d6bdf0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PullRequest.php","hash":"7eee2785c3fdc2a7ae524d464a4916e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PullRequest.php","hash":"d4661a0d398cd1fd58e9adea992a7340"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PullRequest.php","hash":"a5d3d631b0a06c8ba4de6ce707a74563"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PullRequest.php","hash":"4063c6429e36304d90c4af6304cf635c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PullRequest.php","hash":"4f2d38369ca85fbd27c41f60be91778a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PullRequest.php","hash":"ec38450583bed523970b3c7b6779abdd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssueCommentEdited\/Comment.php","hash":"d62c6c905bfbf0170390f0e7487d0e8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2CC4833C\/TietEDE4BABB\/Tiet8A5CD377\/TietFCE070CC.php","hash":"769567a34b6c0938572d1ab2d5b75db3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/PerformedViaGithubApp.php","hash":"f87be888f7dc68294c916513a982665a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/PerformedViaGithubApp.php","hash":"e56bfd8732a5d2aa5f90aa78e6862307"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/PerformedViaGithubApp.php","hash":"1765a0675345bb9efb50cb577df0ad55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/PerformedViaGithubApp.php","hash":"4528ed4c17fad1ed2038fd5bb7061fd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/PerformedViaGithubApp.php","hash":"275c30cd0b9c732304053795dea32bff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/PerformedViaGithubApp.php","hash":"c3a050f3d29503cb6bbc702905d59135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD40F0DA1\/TietF52E1633\/Tiet9644A5F8\/TietE59F6EA8.php","hash":"e241555c8bfaeb19257809f71b7dcc01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Changes.php","hash":"0fef3ed5800c6395c06d441d8655ca7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet577CE6E9\/TietD2ECD35F\/Tiet80C6C3F8\/Tiet8528CD9E.php","hash":"a8381d822c55a74a256f9e8f16c731a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Changes\/Body.php","hash":"d7c06479d39852c8d32edd4d461f1f58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Changes\/Body.php","hash":"b781bfe04d7270885ba8c297bded1fb9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue.php","hash":"ac1f2bf799a06fac32f537a2d46e0936"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue.php","hash":"3c9a9483ad7a2be9624c0fdc637b2fb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue.php","hash":"0a4fbafac888dc90d5f142a5ff521665"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1720054D\/Tiet9210BBC6\/Tiet3FB12666\/TietB2827ADE.php","hash":"5ce1ab88b7ad9c42047dd112f9dc3c97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PerformedViaGithubApp.php","hash":"c1a55f6a006492b30cdd4357e5a71bdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PerformedViaGithubApp.php","hash":"0a539022440cb06f3980a09438b06830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PerformedViaGithubApp.php","hash":"88b605e477ebbef25803660801e79579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDC57B05B\/Tiet43E2E854\/TietF0DEE07A\/TietA1A61505.php","hash":"273960f4da3f61469fe73d98f7670c49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesAssigned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"5e46fe1cdc0f2645b5ede0ca236f433c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesClosed\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"963549c4c33e6bdf34a401ebebb11905"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesDemilestoned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"b14690f8329a3a2b76bd18cb9d06b5cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesEdited\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"b959b4d61410ee0b9a80a8b008f1cc10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLabeled\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"533c83a5d91b7ab1012752d5bc67d1bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"8e258a4c1cfb7eaa40e81f32f8b5ebcc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"cc04dc7fbc3db788ce1651f45d5a1917"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnassigned\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"c458266dc3ef57834dca0f4a887a5445"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlabeled\/Issue\/PerformedViaGithubApp\/Permissions.php","hash":"108751da26764cdaabf260778cb1dfb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF5C8F2ED\/Tiet1E2DC2E3\/Tiet6CD07639\/Tiet33A0DD5A.php","hash":"a39f1ad69f0dca7946f94b7c2369faad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesLocked\/Issue\/Milestone.php","hash":"9a167fd97002d5049bb22890c08e3aff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Changes\/OldIssue\/Milestone.php","hash":"2d8c546a542c9143c2603d1f76b0a8fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesPinned\/Issue\/Milestone.php","hash":"08fcd8fc1cdb1d39ec9b85569babc194"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue\/Milestone.php","hash":"c2538d6793681de405a2bf09d3cb78b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue\/Milestone.php","hash":"a4232d1264de5386c1aad1ae8b9b6099"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue\/Milestone.php","hash":"ae0f33abb462eb36c434b1c3b8d02855"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue\/Milestone.php","hash":"93e15f67599da74d927b2c50dd3db7f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Milestone.php","hash":"ff28a01a2b7f54be018ec5ae6e2e83b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Milestone.php","hash":"968e73c67e15595bea15d73c3fe36d08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Milestone.php","hash":"3b8be4188970e50f6ac5d219c97db08b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Milestone.php","hash":"3c1ce6601aa8a1dc87f5f46a8e61259d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Milestone.php","hash":"0d206f9e7196e9fcd1a0cc8d2b771b53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Milestone.php","hash":"0abf193e1522766e2ddfce45536c8d79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Milestone.php","hash":"ff0e7a7cf64c171d09b0c533fccd9ba3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4FBF546A\/Tiet72C5BBB5\/TietDF190932\/Tiet25B04BEE.php","hash":"b7f124db7a7a16b3719ccec7c93d31c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesMilestoned\/Milestone.php","hash":"34943a87b75ca432c7160d64de3751b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneClosed\/Milestone.php","hash":"7f6e577379619e11a01517f75582a43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneDeleted\/Milestone.php","hash":"02b14f86bb61f4ab30123e040d846663"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Milestone.php","hash":"9a784797469b1573e19c34c94f8ca939"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet052D1494\/TietECF8535C\/Tiet852A1CB1\/Tiet2AEA484A.php","hash":"7e26ca7108c2d0b56a610c45118ce8e4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesOpened\/Issue\/PerformedViaGithubApp.php","hash":"8b553936064955126e61d162fbbf1465"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet82D1D590\/Tiet5CF04E1D\/Tiet3B3E57B4\/TietBECF942D.php","hash":"aea530096b79257f4469f238a822c743"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Base\/Repo.php","hash":"2230d88acb0dc89327e40bf22ded8386"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Repository.php","hash":"07ab0ebbd8e17d8e85b4dd915f6cc146"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Repository.php","hash":"fb2b4b552956a5f01a808f9c07ebbec5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Repository.php","hash":"9fd388c43c85b075b369707f2ec3a206"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Repository.php","hash":"0c0f6e31ab7caefa237c1605362ca8c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Repository.php","hash":"3daf0b26bf02653f638da8d9e9eb5c40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Changes\/NewIssue.php","hash":"c4b003a2be6fa5e8e5148a83f7798829"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesTransferred\/Issue.php","hash":"65ec73c3504a808f1d79b282bdeb6c0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnlocked\/Issue.php","hash":"0882d84c5f9203c1178bdbf39f8d3036"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookIssuesUnpinned\/Issue.php","hash":"08ff683b371640e886e928ca16bb8a26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0974F8A2\/TietC4E2BC26\/Tiet68B9FD34\/Tiet172D517C.php","hash":"c525c8189b9fec5b47d96797b662a96a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Base\/Repo.php","hash":"dd07821af2bd5624801f3478a496b42d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base\/Repo.php","hash":"446c986de4d68a2d405a7b55819c3f1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head\/Repo.php","hash":"af35a8a8bc0097d331ac1bd3fbc54f01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPush\/Repository.php","hash":"83d506747a5d17ec9cdc27c6cf1ea31f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet90B64BAD\/TietF15E2FA0\/Tiet4430BD5A\/Tiet9EE541ED.php","hash":"075ae450d63ab717512eaeb28c7d855f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneEdited\/Changes\/Description.php","hash":"5744f4a18a89ddbf6b5e2cf8ddb88b02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Description.php","hash":"e9350bc1124ce47bc53a2c15ae41a5ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDEF8F9E0\/Tiet83B43907\/TietF4880AA2\/TietBFC1F161.php","hash":"117653a49618e8ca0c83cfc003dbb776"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes\/Name.php","hash":"c15ed1c280f8c79804299cc8c7020c01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Changes\/Name.php","hash":"c9bfaa46bf386c9693674b6562c239a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB8723F66\/Tiet5958F165\/TietEBB4D40C\/TietFFD41F70.php","hash":"972d33f654521242399b4d02656c4a47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/MarketplacePurchase.php","hash":"4a2d59b8394b7aaa159309c6eb9e128e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/MarketplacePurchase.php","hash":"856eb905d93edbbcc50eafee2b2a15c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/PreviousMarketplacePurchase.php","hash":"a2b4edc98fcec68efd935ceabd5710db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/MarketplacePurchase.php","hash":"b2d591a39e31b4601f94d78341d0ea1d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet43E8B1E5\/Tiet0645CECB\/Tiet29093A4D\/Tiet8B7662E9.php","hash":"a5b84829951fe7627226837cf6de1c05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/PreviousMarketplacePurchase\/Account.php","hash":"aa1bbd7965ebabbe7973b7a9ac112021"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/MarketplacePurchase\/Account.php","hash":"2e1e51a9430757f838cc9cb49c24bfd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/PreviousMarketplacePurchase\/Account.php","hash":"33f731daf843e4d8d9392469f46fe130"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/MarketplacePurchase\/Account.php","hash":"1416756b786a9406306eb308592d1b53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/PreviousMarketplacePurchase\/Account.php","hash":"80e66d60c8718abcf06676241332b246"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/MarketplacePurchase\/Account.php","hash":"bd46749b06ec0255d73992f95455f561"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/PreviousMarketplacePurchase\/Account.php","hash":"fa5be95d8d66313339427bd28e3ea392"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/MarketplacePurchase\/Account.php","hash":"c435accf6607dedf5e4133f5e1a69d0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/PreviousMarketplacePurchase\/Account.php","hash":"729eb612968557731dcb3d648093d6b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7AA6A7F1\/Tiet3B52E3DE\/Tiet4A6A69BC\/TietB4BD4493.php","hash":"5af984aaf3a6e985b06fc8e6520327e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseCancelled\/PreviousMarketplacePurchase\/Plan.php","hash":"04f06eb6d76ee1de66aa5477b64f9b8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/MarketplacePurchase\/Plan.php","hash":"a6b3b9989e241aff6781c73069da2cec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchaseChanged\/PreviousMarketplacePurchase\/Plan.php","hash":"c394a42208e776411d54b80926670079"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/MarketplacePurchase\/Plan.php","hash":"2e8225bc82ab042adf4febba6daf257f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChange\/PreviousMarketplacePurchase\/Plan.php","hash":"8fec323162a96b5fe92854fb95f20b87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/MarketplacePurchase\/Plan.php","hash":"06ded859e5f789700d21b17317273410"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/PreviousMarketplacePurchase\/Plan.php","hash":"de4f6990d50fee1009c6a9604f3e90b8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/MarketplacePurchase\/Plan.php","hash":"2746ee572ac62cf44e59a9ee5eebc63d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/PreviousMarketplacePurchase\/Plan.php","hash":"2bab7aca293ffed7418a66fb72774321"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB0609077\/Tiet747F05B8\/Tiet025F0545\/TietB779F0B4.php","hash":"b399e514e55e59cbcab322893354dbe0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/MarketplacePurchase.php","hash":"d94105e233545a2673555fbed971a616"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePendingChangeCancelled\/PreviousMarketplacePurchase.php","hash":"f969935a1d2f698a8cd553882b85ee37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMarketplacePurchasePurchased\/PreviousMarketplacePurchase.php","hash":"473389733c169c9d99aa3de62c75187c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCFBDB8CE\/TietFC8CF1C6\/TietD96B7C73\/Tiet987450B9.php","hash":"f4e91ea9ae3b0eb0d0c0bd336ae92f26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/Description.php","hash":"1eaec1af9a243c878e3ccae8f31c475c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ProjectEdited\/Changes\/ShortDescription.php","hash":"bfb231179bf05348b591af03409fa97d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemEdited\/Changes\/One\/Body.php","hash":"dfaa8e9cceffed10ae1f2a8c9b4a87ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemReordered\/Changes\/PreviousProjectsVTwoItemNodeId.php","hash":"fa1385822f85ab9461ef0ed638ab2602"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet701D1F84\/Tiet084C7488\/Tiet389FAEF6\/Tiet1DDDA030.php","hash":"465de84c72969624886eeb125d2bb6f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Team.php","hash":"5078c1c395c29a24efdcd7d6a5575c26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1713FA54\/Tiet8228D0EF\/TietCFE14802\/Tiet29E22580.php","hash":"514cba77f3edc9d5700ae3fe8dbe8cb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMembershipRemoved\/Team\/Parent_.php","hash":"8f5454eb41202b99a1391b527d2c019d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAdd\/Team\/Parent_.php","hash":"e77f78090200b91abcb239fb8296211e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Team\/Parent_.php","hash":"81e985dbf461554afe31921669ceb987"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Team\/Parent_.php","hash":"ef5c3c28aa16fafb6e5d3da55c93a0ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Team\/Parent_.php","hash":"d2c7646c82b789dbddf152f5561f7277"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Team\/Parent_.php","hash":"8488556dad455750d73ffbc4ec6e54e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Team\/Parent_.php","hash":"52692eeead3f9cef958e662536d0a70e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet70A66881\/Tiet324DD828\/Tiet5AC65377\/TietE88645D2.php","hash":"9fec727e31bb12bc8d6d9492f0dd1b1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMilestoneOpened\/Milestone.php","hash":"506da29831a25449b847cc0f28f883fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet5AC3402A\/TietC1416C73\/TietB92827C1\/TietE5472178.php","hash":"ecb11387a12ec0d3a9304979a3650043"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Title.php","hash":"abcfdc62ecdd29e629526ad054eefbb3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6E163C9A\/Tiet9BBD373B\/Tiet3BD5D026\/Tiet9A2269AB.php","hash":"80f9b69e03f81a1ae33e57b1fef5c708"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberAdded\/Membership.php","hash":"2be2c7708feed45515673cb47cd3a11d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationMemberRemoved\/Membership.php","hash":"d100da26650b0b85cd90a54a15b6e76b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookOrganizationRenamed\/Membership.php","hash":"fa9ac5479e6dfd4e7b3a453417a44b39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/Body.php","hash":"9b0f1b926cd5eb5044f905dd41574a46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietACA2ABF1\/Tiet1486B169\/Tiet8AB0E7A7\/Tiet4B4F1024.php","hash":"d21568d9e5db63b4d2f2ce702b7b383f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/ContainerMetadata\/Tag.php","hash":"5105c01199625bca2965dfd5168f68d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet95FF9456\/Tiet25FCDDCA\/Tiet8B3C65A3\/TietB6AF054C.php","hash":"2447c2bb177a0e130499470fe0cf0951"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/PackageVersion\/DockerMetadata.php","hash":"fbabea6db0cf82299774b64ed248e1be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/DockerMetadata.php","hash":"95e7048b2001412919d71d2a0492b1b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookPackagePublished\/Package\/PackageVersion\/NugetMetadata\/Value.php","hash":"60882597f04ba126f9ba0a0b4badee25"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet93C9B675\/Tiet0FC23C1C\/Tiet3E354A7C\/Tiet174AE064.php","hash":"5220ad8c889dd986dfe571088ac1a0a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Value\/Three.php","hash":"21749b514d910876cea2b6e2e4e0509a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet067B84F7\/TietD0AA2418\/Tiet59585D81\/TietA391DB12.php","hash":"91911e061d6eb28303585e1ebb8fbb5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPackageUpdated\/Package\/Registry.php","hash":"77c10b2b816c8714fb8708ecf1804664"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3FD92886\/Tiet86560C9B\/TietA2735AF6\/TietBD65F6AE.php","hash":"dd3528ad71602fa89283b3000c05749f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardCreated\/ProjectCard.php","hash":"a1f7f614fbdbf92d6be7b5342a31a7e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCardEdited\/ProjectCard.php","hash":"fbf7d18d909a857642e0544eb1677f9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF544D852\/Tiet737856A2\/Tiet91CC78C7\/TietC3F74F2E.php","hash":"3b2e2baeb5ac40386a41bcd10c72cac4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/Description.php","hash":"f94cdf30909ac71d016abd1a701e7ed5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryEdited\/Changes\/Homepage.php","hash":"3e7501493743a74064348dc5db65b56c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet66B3C0EC\/TietB8A403D5\/Tiet1E8A0A39\/Tiet80E5E205.php","hash":"159d5b6845153a5ba8c049493c8306ad"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectCreated\/Project.php","hash":"fc6d266ea44b5a671b61d77b20d67fed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectDeleted\/Project.php","hash":"4153a962b3338e59eb752c7de6788105"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectEdited\/Project.php","hash":"73e5117321bd6adafbc49941e5595d0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectReopened\/Project.php","hash":"0f3758d3f11b205012e931f4365e15c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6E03D84B\/Tiet0584B5F3\/Tiet708D9E30\/TietA68A0285.php","hash":"aff212c0a30f36d3d41de36ee948ba81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnDeleted\/ProjectColumn.php","hash":"951798dd42ba35d7819bbd303f6d9b48"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnEdited\/ProjectColumn.php","hash":"7d452d2c81b12e9faccf1e7884ca021e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectColumnMoved\/ProjectColumn.php","hash":"b36e513af23f6da70ea53dc210085611"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD089D861\/TietB45DBC8A\/Tiet01D7B6A7\/TietA81C5C0D.php","hash":"ca24b013b0bda77254f9763a6f630cab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEdited\/Changes\/Body.php","hash":"45713918a5ccc5e12a7d921c1b740f93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Changes\/Body.php","hash":"5a3d9108780e7ca9a579114d4b83e9d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Changes\/Body.php","hash":"f7cfba52e38480d2cbca79cee09d203a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0DA50527\/Tiet17F19BF5\/Tiet900E2E26\/Tiet0E39678C.php","hash":"f14d86e4dd367e358b60e1a294befbdf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemRestored\/Changes.php","hash":"aa0c8ba0d18887c9bfd7e54919a6ee79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet63A75E4C\/Tiet57A5AAD7\/TietF5C5B73F\/TietDC01A051.php","hash":"9d116d0c0c2942db0c27c00cd6a84ba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookProjectsV2ItemRestored\/Changes\/ArchivedAt.php","hash":"a81cfefe090e4d28f82857ee38e8095b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6B1B7663\/TietE4F5DE6D\/Tiet0BE24B99\/TietCC56D255.php","hash":"3f14d14a5e5deeeb08bb73a18a9f8e7a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links.php","hash":"66acbb3d30d54cb4301d7f7da721a729"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links.php","hash":"68c9474bae7174dbe12818f5328c6fc4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links.php","hash":"3d92285eb5d857f41606aad5a9795296"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links.php","hash":"7984aaffaa396c4a0b7fc4bdc13b8f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links.php","hash":"d7ba0308628df3dbed6954b9da88b069"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links.php","hash":"c6310a7374e9c0d323c47abb07b68125"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links.php","hash":"a9d3c4a845cbe405ee896a4f951b41a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links.php","hash":"0a131d8b083f3c8e65832d41a1d3266d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links.php","hash":"afbfee3ad273cb170503b78ddf7309e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links.php","hash":"b1c9e782f5ee0d74931f34a6b215e232"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links.php","hash":"7d7c04f43e05569ba3b9dc88de8278f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links.php","hash":"8251c1d99482f92222581ea423b642a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links.php","hash":"1c5b8b58f47a0973b66083c0188a783e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links.php","hash":"b943c0006ae46ff539a81ffceec4b3e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links.php","hash":"00958006287f2884bc411d62933d2880"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links.php","hash":"952034942f6e78d50a58c0d754a7d616"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links.php","hash":"d7575d96407641cc0166a4ea7d2bfe4c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links.php","hash":"429fe9a536eab76174f762b2405a33ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links.php","hash":"acf19d9e8880c0d78dbd7ec047ce8423"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links.php","hash":"0d3d9826b0ae03b5a786217c3679a5c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietEDE9794C\/Tiet5FFD987D\/Tiet7CF57460\/TietD159142E.php","hash":"fe0ee03fcf58c98f5eaa662ccad5b767"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Commits.php","hash":"a411d0be4ad167ea5c52ed8513c4694e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Html.php","hash":"8a310586076b1beaf1c960021399d14a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Issue.php","hash":"4e788d90626e744b9a9a82213214aae7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/ReviewComment.php","hash":"25659e4aa118c4f8e17ff5f34bb2984c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/ReviewComments.php","hash":"5cbbbc223c5367a903c77ddcf2f742e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Self_.php","hash":"b6c7bce20ce06e2a69c38218c05f3f80"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/Links\/Statuses.php","hash":"eafc4afd70a0ec8f7df14bdd4619c818"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Comments.php","hash":"bd9641a6693f5b1faae09e868324a504"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Commits.php","hash":"d83653b509b0ee3e466cc4560b0d251c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Html.php","hash":"a4dd8fa0a3398f4a02ba0463b3d53830"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Issue.php","hash":"4ad150baaf1705608a92c4a95e843c95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/ReviewComment.php","hash":"77dd24b6190d05b1cee38a63e421070e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/ReviewComments.php","hash":"dbe54a1a67613574e48d98c64ee17cce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Self_.php","hash":"f86d65e64402d49c3d3891114c42c9c5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Links\/Statuses.php","hash":"071c65399fb21174de30e741efb10bb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Comments.php","hash":"4e125806592a9c49646ce9757a33d46a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Commits.php","hash":"b132a7f02fc75701df182c4e1ea033fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Html.php","hash":"e02ad8e0efe070cd1091ebac06e09e00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Issue.php","hash":"34292af7bb6e3b43a98c3efceb1cf683"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/ReviewComment.php","hash":"bc197786690c8de9c331c8f072c7efb5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/ReviewComments.php","hash":"6f97a2753e3b5c496ed3f9a28b22d5ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Self_.php","hash":"2118816a4053ae0cb590a9497d60d968"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Links\/Statuses.php","hash":"78555e4f8e9259cb118e7b0aac98d256"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Comments.php","hash":"bc5ec5918536f385795de6fdc8afab05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Commits.php","hash":"4c4925ffeed5b0d0786d096a0288043d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Html.php","hash":"50ddcb4555e821d6ea6cf79787a6cce2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Issue.php","hash":"fb7b2707ff9f0617ac82ad6027b4e052"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/ReviewComment.php","hash":"b9c4b366b6a4f0a24c53b652a1ebcc06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/ReviewComments.php","hash":"16a314d05424b5c2a636e21d4f0b355d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Self_.php","hash":"fad95f082df401ef2f339ed542c86e5c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Links\/Statuses.php","hash":"feabf6694237136646de25a6b7f4e795"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Comments.php","hash":"907496b7a3f29146d72d24ef0fe9df2c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Commits.php","hash":"a2bc5e6a273ba747a506e787ccb953a7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Html.php","hash":"8df0b37635de196e183d7a2b7066a64d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Issue.php","hash":"a15a146ef8f52efe7ed66c8a8ce50368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/ReviewComment.php","hash":"6422236c652f401336591508def733ca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/ReviewComments.php","hash":"a2459772d683c693748df5fbe5fdb5f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Self_.php","hash":"3eeb4328702540b85b1bfadb51da2d68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Links\/Statuses.php","hash":"e3c0d75ad46bf61899af62cd7430f769"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Comments.php","hash":"90144f1f455d2e9fb9705505bb0e1a56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Commits.php","hash":"4cf486c9e0e767eef9a6cfe8c24d0876"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Html.php","hash":"132fb802724ef555c4bd543b6861c3e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Issue.php","hash":"5fb10b75e739e714af941e8077a81e88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/ReviewComment.php","hash":"96e80993a9a76172a8c5dfae36cc2314"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/ReviewComments.php","hash":"707eef65e2513fd44d2d810bc4638cf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Self_.php","hash":"7506735dafbd98785eae08ed04f2afdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Links\/Statuses.php","hash":"3a075763fbdb04c1e2f2ee5cda4d2e56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Comments.php","hash":"6d586b587e6566263d26874caa54286d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Commits.php","hash":"0a71bf4e12848663ab65c7757ad112e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Html.php","hash":"457a0be08a61e1c369fce75ba371ac8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Issue.php","hash":"ce3f0cd811a3cc0e9c195d2df7ffd546"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/ReviewComment.php","hash":"1b542566bf9154db581e17597e072a98"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/ReviewComments.php","hash":"1e18a86b5a0a70d9ac5606063cfbde39"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Self_.php","hash":"bd48c054782f5fbbbca0579ee49dfc9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Links\/Statuses.php","hash":"e9de607d911cbf6f4a03d85489b5d19a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Comments.php","hash":"7f038a056db13826ac1108edf12d934a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Commits.php","hash":"9566171597870d6878b17573f26e4a0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Html.php","hash":"6c2dec73db9f6925560cae74129b73be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Issue.php","hash":"d668ba0b01d6275916cd8231687c49a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/ReviewComment.php","hash":"85874b93f2426527d6c617fc3ec0cbd7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/ReviewComments.php","hash":"1ee9e00de50941a9cb9ebe46e8098c5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Self_.php","hash":"a6953b626002e9c93971bc179ebf372b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Links\/Statuses.php","hash":"a55cd1ff8631b608b26b845b1855d1b3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Comments.php","hash":"0935dec1c4ebae1b35d29a0cec06250c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Commits.php","hash":"47d2c0584e2b8a0e339aa43c22181e4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Html.php","hash":"d78da2f7a4aea3d3985f77a2a25c2909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Issue.php","hash":"26f2d7752d7bd5d558f46d254b2cb3ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/ReviewComment.php","hash":"d565349ccfd2020c1c15eb3bc42ae838"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/ReviewComments.php","hash":"ede02cac1edc70d0bebc98a26cb14afe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Self_.php","hash":"14c298b8c6811d66285c6ded528d6dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Links\/Statuses.php","hash":"a18004937401c96b1138d276c9cc70c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links\/Html.php","hash":"9721cfbd3f9e25cab23e290e03348f5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links\/PullRequest.php","hash":"d9f4afcb7ea552525f538c2fbfc1e43b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/Comment\/Links\/Self_.php","hash":"40fd70b6d4bde3fbc54feeff0dccce07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Comments.php","hash":"24f923ffb36c2d5b55a39f12f898c975"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Commits.php","hash":"59fb080c20aac0d180edc259647d44e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Html.php","hash":"916fccb700e8ae13190089320638597d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Issue.php","hash":"287fc2963c81ceaa5517e7719973ec07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/ReviewComment.php","hash":"a5452b19fdcf72495b6dbb51644dfb7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/ReviewComments.php","hash":"201938ab955bded82acf904b3f83571c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Self_.php","hash":"4488549510612c47c23bafcbefc42259"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Links\/Statuses.php","hash":"b21c41db64df694cdebddd0962c712ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links\/Html.php","hash":"a4982edb8bf3c0bd4ae005a2e788df03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links\/PullRequest.php","hash":"ada5a6a18d6426e9bd99be26e415d637"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links\/Self_.php","hash":"ade91281f4e991c2e21bcb6366745439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Comments.php","hash":"e614d3b12f956029753775beba1d787b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Commits.php","hash":"3c476630d70b3c047ff2bedea01fe1f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Html.php","hash":"a59e0d098bd6bd345a0311bfa8adfca7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Issue.php","hash":"761eb2884300523066bd5c3bbb93b431"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/ReviewComment.php","hash":"2ba5c056c0db3ae049d037e541c0567e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/ReviewComments.php","hash":"ddc2b792dded6ee7f088b2340164bd70"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Self_.php","hash":"9c58010c7988b3928f1264b4b7d72e89"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Links\/Statuses.php","hash":"5957ac3202e699ab5c78cb7f64ce965d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links\/Html.php","hash":"f55409b22ca959c4cd36f70ce5fd3a62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links\/PullRequest.php","hash":"efa559b7a8222cff9f2f84d21fedcda9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links\/Self_.php","hash":"0375260b5d42dc019d4dca0f9900e802"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Comments.php","hash":"3b094c3f491b314d37b9c3a7c856187f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Commits.php","hash":"9b42276b1b317647daa0ea4d7958f1d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Html.php","hash":"cbf9847b8e833537fbef5db1acf6faa7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Issue.php","hash":"df9c2e6beb334a7ac75bf7d0b07e8954"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/ReviewComment.php","hash":"0dd94339921356eaaaf0d2993deb4b8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/ReviewComments.php","hash":"58c94bf0221a481f11fd3bbedbae6cbc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Self_.php","hash":"7c6594da2661e643a921ec54393da250"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Links\/Statuses.php","hash":"d721cc946a58f3005ff5e178bb09fddc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Comments.php","hash":"02ca390e0abdbb1821cb1437d96bc64e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Commits.php","hash":"49421db77d8483e5a511c9e231360804"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Html.php","hash":"1722ecb3ffa5fb8d4b4706523bf0e133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Issue.php","hash":"cb96f1d4dfff7fe6c1320042cac12932"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/ReviewComment.php","hash":"7aa392876cdc0978159ac5b27d8955f8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/ReviewComments.php","hash":"76de112eee1a34f5342649ed1dc7e103"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Self_.php","hash":"374f5ef51265484c2bc7497ba0ffa135"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Links\/Statuses.php","hash":"826e875fd800e6d99cdd7735174dbd75"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/Links\/Html.php","hash":"dc702443ea6c64dc34ea681870221066"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/Review\/Links\/PullRequest.php","hash":"a9374a71b182cd8332e386be3adb7c78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Comments.php","hash":"5ba5d49d49653b6533fd9302749f019c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Commits.php","hash":"013147a063a28063e03657bc98d98454"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Html.php","hash":"d3349d1d06feb052861dd11eda9ff46d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Issue.php","hash":"536e06fad2fa8081df75e272d622fe04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/ReviewComment.php","hash":"15e6d64e3244687df048328ff91022f3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/ReviewComments.php","hash":"20d55d36c061d7cfc16780d4de2a530f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Self_.php","hash":"bc4f0471d829e8550fe3daf5163bb2cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/Links\/Statuses.php","hash":"14d64fcd0f9aae05ef4605bce32c89dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/Links\/Html.php","hash":"1c8ea2caff85749d4e3298450c77bcbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/Links\/PullRequest.php","hash":"f455b532cc37766d3daca5acf54797c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Comments.php","hash":"fb604f46cdebccc27e5cf4a8c7b2e1d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Commits.php","hash":"906f24a72227b02d428d0d6075e44ade"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Html.php","hash":"50eca891ac3132d7b83d160aed592521"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Issue.php","hash":"d682e9e91fb9f7040b31891d6ccbf401"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/ReviewComment.php","hash":"8315db97f5701d01daec42a8fccfd9c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/ReviewComments.php","hash":"2292dba2d09eb7ae9c4cd91ad511b25b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Self_.php","hash":"3dfeaac5be9dbd31c0736c8890f216c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Links\/Statuses.php","hash":"5746eee3fb5cc05b3ba92a86a3cde659"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/Links\/Html.php","hash":"7bb5e86160971afbb3ea355577b5f6e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/Links\/PullRequest.php","hash":"76b7de76f4cfb84af33d21fe524ed4a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Comments.php","hash":"878fc21932d3ddc2c2cffa4e0f7da029"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Commits.php","hash":"f84d014eaf1e40783e3ecfef95fa6375"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Html.php","hash":"35f186f1137ac9b66c7b9e6ecaeb517b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Issue.php","hash":"1bf9061a728c778b509885fec709855f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/ReviewComment.php","hash":"b6c1ed9084fa00648ab9511078f586de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/ReviewComments.php","hash":"c87ed3a518af3fe2561c7abfc296727e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Self_.php","hash":"4183362a139363b9de33bcfea3283447"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/Links\/Statuses.php","hash":"476edbd0092c9ad10435c6a5c870d518"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links\/Html.php","hash":"e77879155dcfd641fa525c02bb383c87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links\/PullRequest.php","hash":"4fc302bfcc8ae97a0c1bcffc7276cfd9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links\/Self_.php","hash":"f08d02e2d0a6fc37310b7fb928979346"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Comments.php","hash":"26374ee476fa89e8b8c2092c73b99c77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Commits.php","hash":"3287a702899250fa8025f0567aaeca87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Html.php","hash":"95bbb649261493a5a411ddf84a4489f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Issue.php","hash":"d58984ec4e39d0e872305f2644d96f0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/ReviewComment.php","hash":"ab09180f302f0e61a4e1684401e40be6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/ReviewComments.php","hash":"97d20a237e45f9ab0fa1e90feeb2db64"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Self_.php","hash":"061d7f7a20208cb19b354e3a5c620fb6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Links\/Statuses.php","hash":"b5e1973cd1a62cec55676166e6b88503"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links\/Html.php","hash":"4d9135e01f4c594ad09e3935ee5c2434"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links\/PullRequest.php","hash":"8a31e433eaa3477f8956282d5731b20c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links\/Self_.php","hash":"dc7a0264408c37bfdbe72076ef0f0b8a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Comments.php","hash":"660069fdb48163e2bf2109690f3d3a1a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Commits.php","hash":"7efdb20a125aff963eba3a2c28e57bb1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Html.php","hash":"19d16a51075b7cf2af0982156180fc9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Issue.php","hash":"5874982a796a73764d533b1cafcd242a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/ReviewComment.php","hash":"670f8a1b362234582c6ab14ecf4cb377"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/ReviewComments.php","hash":"1b77652cd6589289ca0f5f605b220c40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Self_.php","hash":"13308878ad5d270395e7d979a9b51439"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Links\/Statuses.php","hash":"3856edb2518b569e0ee03c3c748118c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Comments.php","hash":"a18f4caaf02e57bc02e95651a7e03f82"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Commits.php","hash":"2b40ae545eb6757c6eeb18e24f93d3cc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Html.php","hash":"d9da44bd3ca25c0d098302768a759c3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Issue.php","hash":"07586df5ebf50c90c8c3c87400bc8065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/ReviewComment.php","hash":"42e143cdd0f2eb01d1f60b7d019df198"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/ReviewComments.php","hash":"306a69f72c1fd3f48529476c7ec89c28"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Self_.php","hash":"b27e6c496b4d00e59bbef4d9d8c3c482"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Links\/Statuses.php","hash":"9eaeccbbfc3642064040d13c6491c5b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Comments.php","hash":"c4601b28f43306ad0212c3e1d66c0814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Commits.php","hash":"3cdbd727c6c408f41864936adbef0308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Html.php","hash":"552a382c2745bb4c8e8922c53fb94515"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Issue.php","hash":"f6694b342773570eacd8fc35f83c54ef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/ReviewComment.php","hash":"5f1636d0bb233dcac429654cb913d6c8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/ReviewComments.php","hash":"76d77325f54c4c9f456dd3edc7c83ffa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Self_.php","hash":"efbf251003cfb05afc2f7b4d15eb23b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Links\/Statuses.php","hash":"7fe868396547f9af7749dbdbd9dfaa5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Comments.php","hash":"fecd4a55167cdffacce3144904bc5c9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Commits.php","hash":"eb54d68da33d4a3df52430607c292541"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Html.php","hash":"2467f5d504e1310db4c2575a455c2c68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Issue.php","hash":"08470992c610f1deaf5bf83806b9a699"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/ReviewComment.php","hash":"9842427d8c4371c7c4d398b70071a436"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/ReviewComments.php","hash":"4fb98489195cf60a6fbbc7ddbbe5fc11"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Self_.php","hash":"f82121f66eba4f28cfe0ae33f3af336c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Links\/Statuses.php","hash":"24ae3959fa13dd8d455a5aca96d4957c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet454E9788\/Tiet6D6E977B\/Tiet013CDAB3\/TietC3D76EBB.php","hash":"9f5e5caa9a42f6a57fe90c8c139c74a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/AutoMerge.php","hash":"94625626657df018bab02cf25f3906dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/AutoMerge.php","hash":"f3c0a82d11f0a7cba4df565fe71b4b4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/AutoMerge.php","hash":"cb46094b7db614c7b5699304c1f95443"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/AutoMerge.php","hash":"be5e124dad548f1aa94572414b6118d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/AutoMerge.php","hash":"98b32305c5596f53c60417eaf86cf650"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/AutoMerge.php","hash":"3faa32cbcdb4be920524c1d8bb49585d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/AutoMerge.php","hash":"0d5104d5e2096dbe78dbea94025c94f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/AutoMerge.php","hash":"f75a121b7fda6a18837bd06ed193c8ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/AutoMerge.php","hash":"8fc6137991108b704073f03a26eebadd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/AutoMerge.php","hash":"2f25251baf8366a3382cecd615b1e475"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/AutoMerge.php","hash":"0fc8af1a173e7552e7f4e50a492894dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/AutoMerge.php","hash":"00892a645068678d04f972d864d413d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/AutoMerge.php","hash":"04258437edbfaa074cddc7a4f71970a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/AutoMerge.php","hash":"add41a5ca71d5270d4402057f990203d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/AutoMerge.php","hash":"412e4d4020fb8330616da2f8ab6b3269"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/AutoMerge.php","hash":"fba2cfa1b21220936886fe2a35377725"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/AutoMerge.php","hash":"916f00980d30943e2f6688c91d3344cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/AutoMerge.php","hash":"87c6bbeec7c35d0f3a025a5995fe5de4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCF3C99E2\/Tiet7F849F7A\/TietA998F925\/Tiet7CBA9D3B.php","hash":"284234d9ae6530ff4d965a6e8432d337"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head.php","hash":"61fe08fc89408761921329f5caa16bd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base.php","hash":"7a5355219f818d29659fa652f8afbb81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head.php","hash":"068bd7a1c81907cceb8dcdc724156bef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base.php","hash":"a398f3f16212ecf32c48ba628aefb3d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head.php","hash":"47f17de7bc19db8cafb11624d0cc6f1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head.php","hash":"ffeeda4a44b45c0ab391ff45378b804b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base.php","hash":"ce961123b83f94c23dbb00e79e843b59"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base.php","hash":"b73de9b12186c820d2c723e723df028d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base.php","hash":"f15efac1f0ae08b59d42e0f0478d931b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base.php","hash":"d107443be4264e756afe789a31dad7e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base.php","hash":"52aa5d7bccd8d70482cec51f6b7fe43d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base.php","hash":"96b3db1257d3425f05028dd7878cf3e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base.php","hash":"fdb4433cf852855fdf5123de74e2f366"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base.php","hash":"347fef43601e7c13ccd8806cf2338dc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base.php","hash":"1e9ddc0380a610a98e51943a67279d4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base.php","hash":"891ec928d30faaa7bc9c8663863e30bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD0F4187F\/Tiet80279EC8\/Tiet0EDB1C19\/Tiet55CCD6EA.php","hash":"32cdc402407c47a4a3e7ab334289608d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/Head\/Repo.php","hash":"9079f46cae31b1caa2160e289292f2d4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Base\/Repo.php","hash":"fee5fb6d08586d701f36cc5c27be1792"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/Head\/Repo.php","hash":"e7fe4acb2ba8842bab4e966c36e422e1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Base\/Repo.php","hash":"99949c32c057f5674d3b2d23886c03df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/Head\/Repo.php","hash":"9c700d64211a24bbf55323a1dd1847cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/Head\/Repo.php","hash":"8f7ed4134774c71e6ba411235d1baf4f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Base\/Repo.php","hash":"fe5054454a08f3348a2b86ecd11da962"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Base\/Repo.php","hash":"ca8e15e219b96666141a70fc984a0fce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/Base\/Repo.php","hash":"941d4cdb72522733ea95a58597f8357a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Base\/Repo.php","hash":"8022793fc9c1a994d1eaa720a9bc9985"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Base\/Repo.php","hash":"54ade1d5936243c18446cc6d90e473de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Base\/Repo.php","hash":"dd45cd8fd32f343318612a7f92808bb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Base\/Repo.php","hash":"6b6138f389a87b42c6625ebabff8eeef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/Base\/Repo.php","hash":"3209a2f7cd4e0b31b358fb9be9c7e19e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Base\/Repo.php","hash":"b3df885a776661d279d45e42e9923dd6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/Base\/Repo.php","hash":"b2664173c68b992d6832b6795a0b7308"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Base\/Repo.php","hash":"c6dbafe88631f3d799f36970a6217df4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2A1C09F0\/Tiet677D78E0\/Tiet82277866\/TietC9E2E69D.php","hash":"c75f37663ff281754188944e665688b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head.php","hash":"f37eede93eec7c371ea5bfdfeb48eb26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head.php","hash":"0c01ded46148af08ffbf094e8f79caef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head.php","hash":"d6405f018c5fd7b111d137dc4b6c52be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head.php","hash":"716f840883c5f89c705730069c7cca6e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDA0148FC\/Tiet07C85FF7\/Tiet950A70E3\/TietEDDA17E3.php","hash":"9ac174305e49f56a6517153c91393867"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/Head\/Repo.php","hash":"609f9401462c14c7594b4d8a0d13b6a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/Head\/Repo.php","hash":"7a2fa047bd00008b313d575442e4d2aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/Head\/Repo.php","hash":"db16366da319d2ead335cf0f9c2c9944"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head\/Repo.php","hash":"9ec61ef2c517b5b0a5d2f55d05e70aaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head\/Repo.php","hash":"4c24ac6e760eac263adfb9887d781499"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/Head\/Repo.php","hash":"5a29af83aa7c66295c65e4002d4629ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/Head\/Repo.php","hash":"6acf1c1dc007396f456d8ea721f0c07a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head\/Repo.php","hash":"f072c81ff8676271a06ca235d0a7bda7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet51D306B5\/Tiet4F835975\/TietBE2CDDF8\/Tiet6848B990.php","hash":"862b406e84cdf55cd8f9f1be9c5c9a7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedReviewers\/One.php","hash":"ca3e91bb1d0bacf1eb80a6c7c60d14e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedReviewers\/One.php","hash":"33071cb814d4979875499d8ee3a2338c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedReviewers\/One.php","hash":"276e6476f94fc1fd5c0ed359d2cad62b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedReviewers\/One.php","hash":"a8cd3ba3514d43f1b31f3516c91b5dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedReviewers\/One.php","hash":"fa8e902f062e926aaf0ef833c193909d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedReviewers\/One.php","hash":"49b837a668ebfc048fa21244f1b51f3a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedReviewers\/One.php","hash":"007c21e2f8693abf8f9ad51dacf9aa67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedReviewers\/One.php","hash":"5c58f776ce351044f2d407f1a89f3bcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedReviewers\/One.php","hash":"cc8c69e236b32f4bece1d1632b101a50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedReviewers\/One.php","hash":"36b523f62c85fdb73fe5d385c6bb68e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedReviewers\/One.php","hash":"65506d97ae9cd09e952d92f4cccffe51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedReviewers\/One.php","hash":"a03b3d9912a61e5ab864cda0a5fef669"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0C241E57\/TietA93A50EE\/Tiet4F8D28A0\/Tiet8FC1B4B8.php","hash":"08a97e1f4a58d4fc75590d5308d4c617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAssigned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"ce72c45a690f5f3827d1ad67984d29fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"79317931cb5e41a663273e7a8f14ad79"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"3b02e1bebd06297bc6e5191bdf694246"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"5fbbfa7c5ebd984ac2f6302745b537b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"ac1fd66dfae1497ae7a936e189c245f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"5ff4af05bb7f3221d2e811659fd488ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"7afb711f2412dd246d15ce9d783f5a95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"29338339dc987383e727d00c8b337816"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedTeams\/Parent_.php","hash":"e42d9385d08daad529f0585076169a03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"72882db60bf023b1885b420dcca0fe8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedTeams\/Parent_.php","hash":"9c9b6863345b4dd39c24612283b8dab7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"d2d491efcb6f9ef1d0b355277a83c4a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"f6c2ad1ca15b83479de25967a7428178"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"52262f41a71733e416867fdcb1aebe9b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedTeams\/Parent_.php","hash":"dd61f0475d13391887daea29f132130c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"bb5078aa819c3819004feeaa2f51f157"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"1710a2307d9acc2ce980c95d3eb251c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"83967477332916baf4770413c6fafcf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedTeams\/Parent_.php","hash":"5663bf8d6c3bbba8b28a6d8eb10bd9bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"47c5cb8045d8f5f40841c71b48663068"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedTeams\/Parent_.php","hash":"983f2e84d0fe0519ecd2c4a7cbd09a0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"62416cfe79cf3cb58d938fe38eb52790"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedTeams\/Parent_.php","hash":"dfbf6f5338443c02d0a1d989d8865579"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"b88b915284fe28e8b37e44fb743cc876"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedTeams\/Parent_.php","hash":"ab481678c088614eb272645e639c5dd4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"510adb565e6042b72b031b6056dd0185"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedTeams\/Parent_.php","hash":"e03d353211044224af8dc5a49da7aad5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"403d427b6b2834a420380f4184ec06bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedTeams\/Parent_.php","hash":"4e350f22d0be6563575e40be27f566f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"f8b085bd71cccd26754121017634400b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedTeams\/Parent_.php","hash":"fd76e7ade7b3682323602f08dc28ee21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"4332442b9b2ef893bee393bef4588bf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedTeams\/Parent_.php","hash":"23f187d932677495554db2d1e54287f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"48df4edc7bac520c105a25d81f61159e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedTeams\/Parent_.php","hash":"edd3c5d378752dfc69edf1e1e837afd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"8031af678f4596b6ccfcf4904dbbbf37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedTeams\/Parent_.php","hash":"eb1289b26702a3d40d0e15d742c73928"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"50529014d2dcf76f193a0ab9a6ce933c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedTeams\/Parent_.php","hash":"8953b104131822bcb07adbf5bf527c93"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"e29a786bfcbd80db6d48e8fa1480e281"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedTeams\/Parent_.php","hash":"b8882eb8a362df817490bb8e8846fde8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1C1A84A6\/Tiet41F746F2\/TietC07C2DEB\/Tiet51D9106A.php","hash":"aed64ad7139a2c0f3b7f025813a2b427"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeDisabled\/PullRequest\/RequestedTeams.php","hash":"215b13421314301df490bb82fc538394"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestAutoMergeEnabled\/PullRequest\/RequestedTeams.php","hash":"3f95847a7913caf9f36f7e77114f1f53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedReviewers\/One.php","hash":"5cfd0fce04bc69fb59ec40f867f4f979"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/RequestedTeams.php","hash":"36d68163133fb0c77479833d80c45d38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedReviewers\/One.php","hash":"eda50fd667813a3c15e961196c63cd00"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDequeued\/PullRequest\/RequestedTeams.php","hash":"180b84469008a5c56a22f09560eb934d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedReviewers\/One.php","hash":"0e1b954bb93f9fd9c2f5b67cc2300a04"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestEnqueued\/PullRequest\/RequestedTeams.php","hash":"97b77a84e0d6a17a0746ac3f31d43605"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLabeled\/PullRequest\/RequestedTeams.php","hash":"1e200b58bb321b2144824ee9e1ba7502"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestLocked\/PullRequest\/RequestedTeams.php","hash":"9ac179935dd584e77104d5623beab865"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedReviewers\/One.php","hash":"f7b9a81d71b82b0a9d76ef4a39371d63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/RequestedTeams.php","hash":"ab891a79c4dea95bd4d37d9f6a77d82c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentCreated\/PullRequest\/RequestedTeams.php","hash":"6b511cb1baa6789a18112fb130884da7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedReviewers\/One.php","hash":"1f8937c6d29fc6731864df4da865c1c4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/PullRequest\/RequestedTeams.php","hash":"ef4bed19a948cb109d90ff7e27fc89ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedReviewers\/One.php","hash":"cfcc0af86da21e5ed8de7831fc6fa18a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/RequestedTeams.php","hash":"ab3373ea4a7442ec2e5688207bf06e63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/RequestedTeams.php","hash":"f41df491fa4cddc56a794f068f451f15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/PullRequest\/RequestedTeams.php","hash":"f4eb520016f3cb2240e8917d93992c0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/PullRequest\/RequestedTeams.php","hash":"e4ef45df4152774fee0cb1b5ca30092f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/PullRequest\/RequestedTeams.php","hash":"3859250a6283bb7e96385b6fb8f3837d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedReviewers\/One.php","hash":"bac2ed4a2f38a3b973c234764169ab6c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/RequestedTeams.php","hash":"d8e37e7a21dea9aa3831e27443557d8e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestSynchronize\/PullRequest\/RequestedTeams.php","hash":"2eed9cf84fb99d301349f1f6385d9143"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnassigned\/PullRequest\/RequestedTeams.php","hash":"67c7c04a9bcc8af0e7f073481d15bc78"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlabeled\/PullRequest\/RequestedTeams.php","hash":"66b2ee60b5ece1f4b660141ebb2932cf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedReviewers\/One.php","hash":"d653dd993326737042221734ae4672ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/RequestedTeams.php","hash":"87b0f90ff7c47bd71b2076ad72a1a97a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet02FB9E1D\/Tiet04B27D04\/Tiet1DA9CFB5\/Tiet0FEE60B9.php","hash":"bde42b1930159ebca8dcd30df041196e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest.php","hash":"71604be94ae1bdc635489462f488afef"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC791A23C\/Tiet9A6EC3C9\/TietA258C668\/TietA94C831F.php","hash":"449d2977d2cb1fa248558513a6d9996e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head.php","hash":"9373c9e2faef49cc5120e7eaa4046baa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base.php","hash":"9c34114fb7fe77ecbcf4b3b24a06b6fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head.php","hash":"7ebcbe25544a527fd7a77f4b0a6a1f63"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet78A1ED87\/Tiet350943AE\/TietDA8047D8\/Tiet006E988E.php","hash":"54e6e3f0f2385fdc6795b06dc86939a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestDemilestoned\/PullRequest\/Head\/Repo.php","hash":"75c7c1d9befc6d36ab01a3a9815f575e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Base\/Repo.php","hash":"88db49d5cc992c8f4b7c2810f09fbdac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestMilestoned\/PullRequest\/Head\/Repo.php","hash":"33e0f870c8248528442443db31c903c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet63554B17\/Tiet9FC888D0\/Tiet0D411437\/TietBA9BB280.php","hash":"ffebdbd53a29b772e4593d67ccd3f33e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentDeleted\/Comment\/Links.php","hash":"7faef1f538015075ac73bd09d2adb1d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment\/Links.php","hash":"019aa39d29d175594698b25ea4dd57cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadResolved\/Thread\/Comments\/Links.php","hash":"51774deb440c832a2e1048f7e178495b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments\/Links.php","hash":"afd1fd269fa72a975cb5be87ff444d60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/Comment.php","hash":"a3205c795622aa8368e2082fd6f8901b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/Thread\/Comments.php","hash":"00d8bf2e3a3aa5c8cdef30b39bc76617"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet51EE4240\/TietBA74CBA9\/Tiet8C4D28D8\/Tiet8FC02F59.php","hash":"d5af38916715b13fc71b8a91ceb71825"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewCommentEdited\/PullRequest\/Head.php","hash":"856a9e766296d948c5c06abac6df6145"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewDismissed\/PullRequest\/Head.php","hash":"57f16f468796c0bf7e219ef521c3aa88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/Head.php","hash":"f53082e06879a8e47003fc548c8c356c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3725E255\/Tiet9D780678\/Tiet2692985E\/TietE129B0E5.php","hash":"0f832109c87771b4fa2451d6dae49127"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewEdited\/Review\/Links.php","hash":"449f8623224372a7b9b0acb7e46f3721"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review\/Links.php","hash":"eccb9d74457eb2b4f57c350515b9cd6d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet898C17C7\/Tiet092C4CE4\/TietA187A93F\/TietDB7AA793.php","hash":"dfddbec087faae6033a466d750fe950d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewSubmitted\/Review.php","hash":"90be51539cb75dfd1e85065c2ed306bf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4E185393\/TietBDA2E772\/Tiet8E84BE53\/Tiet71E72B6A.php","hash":"cca9d5c88dd0bc1273a04b5c08cc25db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Base.php","hash":"ce363bd6a5755af904babe12cbd090b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestReviewThreadUnresolved\/PullRequest\/Head.php","hash":"17b3801c6a656ba952ed80a81d35a711"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet86CD80DF\/Tiet7447BE97\/TietF36F9C9D\/Tiet51ABC919.php","hash":"3de9a8d04e5acd5434a269ab67158dd3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookPullRequestUnlocked\/PullRequest\/AutoMerge.php","hash":"cd715b65308609d118fdd8637b0a84c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet34BD5242\/Tiet2F7181A6\/Tiet56F048A6\/Tiet9E26E9C8.php","hash":"d0edf5d82cc6d4ae49e2ea1a46243c7c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Author.php","hash":"6193c7cdc9001e050094ec26727d3f1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/Owner.php","hash":"44de70c3ff1fe8566d1e00d4b8560027"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Author.php","hash":"ea2daf8dcecbedf71f0253e2b068ab15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRegistryPackageUpdated\/RegistryPackage\/PackageVersion\/Release\/Author.php","hash":"d0da929a4cc918a50926b08f9dfa2ba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/Body.php","hash":"051b40c9d79519da135736b6da0be062"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Author.php","hash":"3fa514229fdf5271c18427a309130acb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Bugs.php","hash":"2bc9691b78268c348245069573e6cedd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Dist.php","hash":"abd0f1c084710d5678408d2b0cd66dde"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Repository.php","hash":"e09ab3d8a3cb09b1054e1775b158461a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NpmMetadata\/Directories.php","hash":"2c4ffce2920d70ddce585d8ac5d41490"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Id.php","hash":"75b445076c148f228428d2262ed09c9f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRegistryPackagePublished\/RegistryPackage\/PackageVersion\/NugetMetadata\/Value.php","hash":"7002de2adf316287b8de9cccf1f9aa5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release.php","hash":"d89cd11909d8c1642d3c57d25cfea087"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release.php","hash":"ca42141ff4ec5cba185c0ebe480b144d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release.php","hash":"6861bd651d3cc13b110d91cf154b432b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release.php","hash":"a3cc652cabe9e48d01af928e95d105b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release.php","hash":"a0484406877fb3857d7a17b590bf3ec3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release.php","hash":"db0aa1cd71eb11a57b0c0802f77fc347"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet12E12BC7\/TietBAD18578\/Tiet253E2049\/Tiet6F2B22B2.php","hash":"c413913b052069da8a5122201e16d065"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseDeleted\/Release\/Assets.php","hash":"9b02dd5f5cceb753f95c2943df607150"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseEdited\/Release\/Assets.php","hash":"6a0aa9d5d25ada3ffbc431cff1cb9d4b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePrereleased\/Release\/Assets.php","hash":"95c3018f4430c8462ac07505bc46eae3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleasePublished\/Release\/Assets.php","hash":"dccbb4738a2ac53be410b537d86ff575"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseReleased\/Release\/Assets.php","hash":"2101796d842d395304bbcfd7414d0fb2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookReleaseUnpublished\/Release\/Assets.php","hash":"c5974d2667775009f7a0acfc38bbafcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet76B5D9AD\/Tiet3F1D0B82\/Tiet9290F302\/Tiet5AB2627C.php","hash":"e11ab1ffe4b719f3badf77a047771b15"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowDispatch\/Inputs.php","hash":"1fc98798eb5ee61056301a4261c25a5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1CF91DE0\/Tiet4DB5DE15\/Tiet56410125\/Tiet72117C37.php","hash":"641599576b2decdeea1a98af653f7cc1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertReopen\/Alert.php","hash":"ac392b89708dd8380d841185fc3f965d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryVulnerabilityAlertResolve\/Alert.php","hash":"98e12d6c5c2b4e99c61e30d94b7d488d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietEACBBF43\/TietA336C287\/Tiet547A1212\/Tiet82A471CD.php","hash":"1297224d9453884c30daf0f692030e9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory.php","hash":"959b704df99df2e87eacf9ddf1f93510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA304CE1D\/Tiet51CDBA42\/Tiet045AA15C\/Tiet0E7CC885.php","hash":"a31bab90870d69fb519de1b7b6c85466"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Cvss.php","hash":"5a8bb7818cbf8f824d3e2b6646bd94a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Cvss.php","hash":"9774af7e4384979b867ee195b0fb57b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF13B5ABF\/TietCDF31C82\/Tiet2F9DAB19\/Tiet1DB2FC80.php","hash":"ea3561a1e886b4434555811ad006e805"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Cwes.php","hash":"8059a7f72e6cd40ae440849599f09bd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Cwes.php","hash":"0d29daa8c64c054854074e24899ff660"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBCF0AA24\/Tiet9CE55B8F\/Tiet7911DF47\/Tiet9F4CD41A.php","hash":"cca97193a580a35d3851f0e69f33c942"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Identifiers.php","hash":"43f08027df05459c636f31698369009b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Identifiers.php","hash":"5fe35190cc0809f7cfc43e3311e5119e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF0FDE5A1\/Tiet9EE34E3A\/TietA811F484\/TietFC1CAEFD.php","hash":"e4ccc6f668276e2f072ea6d752289881"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/References.php","hash":"8deb4d46f61d4bac73407828978018ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/References.php","hash":"7bdabbf5b2f4d8a04200241a82b23165"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet278FF5F4\/TietCB844597\/Tiet0ACB939F\/TietD15AFC5C.php","hash":"aae2eed3626be5857f240a68db2684c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Vulnerabilities.php","hash":"8eb59ef6d6cca30ecec72dda29992c2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Vulnerabilities.php","hash":"053d8e9d24c5218be4c2bdb5a9de46ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet35D8CB5A\/TietB8167CE2\/TietDE06741D\/Tiet76CD4BDC.php","hash":"14ecd1bb062048f01c7a2052ad0c0a85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Vulnerabilities\/FirstPatchedVersion.php","hash":"5876a08fc568fd0c319c6ff6dbd43f0c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Vulnerabilities\/FirstPatchedVersion.php","hash":"684a9b42eda068cb8fb2f062883fc421"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDD5FD85B\/Tiet2CB66CD7\/Tiet1059E1F8\/Tiet79C1FE79.php","hash":"7f303623b9f01cafbb12a79bf0954629"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryUpdated\/SecurityAdvisory\/Vulnerabilities\/Package.php","hash":"4a177bef60bc2d1596e7daf91ca1628e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSecurityAdvisoryWithdrawn\/SecurityAdvisory\/Vulnerabilities\/Package.php","hash":"963182cf9cf4b32555268e2d623367b7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4FED2708\/TietB62E94A2\/Tiet1C4DD3E1\/Tiet767869D4.php","hash":"ad28f95bd9a93b8968455364199a182c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship.php","hash":"dfe820182b2306c335a54e3a52595e3e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship.php","hash":"239197be86596d000be6b53cff752505"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship.php","hash":"f989b007f5fd92515760bb6ceb71200e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship.php","hash":"aae5e1d1f683281a6ce08fc3b50a4646"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship.php","hash":"cf5d78b37c9f3eb48376ad08e9a83e81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6F013B0A\/TietBD1E3881\/Tiet6CB4A3DA\/Tiet59904AE0.php","hash":"20f68eb59e628ce6356f58b23cc9c57c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipCreated\/Sponsorship\/Tier.php","hash":"095c3e6c4c5b6d8b0165e14201f1d442"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipEdited\/Sponsorship\/Tier.php","hash":"5f086cf5c88213b16c316a38af99014d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingCancellation\/Sponsorship\/Tier.php","hash":"633d685d0803bf9a892055806b0f4525"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Changes\/Tier\/From.php","hash":"d8b38daf1172a670ec98a181c2829258"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipPendingTierChange\/Sponsorship\/Tier.php","hash":"1b96aa4281845ca9e192b282f01e898c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Changes\/Tier\/From.php","hash":"b4d8d6f658ae463fe9b604c7c31a4576"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Sponsorship\/Tier.php","hash":"19a1cb617315ae8e6adfccc2a7ec2370"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1E222532\/Tiet5480B023\/Tiet8780DE84\/TietD352E3CA.php","hash":"71b67c70fa65efbc427c9af8fbef6fa3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Changes.php","hash":"9185e12b9285d656803083dc08eb3658"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF87473C8\/TietC3F6C8B5\/TietA00ABCD4\/Tiet8E143093.php","hash":"ba3fd0893c7724b7c8e1d8931270f4bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookSponsorshipTierChanged\/Changes\/Tier.php","hash":"7e8b659e24ff52103db41faecb2e6d56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet97BBA23D\/TietACCE0A37\/Tiet771D92AD\/TietB50B3D33.php","hash":"20fcdbbae7b463741d9bf3e98412abe0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookStatus\/Commit\/Committer.php","hash":"83b227c048647c23c06bac7f9fae6c6b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC856E02B\/Tiet3668DEA2\/TietC91A1BA9\/TietFEFE97A6.php","hash":"bb3f81b46333d4154a3504de6a194b38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamAddedToRepository\/Team.php","hash":"744b30dcfa67b6a47745eb01e2cfda7f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamCreated\/Team.php","hash":"9960b50a3721c2aef7523af960526254"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamDeleted\/Team.php","hash":"91153c9433a5acbbe7799d84bc3bff88"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamEdited\/Team.php","hash":"cb332d139a2d929cd309f4ffdb5b8ae3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookTeamRemovedFromRepository\/Team.php","hash":"7b0a2ae7120bfdc6e034c5f88d93bf60"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA3C33853\/Tiet2B274B8C\/Tiet9CABA449\/TietD2612DC6.php","hash":"4384efe2a9b5569f068be75c8e3aa21f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunCompleted\/WorkflowRun\/Repository.php","hash":"8a0cef41ffe39c339bb09408fcfb3e8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/HeadRepository.php","hash":"df8af12379e9b819b4f8d83afbe0037b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/Repository.php","hash":"bbcfc35b912487809432946b7c8e7d87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/HeadRepository.php","hash":"40e0d34b5b6fca44977b3df0aeb3b0b2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/Repository.php","hash":"1dfaf380d1dd611059a53d39339cf833"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet62DE450E\/TietBDB05BA1\/Tiet285A643A\/Tiet4D2CA009.php","hash":"bda8fe9c928579e7e04d321c972013e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunInProgress\/WorkflowRun\/PullRequests.php","hash":"d8bbcce259406b4d0a70cdc119af1b54"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookWorkflowRunRequested\/WorkflowRun\/PullRequests.php","hash":"26fea810598831d11577b69fa7667e10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet3AA725F0\/Tiet5DA89A79\/Tiet8EA4A5E0\/Tiet126B4323.php","hash":"666b135581b25116e16b16c9c8fb2121"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/UpdateWebhookConfigForOrg\/Request\/ApplicationJson.php","hash":"d3e62d9ea504c9214b7174ae4bf04d21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9197E244\/TietB82917D2\/TietACD5D9B1\/Tiet79DAB836.php","hash":"4283852fab1c62b88258ca29725cc7f9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/DeleteToken\/Request\/ApplicationJson.php","hash":"c43e625c650c0e272d703d2020570763"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9A3BF4C1\/Tiet9B6D9294\/TietEEA46918\/TietD9FBD504.php","hash":"086d89698ea37e5a246407d5d07a51b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Apps\/ResetToken\/Request\/ApplicationJson.php","hash":"1f088fd06d92059a47c9161e497170e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7CCDEB8D\/Tiet72C56F20\/Tiet84EF071E\/Tiet7F398831.php","hash":"a1a9f22459efd2a9bb5b4ef20b70de5a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"49100533bd9e444bcb4343174eaca5ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/ListOrgAccessToSelfHostedRunnerGroupInEnterprise\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"fe378853c3079cc64652a07907f5f0c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet64C370DE\/Tiet030B21C9\/Tiet0FE13F38\/Tiet1E6A295D.php","hash":"84c533be8968ff7b552acb2beb680aca"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersInGroupForOrg\/Response\/ApplicationJson\/Ok.php","hash":"8c7fb00ade19b82bcea7453d8a43b731"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersInGroupForOrg\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"79727e56154ed154f2aeb19368921674"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC1ED0A10\/Tiet2CE6A484\/Tiet45FE9908\/TietC65D2293.php","hash":"62f7f97f04f7031db0c6bac70d58418d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetSelfHostedRunnersInGroupForOrg\/Request\/ApplicationJson.php","hash":"5757fb3f737a05913ab72191820a2645"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet465FFE22\/Tiet83692C35\/TietB7E35CD3\/TietF31B8C6B.php","hash":"36081c1df4593bc385aabfb72aaa5368"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\/Response\/ApplicationJson\/Ok.php","hash":"7a14771521e1c77ba3c8894839448412"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/EnterpriseAdmin\/RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"97b2433f352483b14d8ea98a93d07dbf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\/Response\/ApplicationJson\/Ok.php","hash":"073f4510e75048d7c9e03d88b54d01dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ad6e370b413da0cbec4df69fb3bf1a68"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\/Response\/ApplicationJson\/Ok.php","hash":"27ee4244e5e49590eb9592798c9498ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"8d8f95830d83621a9aa351c10dded007"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet26CE37AC\/Tiet45C329CF\/Tiet34ACA72B\/TietD6CFCAE8.php","hash":"3414c5104572273114a3f699f17f39b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetCustomLabelsForSelfHostedRunnerForOrg\/Request\/ApplicationJson.php","hash":"eb53de6f92588686884b518d7d5d7035"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/SetCustomLabelsForSelfHostedRunnerForRepo\/Request\/ApplicationJson.php","hash":"c5e7e8db10abd0ac84ad06d38199d2ab"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCD5D02C5\/Tiet4E256C1F\/Tiet61ACEA46\/Tiet3E527414.php","hash":"3b0235a506fdd642d315d830938f825e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/AddCustomLabelsToSelfHostedRunnerForOrg\/Request\/ApplicationJson.php","hash":"961c39376d47a2d538507cf26548832e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/AddCustomLabelsToSelfHostedRunnerForRepo\/Request\/ApplicationJson.php","hash":"7d5ac526f01c1a5afe59d47b2803e143"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA6C458CB\/Tiet06A41796\/TietA61C9406\/TietD9040D20.php","hash":"5af5737b81de24a15ae3eda02b3fa8e0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Gists\/UpdateComment\/Request\/ApplicationJson.php","hash":"44c7edc76e58f69f8eef3ce744f0900a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE1799B92\/Tiet5032A0F8\/Tiet8BB31395\/Tiet34B34FE7.php","hash":"31f621e623414e94a2da4ad2cb865e77"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForOrg\/Response\/ApplicationJson\/Ok\/Application\/Json\/One.php","hash":"4eee2923af87a369c1f6cbab775beb8c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ConvertMemberToOutsideCollaborator\/Response\/ApplicationJson\/Accepted.php","hash":"51744f4bbeb6e9fa5df06477f37c35ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ConvertMemberToOutsideCollaborator\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"868dc3a74b5a5f7d9036bad41546048d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Created.php","hash":"a47268c420417ce97eeb3fe539ac0366"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveCard\/Response\/ApplicationJson\/Created\/Application\/Json.php","hash":"ed4a032bb7a8541003d02084aaec3be1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveColumn\/Response\/ApplicationJson\/Created.php","hash":"8e22fb3fb5079bc486be980ad982aaec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/MoveColumn\/Response\/ApplicationJson\/Created\/Application\/Json.php","hash":"b3486cf26397f2196f4ae8f2f2717d0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForRepo\/Response\/ApplicationJson\/Ok\/Application\/Json\/One.php","hash":"99ddb1afb36d32f0cca7be6d8599a1ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json\/One.php","hash":"66517a65217271040c6deac1b1f18f1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2809284B\/Tiet6E54D0D3\/Tiet4017715F\/TietFE5636BD.php","hash":"f844b0993ba6518110081918efa7fa8f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Markdown\/Render\/Response\/TextHtml\/Ok.php","hash":"c35fb7c4ac6e9d6e9797e1fe50e82146"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Markdown\/RenderRaw\/Request\/TextPlain.php","hash":"febdf731a91cdf68bcf881d695dc6974"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Markdown\/RenderRaw\/Request\/TextXMarkdown.php","hash":"28e7e043038d020a8d4e566673115a7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Markdown\/RenderRaw\/Response\/TextHtml\/Ok.php","hash":"40c693aae1bb8b4c14aea42ce3b871de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Meta\/GetOctocat\/Response\/ApplicationOctocatStream\/Ok.php","hash":"3b5d748e22d4b00a7e182e8ff91c8509"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebHookHeader\/Location.php","hash":"0feb32d91beb53fa3b284ff2001f55a6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/GetAllStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"7c48ac2f07aa768e9d94f736aa8cbfcb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/SetStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"ad700a20ed5e76982c19c1f820aa3d06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/AddStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"5f2014fb93e926b7882659825ea2a455"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/RemoveStatusCheckContexts\/Response\/ApplicationJson\/Ok.php","hash":"98b50b3f7f095f3756931dc21a2825e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7B1F87F4\/Tiet2CA7F4E6\/TietF27ED1BC\/TietBFCEE301.php","hash":"22203f90e280f947edb36fd21abea05e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/CreateDeployment\/Response\/ApplicationJson\/Accepted.php","hash":"b99b977f948be8d280ad07284874cf92"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/CreateDeployment\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"a132f0dc8e8d52b8c2ab4980141ef75a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet5EB50E44\/Tiet2B2EC8CE\/Tiet69829B4F\/Tiet5F2241D9.php","hash":"348dd1c91465e6d74122c82ff50e7960"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListCustomRepoRoles\/Response\/ApplicationJson\/Ok.php","hash":"f26f4ada5f802a318b521473c287c5e7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Orgs\/ListCustomRepoRoles\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"8c816878ddd46e6178ac9a3ed97c3714"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet197505B3\/Tiet7575AE37\/Tiet39584A4C\/Tiet9EFE0801.php","hash":"f8c0da3613bd631b0dfa7e99dbea640f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/UnprocessableEntity.php","hash":"f30a2f7ae696a83793324a1fd0a90557"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2329E85F\/Tiet2404E7BA\/TietF6C81F1C\/Tiet1EE267CF.php","hash":"1e5a93dab1103484c1cd7ddd1b5ffdf8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersForRepo\/Response\/ApplicationJson\/Ok.php","hash":"d0519eee9dbc875c46c3bbf4ea8e6dd8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelfHostedRunnersForRepo\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"dc69a6547868aa4fbdab67512eec5dd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedReposForOrgVariable\/Response\/ApplicationJson\/Ok.php","hash":"d5b858990e6abec238cd98be73928c43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListSelectedReposForOrgVariable\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"54cb4e700fc06c76217dd9db2d9f6848"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok.php","hash":"57e5dd22e2ef694d33504981a2788611"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ddef6badea3ab5b6c0b691a28baf1641"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok.php","hash":"5ff80c73613dd1b53da36a544fc5408d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Dependabot\/ListSelectedReposForOrgSecret\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"3a0728689fcaa3e39ddf6cc71cd5240f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"8fd489f08ceb5592f5022829694fd911"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListRepositoriesForSecretForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"3118243ca0064ba216c5de0c73814b06"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/GetCodespacesForUserInOrg\/Response\/ApplicationJson\/Ok.php","hash":"ef1b07f3631f734998361872de90d482"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/GetCodespacesForUserInOrg\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"ff96a72d4b06ef9e81607b8322b2ac23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"4c3f8e84f2c2f418a1a9c257a0b63bcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListInRepositoryForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"31b81f547e880b3a484c9ec1af56c835"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"c25c7d58ad16ae8fbe4ff2dbf5bcf8fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/ListForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"2ba0230117365d33848b3fd2352f5f5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListInstallationsForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"a332bdad4f610467742d21f4ce1e3836"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Apps\/ListInstallationsForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"9bd504d96bca3450b32d0ac959a2e9ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFA125E0A\/TietE31E9C15\/Tiet5F33BC89\/Tiet9EE2A17F.php","hash":"2e652044e61c5e5948c0c953b3988d26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForRepo\/Response\/ApplicationJson\/Ok.php","hash":"c8b7652134095f9f67c03f416930c51d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Interactions\/GetRestrictionsForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"a8497b6cdc8e813df7c1b30af37122b9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet378515F7\/Tiet728150FE\/Tiet48B2FA76\/Tiet970A57B1.php","hash":"188230c48204cd4133929ca1d9f1daa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsInOrg\/Response\/ApplicationJson\/Forbidden.php","hash":"623ac21952dc355346d3b8e248024b9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsInOrg\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"718990d418e5fb124bf3caea1e2d49f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/Delete\/Response\/ApplicationJson\/Forbidden.php","hash":"e7d6df24ab2c83a6c15a502f5d6e1b62"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Repos\/Delete\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"32d0f11bfe759adb4cd5c8b226f5d139"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/MethodNotAllowed.php","hash":"e7f2e02eec500a1647a4d3710512b823"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/MethodNotAllowed\/Application\/Json.php","hash":"6327c3f312891f285d703ee2c912d83b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/Conflict.php","hash":"0f5a6a27fd3b7a50009b626199711dff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/Merge\/Response\/ApplicationJson\/Conflict\/Application\/Json.php","hash":"54c3b4ae2d5ca1bb71893a79e0652ac8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsLegacy\/Response\/ApplicationJson\/Forbidden.php","hash":"baa7f10e53247c5ae9f5a0619c023712"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Teams\/AddOrUpdateProjectPermissionsLegacy\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"72ff90f9abd1b975e899be6ed9742001"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB7DD812C\/TietAD4FBD77\/Tiet3CE13157\/TietF79B40E8.php","hash":"dcd2792fddaf051faf2695ef38b720d7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateForRepo\/Request\/ApplicationJson.php","hash":"e1ff013b93058286e1c2951208503a1b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet45FC12BC\/Tiet3634C3A1\/TietED56D5C4\/TietBB2EA678.php","hash":"30d281a3560ca8584ec79d27866281ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionLegacy\/Request\/ApplicationJson.php","hash":"bf70a7c2d2064b726f6519e3cb34b54a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8FE3C5A2\/Tiet0C02B2B7\/Tiet01F1BFD6\/Tiet6504F76F.php","hash":"0a9c9a8a06eba78a1db72b37914d7b33"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionLegacy\/Request\/ApplicationJson.php","hash":"94aae97dfcfc786a2aeeb33c7e86ce2d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2DBED615\/Tiet76F45C59\/TietF4188D6A\/Tiet2D5A4ED4.php","hash":"09c89eaaa60a6c45851441a6ae726ea2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionCommentInOrg\/Request\/ApplicationJson.php","hash":"e9fb7256fe870294d2cb1db79c00313d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/CreateDiscussionCommentLegacy\/Request\/ApplicationJson.php","hash":"b5d51c94cf1451e91cd24040b43adf73"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/UpdateDiscussionCommentLegacy\/Request\/ApplicationJson.php","hash":"a5dce6908d303097c6777e343579eba1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionCommentLegacy\/Request\/ApplicationJson.php","hash":"285e9328f65b6c1ebd5aae5d4d5ebf97"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Reactions\/CreateForTeamDiscussionLegacy\/Request\/ApplicationJson.php","hash":"6848f70aa611ddf6a362a4434a3f70ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC23F2AF0\/Tiet9E530976\/TietA2E3984A\/Tiet52070677.php","hash":"b13d02e39aa37539deb6cbb919decef4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Teams\/AddOrUpdateMembershipForUserLegacy\/Request\/ApplicationJson.php","hash":"13abe36770489aa6b58427835ffaf7e8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF694556E\/Tiet3CC88993\/TietA89F1ED7\/TietAFDF4E13.php","hash":"753757576b21305d3efa6ae7a5933620"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Delete\/Response\/ApplicationJson\/Forbidden.php","hash":"f2ab60bf6c0ea2c6cd840a820e72e7fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Delete\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"7bfd17cd9553f7e258b97961c75b54c1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Update\/Response\/ApplicationJson\/Forbidden.php","hash":"0de5a06355284144f10e30d4c8fc8f09"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/Update\/Response\/ApplicationJson\/Forbidden\/Application\/Json.php","hash":"5c9150c1f4f6e494ff5748a42390daa6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet84C5BF99\/TietACADC6EC\/Tiet8B2A32F2\/Tiet014E1E35.php","hash":"21e8fcd6ca4f09a8c26e61caaae68a1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/ServiceUnavailable.php","hash":"910da72dda1350896aa30311bd4d7570"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/ServiceUnavailable\/Application\/Json.php","hash":"a9ae4d67d1bb6bbde5202af8c48cd7e3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8463F37D\/TietA64144EF\/Tiet1BF426F5\/Tiet247A222A.php","hash":"a130ce1a2b264884413bf230781bbe26"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Projects\/CreateCard\/Response\/ApplicationJson\/ServiceUnavailable\/Application\/Json\/Errors.php","hash":"a132c206410b1173d2f197c48d507d40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDAD93C96\/Tiet44EA9290\/TietC426850C\/TietE15D7C55.php","hash":"68cc5ee961cd6db4fcc177511b1e0133"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Projects\/CreateColumn\/Request\/ApplicationJson.php","hash":"296e07c2594d6043274bd5ed1f3b42be"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet1A91B16F\/TietBF38476A\/Tiet7587BB22\/TietE0507C4B.php","hash":"0bc8342b906bcb119d97fbee4e4e5d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRunArtifacts\/Response\/ApplicationJson\/Ok.php","hash":"1f62255eb6eb622338d26cb8f911e4cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRunArtifacts\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"5adb29c374a013823675e53c32739916"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD2A75913\/Tiet0388E4E1\/TietCC684AA9\/Tiet46754F39.php","hash":"dfb5961bdf2fc9fe63f7fabd2dba45fa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReRunWorkflow\/Request\/ApplicationJson.php","hash":"dee7291e9c1f55042ca697672f6b91bb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/ReRunWorkflowFailedJobs\/Request\/ApplicationJson.php","hash":"a2fb952f193248b7b0687967267e0821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet58E2D92A\/Tiet7ABA442F\/TietDB0A439E\/TietB965962E.php","hash":"ec30a766b0afb81834fe94b069767bdb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoSecrets\/Response\/ApplicationJson\/Ok.php","hash":"216cbe9251023b2312775cdf6a9524b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoSecrets\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"89b20dd73099019e2483941edc034545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentSecrets\/Response\/ApplicationJson\/Ok.php","hash":"7036567d9730a71a7c873bedd301f14c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentSecrets\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"8265b161aac7957a4e13b70285d0dc4d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC248750F\/Tiet7D6F0E43\/TietB5F7A5C5\/TietBF973B47.php","hash":"4efd1cd0225c175262e7ab3f237c5373"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoVariables\/Response\/ApplicationJson\/Ok.php","hash":"5a0f3e09cfd65b4537c1aacfaa788c67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListRepoVariables\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"bc82e4ee09edf7e6e9094bfeae6f5853"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentVariables\/Response\/ApplicationJson\/Ok.php","hash":"1ac523d51e3c3f7b69877811773cce6a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListEnvironmentVariables\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"cc6d08eb0b1a922885e29c5aa93caa0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRunsForRepo\/Response\/ApplicationJson\/Ok.php","hash":"429ae63ea9285eab7dc8210e16aa07f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRuns\/Response\/ApplicationJson\/Ok.php","hash":"abb502657a47ee70bd9a5496fd6759d8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListWorkflowRuns\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"a45494f7720ed31e89cc959dd1fa3d94"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA5A1EAFD\/Tiet438DDB6B\/Tiet7774AFD3\/TietBCE210F0.php","hash":"b9e9cdcd3d9d7f6688de37efb93eb1aa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListJobsForWorkflowRun\/Response\/ApplicationJson\/Ok.php","hash":"90cf3a9ad0cdc2fa28f6c97a78786d32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/ListJobsForWorkflowRun\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"346edb645ab45c142b782697f0ed2557"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFE7865BF\/Tiet5F7F1DFF\/TietE50994AE\/TietB8600E0B.php","hash":"36be6b8205a72039b8200e42ebabaa50"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/CreateEnvironmentVariable\/Request\/ApplicationJson.php","hash":"6f4717ed66aeab58d12e19481a819c49"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7FF8EB03\/Tiet65994103\/Tiet57F67FE5\/Tiet5CCF02E8.php","hash":"fd09e7c92f2be5cd2beb39d00de0e7d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/UpdateEnvironmentVariable\/Request\/ApplicationJson.php","hash":"1ab52a9afc03fe9591cbec308d40832f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA2C954BD\/Tiet83B0A41B\/TietA51276C7\/TietE8583A84.php","hash":"26ac4a751e815bf933efdffc8a6c42f7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdateStatusCheckProtection\/Request\/ApplicationJson\/Checks.php","hash":"64cc017f81d63036d18dd93f783e1686"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7D758BFE\/TietEBB29982\/Tiet55D896DD\/TietB656904B.php","hash":"907817ef3eccd40fc6a67e41fc72a789"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdatePullRequestReviewProtection\/Request\/ApplicationJson\/DismissalRestrictions.php","hash":"9835f66e53a79e5de10231f886af10e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB77EC278\/TietE010F5A9\/Tiet7DCA9249\/Tiet23FE6CB4.php","hash":"28998a886baac601bf92e46cfa489b43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/UpdatePullRequestReviewProtection\/Request\/ApplicationJson\/BypassPullRequestAllowances.php","hash":"c881ca177279566601516c40558e59ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8F4D3A54\/Tiet370CC577\/Tiet7DC54DEF\/Tiet65BAB167.php","hash":"61156499d878b27c44aa152d4b680e1c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddStatusCheckContexts\/Request\/ApplicationJson.php","hash":"8ca101153b83f217255188792976198b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveStatusCheckContexts\/Request\/ApplicationJson.php","hash":"c66bfc6bbb65c7cc53043b8e1706aa69"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBC8D00E4\/Tiet2092A7CE\/Tiet794EA03B\/TietA6AE3B1A.php","hash":"a084b4b2afb02e22feabe4acc3052814"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddAppAccessRestrictions\/Request\/ApplicationJson.php","hash":"b53e79777120ff6e04cc4e8a3176cbff"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveAppAccessRestrictions\/Request\/ApplicationJson.php","hash":"6a0e020d65f394a2c05178fb1d62b61c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2627BD0F\/Tiet79C28288\/TietDDF35698\/TietF49935EA.php","hash":"d88f6631766307d6da823ea8d3339473"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveTeamAccessRestrictions\/Request\/ApplicationJson.php","hash":"60095309500d77757c9bcddcde1c6419"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet666EC903\/TietB174FC55\/TietB7801801\/Tiet2B6C6BE2.php","hash":"067cf242314c48d57a53175bdf769013"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/AddUserAccessRestrictions\/Request\/ApplicationJson.php","hash":"1c69f7187cf7491b5170f94c43272027"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Repos\/RemoveUserAccessRestrictions\/Request\/ApplicationJson.php","hash":"804437bbac246bcccad52a115442ec55"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6AF2B3AE\/Tiet1426BE24\/Tiet29564A00\/Tiet1F9716F8.php","hash":"46613bbf7d76528519e37a4650aeb8fb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Output\/Annotations.php","hash":"5e3de5b740c34dbfc65da496b46994c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB36E5D9F\/TietB48A23C0\/Tiet265B7730\/Tiet98EA5B1E.php","hash":"e2a001942f7ddca0ac3fb706fbe41f4e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Output\/Images.php","hash":"c89b71d63933d096ff68878ee4f76bfb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2669D512\/TietB3E1915C\/TietA7A5B92E\/Tiet0B91B77E.php","hash":"51291e97107b743f00c9869599dac2cb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Checks\/Update\/Request\/ApplicationJson\/Actions.php","hash":"10caaf68cd5320b77b799f75a2c2b4cd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListForRef\/Response\/ApplicationJson\/Ok.php","hash":"255ccbd954691ed4b1223f14f2edac51"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Checks\/ListForRef\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"135f15dcb07d7a7fe26f360ffa7ec020"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/CodespaceMachinesForAuthenticatedUser\/Response\/ApplicationJson\/Ok.php","hash":"28b57b81bdc854fbb7a90d215b19183d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Codespaces\/CodespaceMachinesForAuthenticatedUser\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"78c54b13b2905743f4f96dd3a77333ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/CreateDeployment\/Request\/ApplicationJson\/Payload.php","hash":"b4ccebc81780b495a2b9b57dd65ba8d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC87B405D\/Tiet9B9DED8B\/Tiet852071AE\/Tiet1AF85D12.php","hash":"e53d73b213fc374878e25704cd9a47b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson\/Labels\/One.php","hash":"1200d9dc3ade0b40c52312878c8fbf9d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet026A8A20\/Tiet81954685\/Tiet23AC5D44\/Tiet5390232B.php","hash":"5798ad15697630da4e8fd2982ce87b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Issues\/CreateComment\/Request\/ApplicationJson.php","hash":"33c1ceb6e0f13ebbe8180e10354f93e6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietA5445A08\/TietE16D224F\/Tiet94859EBA\/TietF785C18A.php","hash":"3c18bbd8a22d9d0203ba8ceb3f2ae472"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/UpdateBranch\/Response\/ApplicationJson\/Accepted.php","hash":"dd56508704c7f370509594e35166b269"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Pulls\/UpdateBranch\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"13eb708ed6ee077a56c32443a9006ead"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/UpdateInformationAboutPagesSite\/Request\/ApplicationJson\/Source.php","hash":"aaa2933b0a4a1265776bd132632eb737"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDC606366\/TietFD954615\/TietE9FF06A4\/Tiet8A3CF917.php","hash":"83f2bd4a1f92016de0cab40bb7831735"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Scim\/SetInformationForProvisionedUser\/Request\/ApplicationJson\/Name.php","hash":"fe6d3c451e236555d9157ab3be4a8e53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Scim\/UpdateAttributeForUser\/Request\/ApplicationJson\/Operations\/Value.php","hash":"d1962e5839bb3de6335f3371fb68aa58"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFA9375D5\/TietB4DFA8F3\/Tiet91595615\/TietBD0ADDF4.php","hash":"20ff6d7b221ebca88c300b8a53602ba6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Users\/GetByUsername\/Response\/ApplicationJson\/Ok.php","hash":"6a3d88e11f82d81c8c87b567e18209a4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GenerateRunnerJitconfigForEnterprise.php","hash":"853fcc36f338eef43efd05855990b4bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GenerateRunnerJitconfigForEnterprise.php","hash":"2c2144caa2a8f25dffec0d250abfe960"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GenerateRunnerJitconfigForEnterpriseTest.php","hash":"e2095b2ae8cf5c4c068022312b9d4b8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GenerateRunnerJitconfigForOrg.php","hash":"644f6e8680d4fba866822f8d3da8c997"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GenerateRunnerJitconfigForOrg.php","hash":"d5cf209158d5bb88623911ac708c4176"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GenerateRunnerJitconfigForOrgTest.php","hash":"2dedbee61d619d234f3c88d6efea1890"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Actions\/GenerateRunnerJitconfigForRepo.php","hash":"8ec7f4da1fdcd07d0631f78c740dfa90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Actions\/GenerateRunnerJitconfigForRepo.php","hash":"2d49b018913c7ae3b6ff968f4ec24d0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Actions\/GenerateRunnerJitconfigForRepoTest.php","hash":"1f0dca130a5a18137e6e589c07c5c9e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/RemoveCollaboratorTest.php","hash":"64937b4aaf8300acd28da38c79de2223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatisticsActions.php","hash":"c6d9af129648742477fe58e05798c9ce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatisticsPackages.php","hash":"4fda43611933bf7d7a5dd573b3887c0d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CodeScanningAlertStateQuery.php","hash":"e6e9b2f0c12716304f5349a09afb1827"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryIdTarget.php","hash":"02b43ce9cada550298094f5733d32948"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ServerStatisticsPackages\/Ecosystems.php","hash":"9dea4607934bc6cf97fd4e72bf7d4dea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/ApiOverview\/Domains.php","hash":"641848cf1fba69dff250bb7e08403b0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecurityAndAnalysis\/DependabotSecurityUpdates.php","hash":"573593ce4e77b7eac9413a2b6d81c3e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRulesetConditionsRepositoryIdTarget\/RepositoryId.php","hash":"0096656ed938c75a571fa41baf22417a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleset\/Links\/Html.php","hash":"82738946b94d29b66262f99df08ade38"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4C203984\/Tiet86D11BF8\/Tiet9FC2225A\/Tiet026CAEC5.php","hash":"51647fb23ded3bf2ee0293997a7da7de"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCCAC04AC\/TietA7AECC3A\/TietDE4D9B35\/TietA98B46C2.php","hash":"f456339aed926b003dbf92fe6a266b10"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet571F7F38\/Tiet40C08834\/Tiet4D08974F\/TietFA2A6238.php","hash":"f01180e453aece4c004e89e0a673470d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF690ED31\/TietD3330210\/Tiet500A0F49\/Tiet18AD180E.php","hash":"36f1893f7792a019748f73d4ca699841"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/GenerateRunnerJitconfigForOrg\/Request\/ApplicationJson.php","hash":"55d2000cf970c10d6bab818f16dc5629"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/GenerateRunnerJitconfigForRepo\/Request\/ApplicationJson.php","hash":"4ca4d44db628ed0fe3f5761472257683"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Actions\/GenerateRunnerJitconfigForEnterprise\/Request\/ApplicationJson.php","hash":"9896a154b2a320971c34f3004e042756"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Actions\/GenerateRunnerJitconfigForEnterprise\/Response\/ApplicationJson\/Created.php","hash":"a45a73e5c7ef06cca64c78bcb3874386"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet964E67ED\/Tiet6DFC2B2A\/Tiet2F3A6E96\/TietCC85A1FF.php","hash":"baf3e05bef17a0e33ea66c136fbc2684"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE391F5B5\/Tiet55EDF86B\/Tiet9741ED42\/TietA29AD1E7.php","hash":"f1de531462697632cff549b6e29030ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/CreateOrgRuleset\/Request\/ApplicationJson\/Conditions.php","hash":"3ee83bf1e7b2fb61fef93ceb8e542cb4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/Repos\/UpdateOrgRuleset\/Request\/ApplicationJson\/Conditions.php","hash":"5f1d017fbcf95011bc59d6eb82b19181"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFD5D65C1\/Tiet0FBD94A3\/Tiet72E5C7FF\/Tiet2E753155.php","hash":"6d0c197e9a8a1c9103952586f4272f90"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet6E2F9577\/TietDA128ABF\/Tiet5ED532B6\/Tiet57F1B98F.php","hash":"2f5d4215e4049c1be6b5a56e517d5f74"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Enterprises\/Enterprise\/Actions\/Runners\/GenerateJitconfig.php","hash":"f1a9e50921d9016bc83d62cf0174ef31"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Actions\/Runners\/GenerateJitconfig.php","hash":"78cb8b535b14883070d3ce5b70902660"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokenRequests.php","hash":"c5845bff38c3a7942709238d5b5965ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokenRequests\/PatRequestId.php","hash":"230833c3bd0341f9a7e7c80b50f54b32"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokenRequests\/PatRequestId\/Repositories.php","hash":"46b81ba60782ebf920d0fa0986f53a5b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokens.php","hash":"5135b775d6c5fc99f29b39a2b0866ee3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokens\/PatId.php","hash":"6db450f9443907e45956f7def138ca12"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/PersonalAccessTokens\/PatId\/Repositories.php","hash":"287cb3a944329103a5b18f9ae1edbed5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Actions\/Runners\/GenerateJitconfig.php","hash":"f5f6a778d955ab3c0210f85beb999974"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Teams.php","hash":"00d8bd653e7e9d61b3bb7b53677f644a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleRulesetInfo.php","hash":"90c077af17558f5c70a7518bf8720d8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/RepositoryRuleDetailed.php","hash":"7ab2b5aa36da33f18e8ef6f4ddbaae46"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/GetCopilotOrganizationDetails.php","hash":"3f362ac7ece8cf5ca2d8bed1d9a398d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/GetCopilotOrganizationDetails.php","hash":"5d51600733bc555ef331ecd549739c5d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/GetCopilotOrganizationDetailsTest.php","hash":"4788ff6e71fa5800fa2fce391868ccdc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/ListCopilotSeats.php","hash":"56d6f0e9e90cffd651d59ce9009d450f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/ListCopilotSeats.php","hash":"481d4846583acd72597553d63bf76060"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/ListCopilotSeatsTest.php","hash":"17eac559b63100a304743c0e0ed1ebe6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForTeams.php","hash":"f0e36d5163d73918867379a7d6b673c7"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/AddCopilotForBusinessSeatsForTeams.php","hash":"40c208eb6b2c32c1929da7a4ddbb3c5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForTeamsTest.php","hash":"58fb4a13e4dc9a6ad9bd0a11aebbeb08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForTeams.php","hash":"74c6c63b391aa13bd85b19401dfbd12d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/CancelCopilotSeatAssignmentForTeams.php","hash":"9bfb421f31bbbd3bf7f240a2a7432628"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForTeamsTest.php","hash":"e34b45fcaef087310dc3e29596945d53"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForUsers.php","hash":"30c6b287e7b22c898344ed9f8163bba2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/AddCopilotForBusinessSeatsForUsers.php","hash":"5182b84efedb8d91347f4b64913e14ec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/AddCopilotForBusinessSeatsForUsersTest.php","hash":"219fa22895ed53da3bd7aa22d8fc4634"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForUsers.php","hash":"b5787d802ce61297dce3ebdb34007a99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/CancelCopilotSeatAssignmentForUsers.php","hash":"6fa4475f3f825c9ff170e349dddb7bf6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/CancelCopilotSeatAssignmentForUsersTest.php","hash":"46a7584a8d088ba933cd0d0aadc22168"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot\/GetCopilotSeatAssignmentDetailsForUser.php","hash":"457b44d07fe131a7739459a5000cedf2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Copilot\/GetCopilotSeatAssignmentDetailsForUser.php","hash":"b18e3ec842e1eb3b4452da0f24b26713"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Copilot\/GetCopilotSeatAssignmentDetailsForUserTest.php","hash":"53862d9fb0a5a0030daa11153afef7fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotSeatBreakdown.php","hash":"6aa2f1394e3e6ebf0891ab755142f5b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotOrganizationDetails.php","hash":"c87d55871a809e01095802e9f3d96ffb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Organization.php","hash":"0487329b8d816a6a046190a1d8640ce4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/CopilotSeatDetails\/AssigningTeam.php","hash":"f0715033b84bafb9180bcfa5db79c2df"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotSeatDetails.php","hash":"eee4d8f782346aff2d38991b72d3a264"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Organization\/Plan.php","hash":"5a13b1c3aea8855ac4510f3efad70add"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CopilotSeatDetails\/Assignee.php","hash":"047e1387c9e8ae197a41a7b8ce2cb597"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/ListCopilotSeats\/Response\/ApplicationJson\/Ok.php","hash":"3e3311c52dedbd403b9f46de30f9716a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/AddCopilotForBusinessSeatsForTeams\/Request\/ApplicationJson.php","hash":"7b0b53530b513c16103be43915a60b23"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietF5944C0A\/TietAA99D7D8\/Tiet9AE1F544\/TietA28F869C.php","hash":"05cc887f3d8577ffd33d88f1c779989c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/AddCopilotForBusinessSeatsForUsers\/Response\/ApplicationJson\/Created.php","hash":"053669d4f16f363be628067c1ae0e03d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/AddCopilotForBusinessSeatsForUsers\/Response\/ApplicationJson\/Created\/Application\/Json.php","hash":"17811d225fab392946623b5132269fcf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/AddCopilotForBusinessSeatsForTeams\/Response\/ApplicationJson\/Created.php","hash":"70bcab562c5bd1d23bc3c77345916f17"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/CancelCopilotSeatAssignmentForTeams\/Request\/ApplicationJson.php","hash":"f433542ef94d7685ffd1efe3ad8cb17b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet2460918D\/Tiet655452CF\/Tiet135E03E4\/TietBEF8748A.php","hash":"68a48885c055415300788020345e74f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/CancelCopilotSeatAssignmentForUsers\/Response\/ApplicationJson\/Ok.php","hash":"a68eb6b224e5cc34b3069d72ad6502ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/CancelCopilotSeatAssignmentForUsers\/Response\/ApplicationJson\/Ok\/Application\/Json.php","hash":"4b366758d0a49ae020243e27f5085537"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Copilot\/CancelCopilotSeatAssignmentForTeams\/Response\/ApplicationJson\/Ok.php","hash":"88f2c198f3f2c69aa57b9eae7909e523"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/AddCopilotForBusinessSeatsForUsers\/Request\/ApplicationJson.php","hash":"d3d7f3f39c0837eab906d79c5c3fd2b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Copilot\/CancelCopilotSeatAssignmentForUsers\/Request\/ApplicationJson.php","hash":"9ceb5469278b99cf767329ca2ecb197b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Get\/Copilot.php","hash":"0aa19d509cbf96d141fb348ee6cbccac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Post\/Copilot.php","hash":"dc0024bcec64eb7b11b9b4710bf0b7ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Router\/Delete\/Copilot.php","hash":"46531efc7a1b1402320de712c03dcdce"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Copilot.php","hash":"8d4969931ac64920a4f33f9e4a64b37a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing\/SelectedTeams.php","hash":"dea727d61e2ed84d63a15974edae36dd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing\/SelectedUsers.php","hash":"c558014a74d921dc784d7549759cfca9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Members\/Username\/Copilot.php","hash":"78a0694dee3ba2a911c3226406ab2785"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/CheckAutomatedSecurityFixes.php","hash":"3a884d078696c2d6f62d6ac73ba83655"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/CheckAutomatedSecurityFixes.php","hash":"77838f2ee71be1704f320dbaccafe7db"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/CheckAutomatedSecurityFixesTest.php","hash":"aeb409ba01225347ff378232b1815f85"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/CheckAutomatedSecurityFixes.php","hash":"7cf7e033f5a353c8c4457e1bfc0847e9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing.php","hash":"a8d99ef706d998359de417622cf16c0b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Copilot\/Billing\/Seats.php","hash":"9f29663b48dc3c9fda6019322e309a0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/AutomatedSecurityFixes.php","hash":"5a5a8dcbe77245b45c2729057fab4510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Orgs\/EnableOrDisableSecurityProductOnAllOrgRepos\/Request\/ApplicationJson.php","hash":"f7aeafb652e9a202734ba3c817b633d2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/ListActivities.php","hash":"5203180f224d52707807f32b0fc866f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/ListActivities.php","hash":"6d8c034d8517da6b5c55732067fbc59b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/ListActivitiesTest.php","hash":"42f21e9b2262bb9ee222b5f2b4d8e15b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Activity.php","hash":"bfa6d402977c9c928b7323bb0fbb5c8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/Activity.php","hash":"b148cd794cc3a3b0cc3dec32f9c80f5f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/ListGlobalAdvisories.php","hash":"79b5192afc3c133a258bf42d02a8be81"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/ListGlobalAdvisories.php","hash":"5a6e0c4b02eba1c127452851f6d6e3a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/ListGlobalAdvisoriesTest.php","hash":"a81492bf535eb75a580311263dc41e29"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/GetGlobalAdvisory.php","hash":"774f36eb6c461d5e781de51bf20e34d5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/GetGlobalAdvisory.php","hash":"ce1762daf5d7a043f37284444a89ca21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/GetGlobalAdvisoryTest.php","hash":"fc4b51e3930477c318dcbc5e02440483"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetCodespacesAccess.php","hash":"efda44cb39920ed90c6078decd7a8784"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetCodespacesAccess.php","hash":"67aa224464de904fda166f6394c093d1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetCodespacesAccessTest.php","hash":"7211c67cac4b65f8add3f5c6f920ae57"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/SetCodespacesAccessUsers.php","hash":"b29a2cc1c78baae10b6f19aec23117fc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/SetCodespacesAccessUsers.php","hash":"a9413466b8308b2c7199036f6467e014"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/SetCodespacesAccessUsersTest.php","hash":"27b94690e432783a45125481e85e6da0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Codespaces\/DeleteCodespacesAccessUsers.php","hash":"593b42fb883ee055760cb19d53042d03"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Codespaces\/DeleteCodespacesAccessUsers.php","hash":"5cdd1f728723aa78c39204c7bf2d8ba8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Codespaces\/DeleteCodespacesAccessUsersTest.php","hash":"e006dbafd5897d7e2584471ec04eb817"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory.php","hash":"c63407898accb8bb150df7c79bfe7048"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertResolutionWebhook.php","hash":"9b4b74aafc80a65b4ba819c0fc7ae87e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/SecretScanningAlertWebhook.php","hash":"4dc2c2b89567d43b29dccf932022aaa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet649F32EB\/TietC13659D6\/Tiet0B408A31\/TietF85C8E0E.php","hash":"172acfb3d4fd61489977afedb02980a1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Identifiers.php","hash":"981d72ed7f8d5d75b88b95dfa04a0259"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Vulnerabilities.php","hash":"93cb7ddc3f2ffeda55acdd196f2e0223"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet50219D5A\/TietA7CA62E1\/TietD2A60B5B\/Tiet86219BF7.php","hash":"02858e7f2cc781fed90a3e2b4e122f1e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Vulnerabilities\/Package.php","hash":"42f6ea800bba6682b7a1c769e43bc572"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8F563A59\/Tiet87B65946\/TietB1731FB8\/Tiet3CD786E5.php","hash":"5246da3eaf0c5324773772feaa58ed8d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Cvss.php","hash":"0a90b5fd08830db7194f64a51fd2f335"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietBC412A5C\/TietB1250D28\/TietE40F86F2\/TietCB1A3AB3.php","hash":"c238c91ff8f5f1d8f7f0063eebe675a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Cwes.php","hash":"6271eee7e0a759718a0597ffa70103f5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/GlobalAdvisory\/Credits.php","hash":"3be6084deb7240cd99a914a453a6c0b1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetCodespacesAccess\/Request\/ApplicationJson.php","hash":"b4c6c2b34774c0cf7841152bcfe56c08"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/SetCodespacesAccessUsers\/Request\/ApplicationJson.php","hash":"02bb77da0ee71eecff68b317b3a04821"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Codespaces\/DeleteCodespacesAccessUsers\/Request\/ApplicationJson.php","hash":"035a741ba3fc4ea23effc3f789d42288"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Advisories.php","hash":"93840e2e322b727ed2173c050d57453c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Advisories\/GhsaId.php","hash":"7b39eb0a31935bd7fa99c8b48c5a80ba"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Access.php","hash":"326d70fa574af0972c0377d53a66aefb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/Codespaces\/Access\/SelectedUsers.php","hash":"685add6a2ac50f88b2cfa052dba4d786"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest.php","hash":"c7f586bc303a433b35dae6c2362bcaa9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest.php","hash":"50f1e4c4a8674dc6a1c84381f13c12a0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequestTest.php","hash":"ccd0f6875f97ffc457b8d03adcb41e8b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved.php","hash":"36e6de5afdec59e6095d2863b0bb3f56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected.php","hash":"39aee28b01971b687cf90c1613ae01bc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested.php","hash":"21407ce6f09e3449f27bab0f91e0d812"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated.php","hash":"382cf3b41ac4d30158b7cd94c4628e56"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted.php","hash":"841d7b14722974eaf7e9b7db9a6dea37"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetCreated.php","hash":"1fdb91ca2bd74deca6337265d55f9ac2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetDeleted.php","hash":"7d18c85498e52ba7820d469f0bc6d47c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited.php","hash":"9e6c1ad2c6a8651f98a78dde0a0c7aeb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest\/Response\/ApplicationJson\/Accepted.php","hash":"0410905edee68aff7cd72d620dfbb58c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/SecurityAdvisories\/CreateRepositoryAdvisoryCveRequest\/Response\/ApplicationJson\/Accepted\/Application\/Json.php","hash":"a2553fbd9313fe0ae1ea024cbd71d281"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/Reviewers\/Reviewer.php","hash":"cfcf00f9eb3b4afb1b65fd3d7e4e1eea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/Actor.php","hash":"42010b31042ce59c970164920a077c9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/TriggeringActor.php","hash":"f0deb7e8b8621da9698880e2ed639a95"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/Reviewers\/Reviewer.php","hash":"93c3476b2a94976ec64a400a3a141e2b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/Actor.php","hash":"49b4927a579dbaea2ede35dd9075ea3d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/TriggeringActor.php","hash":"e0dce286007cb1e28727c73f3ed54691"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/Requestor.php","hash":"84b9bbdce3cf874e25172d758faaa9d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/Actor.php","hash":"cc8d7d0c26ed133d023086ac402a7e96"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/TriggeringActor.php","hash":"a4473f4c0f9582b5b9af18f32747953e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Assignee.php","hash":"88139ee235666a449c5d5227559f1adf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Assignees.php","hash":"e6fbca4c89ac898ef9250caa9f9b086e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"4a04cf4175ba59df679891a6ff2fcee4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo\/Owner.php","hash":"f935bd40592450e16641ad4adf6bb2a8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/User.php","hash":"529b66da0c78c7311cdcbad65eea96f0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo\/Owner.php","hash":"cf5d8d41d0a6b7d97398f53f0e8026c2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/User.php","hash":"e2d8264c5043bd2073b7181e2c3704c0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/MergedBy.php","hash":"bbaff9da72feb78c863268f875217245"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Milestone\/Creator.php","hash":"e2ffe4f1eba142fbde48f1e5c3eec45c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedReviewers\/Zero.php","hash":"8c0dd2562c31e3f9042f74a4d1864981"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/User.php","hash":"f757d88c2349dbf48041cf0898fe89f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Assignee.php","hash":"7f2c975d0a8e492118e3f4accefe665a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Assignees.php","hash":"ed8e3a8ac6f0e56f41ce84919380aa87"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/AutoMerge\/EnabledBy.php","hash":"46e377c65d8d6ac8fb01d13624c40773"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo\/Owner.php","hash":"05088d8aea594e9c7738cb69b23f7c3c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/User.php","hash":"0a341f375a0431b8dd34d872b1ceb3b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo\/Owner.php","hash":"750e7808d49691f8173e5c4f5bd532a5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/User.php","hash":"cecccc046cc6f99f7befda8c07dceaaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/MergedBy.php","hash":"37fe492460fd963c02e14d083a63554e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Milestone\/Creator.php","hash":"18712956e14dff1a3d003dfeca27070e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedReviewers\/Zero.php","hash":"7a55b6f6e54b06de780f4f4d1b5249ed"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/User.php","hash":"02111a2f4d22faf83c79dd8af8371d5e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests.php","hash":"9e654949438567d38f1db1f7e45abe07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests.php","hash":"435c03c3e6b39cb008617eb00d6df36f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests.php","hash":"1b078ff84ae9934214b9cfffdf23992c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Base.php","hash":"74759ccd7f977fb2b2e35407d832c748"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Head.php","hash":"a71ae5efc5c2f548b3247ab3255bfb21"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Base.php","hash":"34fb1bf9c8a77186891ec729f7c32bec"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Head.php","hash":"1f866e52849868daeb225acc4f7f59d6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Base.php","hash":"c9caf47289f2bcbd4a5e7dcde4212593"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Head.php","hash":"64c4f543d18240d534ced18f6be16d40"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"4d44b19463a0ba322287ce31ec57e772"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"ed0a83581b2a1f5f216094c156ede4f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"9306fc7a17ee757ba9305c9a71554bf1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"f5586a7b586f98550b9b746f59b5f448"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Base\/Repo.php","hash":"b90376b7b2e58cf890ce1d50770a0582"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/PullRequests\/Head\/Repo.php","hash":"35a3e15021bb9bd2f8f5446c1e6f41e5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/HeadCommit.php","hash":"81fac241812bbe35f9974e05dd347aae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/HeadCommit.php","hash":"3e6ae6a2323ed6a7650f9e73b524dc0e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/HeadCommit.php","hash":"9e7de0d20ba4ee782da74a6c78308b2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/Approver.php","hash":"1ebf5388fbb1516457ca1523a44852b5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/HeadRepository\/Owner.php","hash":"c5e1031412f93b765152a19e93f96545"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/Repository\/Owner.php","hash":"584ebf0d24353569675691cd153263e2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/Approver.php","hash":"9ce31550e7efe82133cabb97b27d8072"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/HeadRepository\/Owner.php","hash":"4065134777a75f848fe3542f99ff572e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/Repository\/Owner.php","hash":"df145d85ba3bf3a1ea50caaf9ec3ee9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/HeadRepository\/Owner.php","hash":"614e7f4a6076f7140aba30aa9a78f243"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/Repository\/Owner.php","hash":"94882eed94caf36dab91276dcb7d029c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/ReferencedWorkflows.php","hash":"87261dcf790509323a8ca5b7512ef28c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/ReferencedWorkflows.php","hash":"a9ae092890b30b83e80645d9a688ecae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/ReferencedWorkflows.php","hash":"797e5431a1319efedd9ca4c1ff30c025"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietCEE52534\/Tiet578D6158\/Tiet7A705212\/Tiet1CF6BC69.php","hash":"08182e3508f332c1e6b2519c53398550"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/Reviewers.php","hash":"4a81a5989632fd449920fdd61a665e2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/Reviewers.php","hash":"314a84aa54c0bfa9f0817876252a6db1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB05C64DE\/Tiet4B78C5E2\/TietABFD31AC\/Tiet7CBAECD2.php","hash":"beb6c4b3f6044f9420f9f8c74ff8b873"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowJobRun.php","hash":"e3048f5cab9dde39bb83f2625c031e1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowJobRun.php","hash":"b8c08f68f07da2315a12eecd8d079b44"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowJobRuns.php","hash":"0516656061a262268d9536d9ee512f7e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun.php","hash":"46724ddc5c0bcb40c04afb5ee1c2d965"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB576B1C1\/TietDDB53428\/Tiet95045CA1\/Tiet3A2EAD15.php","hash":"7234c8e58dd92019ff16d20a30a4febb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/Repository.php","hash":"bc1b3ef308089185700421bc0b84ee1f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/HeadRepository.php","hash":"dcb82607fcd03975fbb4ece6cd455a65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun\/Repository.php","hash":"778b6b2e972e94a85649839670c1c5f1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/HeadRepository.php","hash":"be923ba94ac7dbf9b99e5d2b8fd9fe43"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun\/Repository.php","hash":"b01b60212c43286b95e73e902d7e0cc9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewApproved\/WorkflowRun\/HeadRepository.php","hash":"68627c7cbf33d39ce31cda5c6b3b9db1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowJobRuns.php","hash":"6c2a1a8dfa505bf40f4687dfdf73c6f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRejected\/WorkflowRun.php","hash":"b4814c5a0b56592d0320231fd8652955"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/Reviewers.php","hash":"1cbd596fa926e00b5e94ecc0e8db9656"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/Reviewers\/Reviewer.php","hash":"da0837189061d9bac95b01f0e221a79c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowJobRun.php","hash":"74309c360d077d0ef8ca03aed629f1b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookDeploymentReviewRequested\/WorkflowRun.php","hash":"53c57fe92a7abac0f4a4c6ad0047cedf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Labels.php","hash":"210121edf5c62866bf011938fc7bb9b0"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Labels.php","hash":"0fceb93b8a1deef73720574acb424cfc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo\/License.php","hash":"9d6a6b90172971641fcaa60694ae082f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo\/License.php","hash":"675ce6d864a7f77652830d3267ddeb67"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo\/License.php","hash":"f4889d437bbd8638a0de29f564c7a736"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo\/License.php","hash":"3f6cf546c557311c8dde89b2027a4fc5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo\/Permissions.php","hash":"d0addc5e08ff6b631740e4f303d1aadb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo\/Permissions.php","hash":"d0caaeb311f5126ffcaacb488ff175b4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo\/Permissions.php","hash":"a1b6991594a995946cc99cde0179f4fe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo\/Permissions.php","hash":"17c2bd0a2f5831cdd26f35d2ee6242eb"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Milestone.php","hash":"a4489b82b00469f10c1619add9101640"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Milestone.php","hash":"279b80421d7cbea829f63f1ce69245d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base\/Repo.php","hash":"5ca1e698a65e4f636b198bc68035f566"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head\/Repo.php","hash":"20ea88bf85f8a417221eff0e766c3058"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base\/Repo.php","hash":"16ce85b61d5539c0c184355f86136234"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head\/Repo.php","hash":"53670f2044eb5ec47d58ee8568a1a565"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB9B591C0\/Tiet051B15E0\/Tiet6AE540DE\/Tiet19573BBF.php","hash":"7616701772f6ee7f93b29d0af7d68870"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/MergeQueue.php","hash":"881211d825b81a246a07d5b7a23bbcf8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/MergeQueue.php","hash":"0492085e1d9fdbfaed0ea38eaffb252b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet784E9C0B\/TietCAE34930\/Tiet8733038A\/Tiet0C864473.php","hash":"7e78217898b957331bc1c2eb15ab71ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/MergeQueueEntry.php","hash":"c038d5f459a68a05b12f3949a7ee6bcd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/MergeQueueEntry.php","hash":"a043fa61fa8dbf974c14f7125ad1d0f2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet967AEB03\/TietAD3E665B\/Tiet47EE4372\/TietE40DA4C7.php","hash":"92665f3d2f05645a920d97d76a8b9ff1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest.php","hash":"a44670369d23c08c8a15cda0419281d9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest.php","hash":"bb63e01473a1bef19e58ca74dc08e0b6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links.php","hash":"e8f6eadf05ed1b8976d4be5be90b459b"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links.php","hash":"8ef45c21e6ab88e5191571eb5025789c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Commits.php","hash":"5cfa786d66c21ded87601741a7cc79ac"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Html.php","hash":"5c2b76e5caa4867b634c8334af4c2e84"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Issue.php","hash":"7ef49b8ee5985080e1c75f03ec1da4d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/ReviewComment.php","hash":"8f7533f35a4e707dfab2026680100f07"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/ReviewComments.php","hash":"bf51392ff9a1a029785e9cd6b9e95b9a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Self_.php","hash":"16df0a6b41c420ca1e6a1412cc686d65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Statuses.php","hash":"d75a1a3eb115f0a4a61f9586288461fd"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Comments.php","hash":"d16dc00c12073fe659fc89b5655243ea"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Commits.php","hash":"556c941c11a6b425f3e4443af82caca8"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Html.php","hash":"a91ad3198a21afdf8072ed2a14d8caa1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Issue.php","hash":"50bd37d68315bbef024bce009a200c22"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/ReviewComment.php","hash":"3e86be650e63755972942bdb651fd400"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/ReviewComments.php","hash":"78907c3e53f3c2b6b9c0d23f8610e4c3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Self_.php","hash":"e41c4aaff7ee9a8dbe92af54da8b52dc"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Links\/Statuses.php","hash":"940cdfb951a0d2fab191762a94ad3aaf"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Links\/Comments.php","hash":"5ff590e262d5bc245d25221f39660c05"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/AutoMerge.php","hash":"0cb709e0640aecb477a08333964c6969"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/AutoMerge.php","hash":"cda6087730dc293330d4e35173b90cbe"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Head.php","hash":"06975539cb3bbb74ee847ac54ce91f47"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Base.php","hash":"5a27467ffc9e1aae4b107078e7649207"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/Head.php","hash":"fc6124f9894dd0b7e1511ff35f702c19"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/Base.php","hash":"4963e430d8fc454b987901ecc5a0970d"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedTeams.php","hash":"b766ad5d662c2fea74a7d07fcf1eb909"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedReviewers\/One.php","hash":"8091684f734e10dc3dc71fbbcf50d217"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedTeams.php","hash":"01c50484098e7a4a70fc85cc25698c02"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedReviewers\/One.php","hash":"146b6c6ff5bca821c11c415fb345e7d3"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedTeams\/Parent_.php","hash":"115c86db6cac1032d837876c9744fe0a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"405b96187316c056cfb010e29c027059"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryDeleted\/PullRequest\/RequestedTeams\/Parent_.php","hash":"61f8ce0118f49416899acc13f7bda896"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookMergeQueueEntryCreated\/PullRequest\/RequestedReviewers\/One\/Parent_.php","hash":"9b7b3e893d785ad062f57af3291bd704"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet38F1F00B\/TietF74B7C24\/TietCE7CBD4F\/Tiet88FCE2CD.php","hash":"6bf010580348251a9747e5a2a5a380ee"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Name.php","hash":"e4df95bfc5319b6caf997173421ffe01"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Enforcement.php","hash":"10a1d2a0a0f5b2a2056a5ee30782fb9e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/ConditionType.php","hash":"928244d28eb600c1e93b0afb9db0a093"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/Target.php","hash":"d90c0abaaeaf70c48debf37f2c9ce3c6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes\/Configuration.php","hash":"bcfbda917895985530ac2030d7234cfa"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes\/RuleType.php","hash":"aa8793d6ff36c5d2a647aeb0bea9ad65"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes\/Pattern.php","hash":"ff7213e35d2096a67b4d43cc66baf7f6"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes.php","hash":"4c3426f80cbe1aa74b83ef5a117fea99"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions.php","hash":"76aae635ee242e14295982f7301f9473"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated.php","hash":"b8a7ecd2744452f0ab76e9dcbe35c912"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes.php","hash":"27a935ae9f012b7fe124ab484c30d09e"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet0A7E4C74\/Tiet85764E37\/Tiet559A5D5A\/TietF5611BBB.php","hash":"33b34625bd763b5f69177632abe450af"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/Exclude.php","hash":"e4fcaa6173aec31b4e7581bc45b7f740"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Conditions\/Updated\/Changes\/Include_.php","hash":"84a3166692f4754995baf4eac18828ae"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules.php","hash":"baba385d2e2d55fbdbfd07e4ab1a8dd1"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Attribute\/CastUnionToType\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Rule.php","hash":"e2540de4bf1656b7986e15cdc788f119"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated.php","hash":"563d643511f55c1ad706e9c26b0d9e66"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/WebhookRepositoryRulesetEdited\/Changes\/Rules\/Updated\/Changes.php","hash":"2057d8134c7ec32f7fe1451ecd716468"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet68B1DCE7\/Tiet67FB0D73\/Tiet8074454A\/Tiet78E3C518.php","hash":"e6c3e1284a1575be7f47acb02b1d62a2"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet8CA88D83\/TietC1EE26A8\/TietDBE5B00E\/Tiet036221B4.php","hash":"37596b5539ada88f3b124e76df76d018"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/SecurityAdvisories\/GhsaId\/Cve.php","hash":"3f057ff5ab558b312fab17d6c09bb574"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/SecurityAdvisories\/ListOrgRepositoryAdvisories.php","hash":"98d30391ff1f25a8c19af5ac8cbfa253"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/SecurityAdvisories\/ListOrgRepositoryAdvisories.php","hash":"16a0eeb852edfe4f0400f39785375fa4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/SecurityAdvisories\/ListOrgRepositoryAdvisoriesTest.php","hash":"d08ea2b36d7e2618c4c1bf4ee50d6d0f"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietDE8B8C33\/TietDD3CC7C9\/TietD567FBE1\/Tiet46B008A2.php","hash":"df3ef061a79c2de71970b8b2b8b0b105"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet4038BB2A\/Tiet4B88EAFB\/TietFA559FD4\/Tiet4B6EE323.php","hash":"5c5016fa9236c099e2af1ba5da95d096"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB5BD8065\/TietB2327564\/Tiet214214AD\/TietF3CF5B92.php","hash":"cfa51d2e4ec8db0587af78c88d58e37c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet69BFFB24\/Tiet1E5F2135\/Tiet40AEF1A8\/Tiet48411CB3.php","hash":"358bf174b09b541ac251e2a68d1867c9"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet9259675E\/Tiet7B6E7D11\/TietEEA46A7F\/Tiet5209F9E0.php","hash":"8d76eb578ba4b9433f2861e0a53cc06c"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietB76A0AF6\/Tiet95C5B848\/TietFDAEA32A\/TietA8BFDFD0.php","hash":"6587bcec018ce980e5b3a6b480f6bb61"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/Operations\/Meta\/GetZen\/Response\/ApplicationJson\/Ok.php","hash":"e82bb0e78573f96b0a0a696ed8eb0e2a"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/Tiet7D96687A\/Tiet0ADA8097\/TietC4B2828C\/Tiet7F3AA76B.php","hash":"dd2fca1c56313aa8768ffe84acb6f088"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietE0496134\/TietE974BD52\/Tiet10F366C6\/Tiet3AC552E0.php","hash":"d51d98d5442c0a56934f3662d155ba36"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Orgs\/Org\/SecurityAdvisories.php","hash":"49bc2ee0ed22b8c582501fc98be17fa5"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/EnablePrivateVulnerabilityReporting.php","hash":"e12a588b59769db96b34dd6487274265"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/EnablePrivateVulnerabilityReporting.php","hash":"ccc02cacd869f7e014f436d1979a61da"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/EnablePrivateVulnerabilityReportingTest.php","hash":"e6e8ae7e0d234542395c8d5ee0cb3510"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operation\/Repos\/DisablePrivateVulnerabilityReporting.php","hash":"812c5148c452404262e0c76822fa7b42"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Operator\/Repos\/DisablePrivateVulnerabilityReporting.php","hash":"0be21cba696342f6940a23f02837f456"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/tests\/\/Operation\/Repos\/DisablePrivateVulnerabilityReportingTest.php","hash":"cff1693aa88d1529cfbd3e51df8e57f4"},{"name":".\/clients\/GitHubEnterpriseCloud\/etc\/..\/\/src\/\/Hydrator\/Operation\/Repos\/Owner\/Repo\/PrivateVulnerabilityReporting.php","hash":"c46e2fd0cd7182314d6f92b1f67a505d"}]},"additionalFiles":{"files":[{"name":"composer.json","hash":"63f48b63977ca7621e6284b26a9ff617"},{"name":"composer.lock","hash":"b3fefc8269e8ab2d47d33a09c23dfcf6"},{"name":"..\/..\/composer.json","hash":"130d27a3c005c66a42a3e384d8bf6fed"},{"name":"..\/..\/composer.lock","hash":"435241a87239f8930fb75e30ab65168b"}]}} \ No newline at end of file diff --git a/clients/GitHubEnterpriseCloud/src/Client.php b/clients/GitHubEnterpriseCloud/src/Client.php index 4bdd4b82512..f83c8f8189b 100644 --- a/clients/GitHubEnterpriseCloud/src/Client.php +++ b/clients/GitHubEnterpriseCloud/src/Client.php @@ -39,7 +39,7 @@ public function __construct(private readonly AuthenticationInterface $authentica // phpcs:disable /** - * @return ($call is Meta\Root::OPERATION_MATCH ? Schema\Root : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? Schema\Integration : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? Schema\Operations\Apps\CreateFromManifest\Response\ApplicationJson\Created : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Apps\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? Schema\IntegrationInstallationRequest : ($call is Apps\ListInstallations::OPERATION_MATCH ? Schema\Installation : ($call is Apps\GetInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? Schema\InstallationToken : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CheckToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\DeleteToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ResetToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\ScopeToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\GetBySlug::OPERATION_MATCH ? Schema\Integration : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is Emojis\Get::OPERATION_MATCH ? Schema\Operations\Emojis\Get\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? Schema\ServerStatistics : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsEnterprisePermissions : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? Schema\SelectedActions : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Runner : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? Schema\EnterpriseSecurityAnalysisSettings : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? Schema\GetConsumedLicenses : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? Schema\GetLicenseSyncStatus : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? Schema\Event : ($call is Activity\GetFeeds::OPERATION_MATCH ? Schema\Feed : ($call is Gists\List_::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Create::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListPublic::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\ListStarred::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Get::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Update::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListComments::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\CreateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\GetComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\UpdateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\ListCommits::OPERATION_MATCH ? Schema\GistCommit : ($call is Gists\ListForks::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Fork::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Star::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Unstar::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\GetRevision::OPERATION_MATCH ? Schema\GistSimple : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? Schema\Operations\Gitignore\GetAllTemplates\Response\ApplicationJson\Ok : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? Schema\GitignoreTemplate : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? Schema\Operations\Apps\ListReposAccessibleToInstallation\Response\ApplicationJson\Ok : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\List_::OPERATION_MATCH ? Schema\Issue : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? Schema\LicenseSimple : ($call is Licenses\Get::OPERATION_MATCH ? Schema\License : ($call is Markdown\Render::OPERATION_MATCH ? Schema\Operations\Markdown\Render\Response\TextHtml\Ok : ($call is Markdown\RenderRaw::OPERATION_MATCH ? Schema\Operations\Markdown\RenderRaw\Response\TextHtml\Ok : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlans::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Meta\Get::OPERATION_MATCH ? Schema\ApiOverview : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? Schema\Event|Schema\BasicError : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Activity\GetThread::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Meta\GetOctocat::OPERATION_MATCH ? Schema\Operations\Meta\GetOctocat\Response\ApplicationOctocatStream\Ok : ($call is Orgs\List_::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRoles\Response\ApplicationJson\Ok : ($call is Orgs\Get::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Orgs\Delete::OPERATION_MATCH ? Schema\Operations\Orgs\Delete\Response\ApplicationJson\Accepted : ($call is Orgs\Update::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GetActionsCacheUsageByRepoForOrg\Response\ApplicationJson\Ok : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\OidcCustomSub : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsOrganizationPermissions : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnerGroupsForOrg\Response\ApplicationJson\Ok : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg\Response\ApplicationJson\Ok : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersInGroupForOrg\Response\ApplicationJson\Ok : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForOrg\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationActionsSecret : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? Schema\OrganizationActionsVariable : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgVariable\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\BlockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInOrganization\Response\ApplicationJson\Ok : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? Schema\CodespacesOrgSecret : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? Schema\CopilotOrganizationDetails : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? Schema\Operations\Copilot\ListCopilotSeats\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForTeams\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForTeams\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForUsers\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForUsers\Response\ApplicationJson\Ok : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? Schema\CredentialAuthorization : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRepoRoles\Response\ApplicationJson\Ok : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationDependabotSecret : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Dependabot\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? Schema\Event : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Orgs\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? Schema\Operations\Orgs\ListAppInstallations\Response\ApplicationJson\Ok : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForOrg\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? Schema\Team : ($call is Issues\ListForOrg::OPERATION_MATCH ? Schema\Issue : ($call is Orgs\ListMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? Schema\Operations\Codespaces\GetCodespacesForUserInOrg\Response\ApplicationJson\Ok : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteFromOrganization\Response\ApplicationJson\Accepted : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? Schema\Codespace : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? Schema\CopilotSeatDetails : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? Schema\Operations\Orgs\ConvertMemberToOutsideCollaborator\Response\ApplicationJson\Accepted : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrantRequest : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? Schema\Operations\Orgs\ReviewPatGrantRequestsInBulk\Response\ApplicationJson\Accepted : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrant : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? Schema\Operations\Orgs\UpdatePatAccesses\Response\ApplicationJson\Accepted : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Projects\ListForOrg::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForOrg::OPERATION_MATCH ? Schema\Project : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateInOrg::OPERATION_MATCH ? Schema\Repository : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? Schema\TeamSimple : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\List_::OPERATION_MATCH ? Schema\Team : ($call is Teams\Create::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\GetByName::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? Schema\Team : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\DeleteCard::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveCard::OPERATION_MATCH ? Schema\Operations\Projects\MoveCard\Response\ApplicationJson\Created : ($call is Projects\GetColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\ListCards::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\CreateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveColumn::OPERATION_MATCH ? Schema\Operations\Projects\MoveColumn\Response\ApplicationJson\Created : ($call is Projects\Get::OPERATION_MATCH ? Schema\Project : ($call is Projects\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\Update::OPERATION_MATCH ? Schema\Project : ($call is Projects\ListCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? Schema\ProjectCollaboratorPermission : ($call is Projects\ListColumns::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\CreateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is RateLimit\Get::OPERATION_MATCH ? Schema\RateLimitOverview : ($call is Repos\Get::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Repos\Delete::OPERATION_MATCH ? Schema\BasicError : ($call is Repos\Update::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListArtifactsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetArtifact::OPERATION_MATCH ? Schema\Artifact : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? Schema\ActionsCacheUsageByRepository : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? Schema\Job : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\OidcCustomSubRepo : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationSecrets\Response\ApplicationJson\Ok : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationVariables\Response\ApplicationJson\Ok : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? Schema\ActionsRepositoryPermissions : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? Schema\ActionsWorkflowAccessToRepository : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForRepo\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? Schema\EnvironmentApprovals : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunArtifacts\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRunAttempt\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRun\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? Schema\PendingDeployment : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? Schema\Deployment : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? Schema\WorkflowRunUsage : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoWorkflows\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflow::OPERATION_MATCH ? Schema\Workflow : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRuns\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? Schema\WorkflowUsage : ($call is Repos\ListActivities::OPERATION_MATCH ? Schema\Activity : ($call is Issues\ListAssignees::OPERATION_MATCH ? Schema\SimpleUser : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListAutolinks::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\CreateAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\GetAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? Schema\CheckAutomatedSecurityFixes : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListBranches::OPERATION_MATCH ? Schema\ShortBranch : ($call is Repos\GetBranch::OPERATION_MATCH ? Schema\BranchWithProtection|Schema\BasicError : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? Schema\BranchProtection : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranch : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\GetAllStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\SetStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\AddStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\RemoveStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? Schema\BranchRestrictionPolicy : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Integration : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Team : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RenameBranch::OPERATION_MATCH ? Schema\BranchWithProtection : ($call is Checks\Create::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Get::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Update::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\ListAnnotations::OPERATION_MATCH ? Schema\CheckAnnotation : ($call is Checks\RerequestRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Checks\CreateSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? Schema\CheckSuitePreference : ($call is Checks\GetSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\ListForSuite::OPERATION_MATCH ? Schema\Operations\Checks\ListForSuite\Response\ApplicationJson\Ok : ($call is Checks\RerequestSuite::OPERATION_MATCH ? Schema\EmptyObject : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\CodeScanningAlertItems : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? Schema\CodeScanningAlertInstance : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? Schema\CodeScanningAnalysis : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysis|Schema\Operations\CodeScanning\GetAnalysis\Response\ApplicationJsonSarif\Ok : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysisDeletion : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? Schema\CodeScanningDefaultSetup : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? Schema\EmptyObject|Schema\CodeScanningDefaultSetupUpdateResponse : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsReceipt : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsStatus : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? Schema\CodeownersErrors : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\RepoMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\PreFlightWithRepoForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? Schema\RepoCodespacesSecret : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCollaborators::OPERATION_MATCH ? Schema\Collaborator : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AddCollaborator::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? Schema\RepositoryCollaboratorPermission : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\GetCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? Schema\BranchShort : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Repos\GetCommit::OPERATION_MATCH ? Schema\Commit : ($call is Checks\ListForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListForRef\Response\ApplicationJson\Ok : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListSuitesForRef\Response\ApplicationJson\Ok : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? Schema\CombinedCommitStatus : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? Schema\Status|Schema\BasicError : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? Schema\CommunityProfile : ($call is Repos\CompareCommits::OPERATION_MATCH ? Schema\CommitComparison : ($call is Repos\GetContent::OPERATION_MATCH ? Schema\ContentTree|Schema\Operations\Repos\GetContent\Response\ApplicationJson\Ok : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\DeleteFile::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\ListContributors::OPERATION_MATCH ? Schema\Contributor : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\GetAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? Schema\DependabotSecret : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? Schema\DependencyGraphDiff : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? Schema\DependencyGraphSpdxSbom : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? Schema\Operations\DependencyGraph\CreateRepositorySnapshot\Response\ApplicationJson\Created : ($call is Repos\ListDeployments::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\CreateDeployment::OPERATION_MATCH ? Schema\Deployment|Schema\Operations\Repos\CreateDeployment\Response\ApplicationJson\Accepted : ($call is Repos\GetDeployment::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? Schema\Operations\Repos\GetAllEnvironments\Response\ApplicationJson\Ok : ($call is Repos\GetEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? Schema\Operations\Repos\GetAllDeploymentProtectionRules\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? Schema\Operations\Repos\ListCustomDeploymentRuleIntegrations\Response\ApplicationJson\Ok : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForks::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateFork::OPERATION_MATCH ? Schema\FullRepository : ($call is Git\CreateBlob::OPERATION_MATCH ? Schema\ShortBlob : ($call is Git\GetBlob::OPERATION_MATCH ? Schema\Blob : ($call is Git\CreateCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\GetCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? Schema\GitRef : ($call is Git\GetRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\DeleteRef::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Git\UpdateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\GetTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\CreateTree::OPERATION_MATCH ? Schema\GitTree : ($call is Git\GetTree::OPERATION_MATCH ? Schema\GitTree : ($call is Repos\ListWebhooks::OPERATION_MATCH ? Schema\Hook : ($call is Repos\CreateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Repos\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Repos\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? Schema\Import : ($call is Migrations\StartImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\CancelImport::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UpdateImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? Schema\PorterLargeFile : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? Schema\Import : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? Schema\Installation|Schema\BasicError : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForRepo\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListInvitations::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Issues\ListForRepo::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Create::OPERATION_MATCH ? Schema\Issue : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\GetComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\GetEvent::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\Get::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Update::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\AddAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListComments::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\CreateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\ListEvents::OPERATION_MATCH ? Schema\IssueEventForIssue : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\SetLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\AddLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? Schema\BasicError : ($call is Issues\RemoveLabel::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\Lock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\Unlock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? Schema\TimelineIssueEvents : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\GetDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? Schema\Label : ($call is Issues\CreateLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\GetLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateLabel::OPERATION_MATCH ? Schema\Label : ($call is Repos\ListLanguages::OPERATION_MATCH ? Schema\Language : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? Schema\Operations\Repos\EnableLfsForRepo\Response\ApplicationJson\Accepted : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Licenses\GetForRepo::OPERATION_MATCH ? Schema\LicenseContent : ($call is Repos\MergeUpstream::OPERATION_MATCH ? Schema\MergedUpstream : ($call is Repos\Merge::OPERATION_MATCH ? Schema\Commit : ($call is Issues\ListMilestones::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\CreateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\GetMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? Schema\Label : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkRepoNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Repos\GetPages::OPERATION_MATCH ? Schema\Page : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? Schema\Page : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? Schema\PageBuildStatus : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? Schema\PageDeployment : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? Schema\PagesHealthCheck|Schema\EmptyObject : ($call is Projects\ListForRepo::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForRepo::OPERATION_MATCH ? Schema\Project : ($call is Pulls\List_::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\Create::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Get::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\Update::OPERATION_MATCH ? Schema\PullRequest : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Pulls\ListFiles::OPERATION_MATCH ? Schema\DiffEntry : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Merge::OPERATION_MATCH ? Schema\PullRequestMergeResult : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestReviewRequest : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\ListReviews::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\CreateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\GetReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? Schema\ReviewComment : ($call is Pulls\DismissReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\SubmitReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? Schema\Operations\Pulls\UpdateBranch\Response\ApplicationJson\Accepted : ($call is Repos\GetReadme::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\ListReleases::OPERATION_MATCH ? Schema\Release : ($call is Repos\CreateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? Schema\ReleaseNotesContent : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Reactions\ListForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetBranchRules::OPERATION_MATCH ? Schema\RepositoryRuleDetailed : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? Schema\SecretScanningLocation : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? Schema\Operations\SecurityAdvisories\CreateRepositoryAdvisoryCveRequest\Response\ApplicationJson\Accepted : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? Schema\Operations\Activity\ListStargazersForRepo\Response\ApplicationJson\Ok : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok|Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Accepted : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? Schema\CommitActivity|Schema\Operations\Repos\GetCommitActivityStats\Response\ApplicationJson\Accepted : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? Schema\ContributorActivity|Schema\Operations\Repos\GetContributorsStats\Response\ApplicationJson\Accepted : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? Schema\ParticipationStats : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? Schema\Status : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? Schema\SimpleUser : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListTags::OPERATION_MATCH ? Schema\Tag : ($call is Repos\ListTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\ListTeams::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\GetClones::OPERATION_MATCH ? Schema\CloneTraffic : ($call is Repos\GetTopPaths::OPERATION_MATCH ? Schema\ContentTraffic : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? Schema\ReferrerTraffic : ($call is Repos\GetViews::OPERATION_MATCH ? Schema\ViewTraffic : ($call is Repos\Transfer::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListPublic::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? Schema\ScimUserList : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Search\Code::OPERATION_MATCH ? Schema\Operations\Search\Code\Response\ApplicationJson\Ok : ($call is Search\Commits::OPERATION_MATCH ? Schema\Operations\Search\Commits\Response\ApplicationJson\Ok : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? Schema\Operations\Search\IssuesAndPullRequests\Response\ApplicationJson\Ok : ($call is Search\Labels::OPERATION_MATCH ? Schema\Operations\Search\Labels\Response\ApplicationJson\Ok : ($call is Search\Repos::OPERATION_MATCH ? Schema\Operations\Search\Repos\Response\ApplicationJson\Ok : ($call is Search\Topics::OPERATION_MATCH ? Schema\Operations\Search\Topics\Response\ApplicationJson\Ok : ($call is Search\Users::OPERATION_MATCH ? Schema\Operations\Search\Users\Response\ApplicationJson\Ok : ($call is Teams\GetLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? Schema\Team : ($call is Users\GetAuthenticated::OPERATION_MATCH ? Schema\Operations\Users\GetAuthenticated\Response\ApplicationJson\Ok : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? Schema\PrivateUser : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckBlocked::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Block::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unblock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSecretsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesUserPublicKey : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesSecret : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepositoriesForSecretForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteForAuthenticatedUser\Response\ApplicationJson\Accepted : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\CodespaceMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceWithFullRepository : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Follow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unfollow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationReposForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Issue : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Project : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? Schema\Repository|Schema\StarredRepository : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\TeamFull : ($call is Users\List_::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\GetByUsername::OPERATION_MATCH ? Schema\Operations\Users\GetByUsername\Response\ApplicationJson\Ok : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\ListForUser::OPERATION_MATCH ? Schema\BaseGist : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetContextForUser::OPERATION_MATCH ? Schema\Hovercard : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? Schema\KeySimple : ($call is Orgs\ListForUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\ListForUser::OPERATION_MATCH ? Schema\Project : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? Schema\Operations\Activity\ListReposStarredByUser\Response\ApplicationJson\Ok : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Meta\GetAllVersions::OPERATION_MATCH ? Schema\Operations\Meta\GetAllVersions\Response\ApplicationJson\Ok : Schema\Operations\Meta\GetZen\Response\ApplicationJson\Ok)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + * @return ($call is Meta\Root::OPERATION_MATCH ? Schema\Root : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? Schema\Integration : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? Schema\Operations\Apps\CreateFromManifest\Response\ApplicationJson\Created : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Apps\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? Schema\IntegrationInstallationRequest : ($call is Apps\ListInstallations::OPERATION_MATCH ? Schema\Installation : ($call is Apps\GetInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? Schema\InstallationToken : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CheckToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\DeleteToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ResetToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\ScopeToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\GetBySlug::OPERATION_MATCH ? Schema\Integration : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is Emojis\Get::OPERATION_MATCH ? Schema\Operations\Emojis\Get\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? Schema\ServerStatistics : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsEnterprisePermissions : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? Schema\SelectedActions : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Runner : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? Schema\EnterpriseSecurityAnalysisSettings : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? Schema\GetConsumedLicenses : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? Schema\GetLicenseSyncStatus : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? Schema\Event : ($call is Activity\GetFeeds::OPERATION_MATCH ? Schema\Feed : ($call is Gists\List_::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Create::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListPublic::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\ListStarred::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Get::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Update::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListComments::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\CreateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\GetComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\UpdateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\ListCommits::OPERATION_MATCH ? Schema\GistCommit : ($call is Gists\ListForks::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Fork::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Star::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Unstar::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\GetRevision::OPERATION_MATCH ? Schema\GistSimple : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? Schema\Operations\Gitignore\GetAllTemplates\Response\ApplicationJson\Ok : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? Schema\GitignoreTemplate : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? Schema\Operations\Apps\ListReposAccessibleToInstallation\Response\ApplicationJson\Ok : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\List_::OPERATION_MATCH ? Schema\Issue : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? Schema\LicenseSimple : ($call is Licenses\Get::OPERATION_MATCH ? Schema\License : ($call is Markdown\Render::OPERATION_MATCH ? Schema\Operations\Markdown\Render\Response\TextHtml\Ok : ($call is Markdown\RenderRaw::OPERATION_MATCH ? Schema\Operations\Markdown\RenderRaw\Response\TextHtml\Ok : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlans::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Meta\Get::OPERATION_MATCH ? Schema\ApiOverview : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? Schema\Event|Schema\BasicError : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Activity\GetThread::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Meta\GetOctocat::OPERATION_MATCH ? Schema\Operations\Meta\GetOctocat\Response\ApplicationOctocatStream\Ok : ($call is Orgs\List_::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRoles\Response\ApplicationJson\Ok : ($call is Orgs\Get::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Orgs\Delete::OPERATION_MATCH ? Schema\Operations\Orgs\Delete\Response\ApplicationJson\Accepted : ($call is Orgs\Update::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GetActionsCacheUsageByRepoForOrg\Response\ApplicationJson\Ok : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\OidcCustomSub : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsOrganizationPermissions : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnerGroupsForOrg\Response\ApplicationJson\Ok : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg\Response\ApplicationJson\Ok : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersInGroupForOrg\Response\ApplicationJson\Ok : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForOrg\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationActionsSecret : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? Schema\OrganizationActionsVariable : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgVariable\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\BlockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInOrganization\Response\ApplicationJson\Ok : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? Schema\CodespacesOrgSecret : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? Schema\CopilotOrganizationDetails : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? Schema\Operations\Copilot\ListCopilotSeats\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForTeams\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForTeams\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForUsers\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForUsers\Response\ApplicationJson\Ok : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? Schema\CredentialAuthorization : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRepoRoles\Response\ApplicationJson\Ok : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationDependabotSecret : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Dependabot\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? Schema\Event : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Orgs\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? Schema\Operations\Orgs\ListAppInstallations\Response\ApplicationJson\Ok : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForOrg\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? Schema\Team : ($call is Issues\ListForOrg::OPERATION_MATCH ? Schema\Issue : ($call is Orgs\ListMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? Schema\Operations\Codespaces\GetCodespacesForUserInOrg\Response\ApplicationJson\Ok : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteFromOrganization\Response\ApplicationJson\Accepted : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? Schema\Codespace : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? Schema\CopilotSeatDetails : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? Schema\Operations\Orgs\ConvertMemberToOutsideCollaborator\Response\ApplicationJson\Accepted : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrantRequest : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? Schema\Operations\Orgs\ReviewPatGrantRequestsInBulk\Response\ApplicationJson\Accepted : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrant : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? Schema\Operations\Orgs\UpdatePatAccesses\Response\ApplicationJson\Accepted : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Projects\ListForOrg::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForOrg::OPERATION_MATCH ? Schema\Project : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateInOrg::OPERATION_MATCH ? Schema\Repository : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? Schema\TeamSimple : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\List_::OPERATION_MATCH ? Schema\Team : ($call is Teams\Create::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\GetByName::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? Schema\Team : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\DeleteCard::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveCard::OPERATION_MATCH ? Schema\Operations\Projects\MoveCard\Response\ApplicationJson\Created : ($call is Projects\GetColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\ListCards::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\CreateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveColumn::OPERATION_MATCH ? Schema\Operations\Projects\MoveColumn\Response\ApplicationJson\Created : ($call is Projects\Get::OPERATION_MATCH ? Schema\Project : ($call is Projects\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\Update::OPERATION_MATCH ? Schema\Project : ($call is Projects\ListCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? Schema\ProjectCollaboratorPermission : ($call is Projects\ListColumns::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\CreateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is RateLimit\Get::OPERATION_MATCH ? Schema\RateLimitOverview : ($call is Repos\Get::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Repos\Delete::OPERATION_MATCH ? Schema\BasicError : ($call is Repos\Update::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListArtifactsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetArtifact::OPERATION_MATCH ? Schema\Artifact : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? Schema\ActionsCacheUsageByRepository : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? Schema\Job : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\OidcCustomSubRepo : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationSecrets\Response\ApplicationJson\Ok : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationVariables\Response\ApplicationJson\Ok : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? Schema\ActionsRepositoryPermissions : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? Schema\ActionsWorkflowAccessToRepository : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForRepo\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? Schema\EnvironmentApprovals : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunArtifacts\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRunAttempt\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRun\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? Schema\PendingDeployment : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? Schema\Deployment : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? Schema\WorkflowRunUsage : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoWorkflows\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflow::OPERATION_MATCH ? Schema\Workflow : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRuns\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? Schema\WorkflowUsage : ($call is Repos\ListActivities::OPERATION_MATCH ? Schema\Activity : ($call is Issues\ListAssignees::OPERATION_MATCH ? Schema\SimpleUser : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListAutolinks::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\CreateAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\GetAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? Schema\CheckAutomatedSecurityFixes : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListBranches::OPERATION_MATCH ? Schema\ShortBranch : ($call is Repos\GetBranch::OPERATION_MATCH ? Schema\BranchWithProtection|Schema\BasicError : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? Schema\BranchProtection : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranch : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\GetAllStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\SetStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\AddStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\RemoveStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? Schema\BranchRestrictionPolicy : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Integration : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Team : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RenameBranch::OPERATION_MATCH ? Schema\BranchWithProtection : ($call is Checks\Create::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Get::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Update::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\ListAnnotations::OPERATION_MATCH ? Schema\CheckAnnotation : ($call is Checks\RerequestRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Checks\CreateSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? Schema\CheckSuitePreference : ($call is Checks\GetSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\ListForSuite::OPERATION_MATCH ? Schema\Operations\Checks\ListForSuite\Response\ApplicationJson\Ok : ($call is Checks\RerequestSuite::OPERATION_MATCH ? Schema\EmptyObject : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\CodeScanningAlertItems : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? Schema\CodeScanningAlertInstance : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? Schema\CodeScanningAnalysis : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysis|Schema\Operations\CodeScanning\GetAnalysis\Response\ApplicationJsonSarif\Ok : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysisDeletion : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? Schema\CodeScanningDefaultSetup : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? Schema\EmptyObject|Schema\CodeScanningDefaultSetupUpdateResponse : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsReceipt : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsStatus : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? Schema\CodeownersErrors : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\RepoMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\PreFlightWithRepoForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? Schema\RepoCodespacesSecret : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCollaborators::OPERATION_MATCH ? Schema\Collaborator : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AddCollaborator::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? Schema\RepositoryCollaboratorPermission : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\GetCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? Schema\BranchShort : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Repos\GetCommit::OPERATION_MATCH ? Schema\Commit : ($call is Checks\ListForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListForRef\Response\ApplicationJson\Ok : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListSuitesForRef\Response\ApplicationJson\Ok : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? Schema\CombinedCommitStatus : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? Schema\Status|Schema\BasicError : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? Schema\CommunityProfile : ($call is Repos\CompareCommits::OPERATION_MATCH ? Schema\CommitComparison : ($call is Repos\GetContent::OPERATION_MATCH ? Schema\ContentTree|Schema\Operations\Repos\GetContent\Response\ApplicationJson\Ok : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\DeleteFile::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\ListContributors::OPERATION_MATCH ? Schema\Contributor : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\GetAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? Schema\DependabotSecret : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? Schema\DependencyGraphDiff : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? Schema\DependencyGraphSpdxSbom : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? Schema\Operations\DependencyGraph\CreateRepositorySnapshot\Response\ApplicationJson\Created : ($call is Repos\ListDeployments::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\CreateDeployment::OPERATION_MATCH ? Schema\Deployment|Schema\Operations\Repos\CreateDeployment\Response\ApplicationJson\Accepted : ($call is Repos\GetDeployment::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? Schema\Operations\Repos\GetAllEnvironments\Response\ApplicationJson\Ok : ($call is Repos\GetEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? Schema\Operations\Repos\GetAllDeploymentProtectionRules\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? Schema\Operations\Repos\ListCustomDeploymentRuleIntegrations\Response\ApplicationJson\Ok : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForks::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateFork::OPERATION_MATCH ? Schema\FullRepository : ($call is Git\CreateBlob::OPERATION_MATCH ? Schema\ShortBlob : ($call is Git\GetBlob::OPERATION_MATCH ? Schema\Blob : ($call is Git\CreateCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\GetCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? Schema\GitRef : ($call is Git\GetRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\DeleteRef::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Git\UpdateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\GetTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\CreateTree::OPERATION_MATCH ? Schema\GitTree : ($call is Git\GetTree::OPERATION_MATCH ? Schema\GitTree : ($call is Repos\ListWebhooks::OPERATION_MATCH ? Schema\Hook : ($call is Repos\CreateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Repos\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Repos\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? Schema\Import : ($call is Migrations\StartImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\CancelImport::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UpdateImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? Schema\PorterLargeFile : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? Schema\Import : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? Schema\Installation|Schema\BasicError : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForRepo\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListInvitations::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Issues\ListForRepo::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Create::OPERATION_MATCH ? Schema\Issue : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\GetComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\GetEvent::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\Get::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Update::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\AddAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListComments::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\CreateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\ListEvents::OPERATION_MATCH ? Schema\IssueEventForIssue : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\SetLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\AddLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? Schema\BasicError : ($call is Issues\RemoveLabel::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\Lock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\Unlock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? Schema\TimelineIssueEvents : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\GetDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? Schema\Label : ($call is Issues\CreateLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\GetLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateLabel::OPERATION_MATCH ? Schema\Label : ($call is Repos\ListLanguages::OPERATION_MATCH ? Schema\Language : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? Schema\Operations\Repos\EnableLfsForRepo\Response\ApplicationJson\Accepted : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Licenses\GetForRepo::OPERATION_MATCH ? Schema\LicenseContent : ($call is Repos\MergeUpstream::OPERATION_MATCH ? Schema\MergedUpstream : ($call is Repos\Merge::OPERATION_MATCH ? Schema\Commit : ($call is Issues\ListMilestones::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\CreateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\GetMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? Schema\Label : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkRepoNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Repos\GetPages::OPERATION_MATCH ? Schema\Page : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? Schema\Page : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? Schema\PageBuildStatus : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? Schema\PageDeployment : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? Schema\PagesHealthCheck|Schema\EmptyObject : ($call is Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\ListForRepo::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForRepo::OPERATION_MATCH ? Schema\Project : ($call is Pulls\List_::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\Create::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Get::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\Update::OPERATION_MATCH ? Schema\PullRequest : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Pulls\ListFiles::OPERATION_MATCH ? Schema\DiffEntry : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Merge::OPERATION_MATCH ? Schema\PullRequestMergeResult : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestReviewRequest : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\ListReviews::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\CreateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\GetReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? Schema\ReviewComment : ($call is Pulls\DismissReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\SubmitReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? Schema\Operations\Pulls\UpdateBranch\Response\ApplicationJson\Accepted : ($call is Repos\GetReadme::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\ListReleases::OPERATION_MATCH ? Schema\Release : ($call is Repos\CreateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? Schema\ReleaseNotesContent : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Reactions\ListForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetBranchRules::OPERATION_MATCH ? Schema\RepositoryRuleDetailed : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? Schema\SecretScanningLocation : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? Schema\Operations\SecurityAdvisories\CreateRepositoryAdvisoryCveRequest\Response\ApplicationJson\Accepted : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? Schema\Operations\Activity\ListStargazersForRepo\Response\ApplicationJson\Ok : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok|Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Accepted : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? Schema\CommitActivity|Schema\Operations\Repos\GetCommitActivityStats\Response\ApplicationJson\Accepted : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? Schema\ContributorActivity|Schema\Operations\Repos\GetContributorsStats\Response\ApplicationJson\Accepted : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? Schema\ParticipationStats : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? Schema\Status : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? Schema\SimpleUser : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListTags::OPERATION_MATCH ? Schema\Tag : ($call is Repos\ListTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\ListTeams::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\GetClones::OPERATION_MATCH ? Schema\CloneTraffic : ($call is Repos\GetTopPaths::OPERATION_MATCH ? Schema\ContentTraffic : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? Schema\ReferrerTraffic : ($call is Repos\GetViews::OPERATION_MATCH ? Schema\ViewTraffic : ($call is Repos\Transfer::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListPublic::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? Schema\ScimUserList : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Search\Code::OPERATION_MATCH ? Schema\Operations\Search\Code\Response\ApplicationJson\Ok : ($call is Search\Commits::OPERATION_MATCH ? Schema\Operations\Search\Commits\Response\ApplicationJson\Ok : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? Schema\Operations\Search\IssuesAndPullRequests\Response\ApplicationJson\Ok : ($call is Search\Labels::OPERATION_MATCH ? Schema\Operations\Search\Labels\Response\ApplicationJson\Ok : ($call is Search\Repos::OPERATION_MATCH ? Schema\Operations\Search\Repos\Response\ApplicationJson\Ok : ($call is Search\Topics::OPERATION_MATCH ? Schema\Operations\Search\Topics\Response\ApplicationJson\Ok : ($call is Search\Users::OPERATION_MATCH ? Schema\Operations\Search\Users\Response\ApplicationJson\Ok : ($call is Teams\GetLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? Schema\Team : ($call is Users\GetAuthenticated::OPERATION_MATCH ? Schema\Operations\Users\GetAuthenticated\Response\ApplicationJson\Ok : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? Schema\PrivateUser : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckBlocked::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Block::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unblock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSecretsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesUserPublicKey : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesSecret : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepositoriesForSecretForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteForAuthenticatedUser\Response\ApplicationJson\Accepted : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\CodespaceMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceWithFullRepository : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Follow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unfollow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationReposForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Issue : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Project : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? Schema\Repository|Schema\StarredRepository : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\TeamFull : ($call is Users\List_::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\GetByUsername::OPERATION_MATCH ? Schema\Operations\Users\GetByUsername\Response\ApplicationJson\Ok : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\ListForUser::OPERATION_MATCH ? Schema\BaseGist : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetContextForUser::OPERATION_MATCH ? Schema\Hovercard : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? Schema\KeySimple : ($call is Orgs\ListForUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\ListForUser::OPERATION_MATCH ? Schema\Project : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? Schema\Operations\Activity\ListReposStarredByUser\Response\ApplicationJson\Ok : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Meta\GetAllVersions::OPERATION_MATCH ? Schema\Operations\Meta\GetAllVersions\Response\ApplicationJson\Ok : Schema\Operations\Meta\GetZen\Response\ApplicationJson\Ok)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) */ // phpcs:enable public function call(string $call, array $params = []) @@ -54,7 +54,7 @@ public function call(string $call, array $params = []) // phpcs:disable /** - * @return ($call is Meta\Root::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CheckToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ResetToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ScopeToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetBySlug::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Emojis\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetFeeds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Fork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Star::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Unstar::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\GetRevision::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\Render::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\RenderRaw::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlans::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetThread::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Meta\GetOctocat::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\BlockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetByName::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteCard::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\GetColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCards::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListColumns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is RateLimit\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListActivities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListAutolinks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListBranches::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RenameBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListAnnotations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\CreateSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\GetSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CompareCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteFile::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListContributors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateFork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\DeleteRef::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Git\UpdateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\CancelImport::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UpdateImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\SetLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Lock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\Unlock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListLanguages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Licenses\GetForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\MergeUpstream::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListMilestones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DismissReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\SubmitReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadme::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetBranchRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTags::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetClones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopPaths::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetViews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Transfer::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Code::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Commits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Labels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Repos::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Topics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Users::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckBlocked::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Block::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unblock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Follow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unfollow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetByUsername::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetContextForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\GetAllVersions::OPERATION_MATCH ? \React\Promise\PromiseInterface : \React\Promise\PromiseInterface)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + * @return ($call is Meta\Root::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CheckToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ResetToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ScopeToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetBySlug::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Emojis\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetFeeds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Fork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Star::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Unstar::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\GetRevision::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\Render::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\RenderRaw::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlans::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetThread::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Meta\GetOctocat::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\BlockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetByName::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteCard::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\GetColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCards::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListColumns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is RateLimit\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListActivities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListAutolinks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListBranches::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RenameBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListAnnotations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\CreateSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\GetSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CompareCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteFile::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListContributors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateFork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\DeleteRef::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Git\UpdateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\CancelImport::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UpdateImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\SetLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Lock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\Unlock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListLanguages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Licenses\GetForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\MergeUpstream::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListMilestones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DismissReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\SubmitReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadme::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetBranchRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTags::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetClones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopPaths::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetViews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Transfer::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Code::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Commits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Labels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Repos::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Topics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Users::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckBlocked::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Block::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unblock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Follow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unfollow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetByUsername::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetContextForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\GetAllVersions::OPERATION_MATCH ? \React\Promise\PromiseInterface : \React\Promise\PromiseInterface)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) */ // phpcs:enable public function callAsync(string $call, array $params = []) diff --git a/clients/GitHubEnterpriseCloud/src/ClientInterface.php b/clients/GitHubEnterpriseCloud/src/ClientInterface.php index f5bb6670536..65e17678bcd 100644 --- a/clients/GitHubEnterpriseCloud/src/ClientInterface.php +++ b/clients/GitHubEnterpriseCloud/src/ClientInterface.php @@ -10,14 +10,14 @@ interface ClientInterface { // phpcs:disable /** - * @return ($call is Meta\Root::OPERATION_MATCH ? Schema\Root : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? Schema\Integration : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? Schema\Operations\Apps\CreateFromManifest\Response\ApplicationJson\Created : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Apps\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? Schema\IntegrationInstallationRequest : ($call is Apps\ListInstallations::OPERATION_MATCH ? Schema\Installation : ($call is Apps\GetInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? Schema\InstallationToken : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CheckToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\DeleteToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ResetToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\ScopeToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\GetBySlug::OPERATION_MATCH ? Schema\Integration : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is Emojis\Get::OPERATION_MATCH ? Schema\Operations\Emojis\Get\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? Schema\ServerStatistics : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsEnterprisePermissions : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? Schema\SelectedActions : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Runner : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? Schema\EnterpriseSecurityAnalysisSettings : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? Schema\GetConsumedLicenses : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? Schema\GetLicenseSyncStatus : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? Schema\Event : ($call is Activity\GetFeeds::OPERATION_MATCH ? Schema\Feed : ($call is Gists\List_::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Create::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListPublic::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\ListStarred::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Get::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Update::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListComments::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\CreateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\GetComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\UpdateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\ListCommits::OPERATION_MATCH ? Schema\GistCommit : ($call is Gists\ListForks::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Fork::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Star::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Unstar::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\GetRevision::OPERATION_MATCH ? Schema\GistSimple : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? Schema\Operations\Gitignore\GetAllTemplates\Response\ApplicationJson\Ok : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? Schema\GitignoreTemplate : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? Schema\Operations\Apps\ListReposAccessibleToInstallation\Response\ApplicationJson\Ok : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\List_::OPERATION_MATCH ? Schema\Issue : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? Schema\LicenseSimple : ($call is Licenses\Get::OPERATION_MATCH ? Schema\License : ($call is Markdown\Render::OPERATION_MATCH ? Schema\Operations\Markdown\Render\Response\TextHtml\Ok : ($call is Markdown\RenderRaw::OPERATION_MATCH ? Schema\Operations\Markdown\RenderRaw\Response\TextHtml\Ok : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlans::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Meta\Get::OPERATION_MATCH ? Schema\ApiOverview : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? Schema\Event|Schema\BasicError : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Activity\GetThread::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Meta\GetOctocat::OPERATION_MATCH ? Schema\Operations\Meta\GetOctocat\Response\ApplicationOctocatStream\Ok : ($call is Orgs\List_::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRoles\Response\ApplicationJson\Ok : ($call is Orgs\Get::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Orgs\Delete::OPERATION_MATCH ? Schema\Operations\Orgs\Delete\Response\ApplicationJson\Accepted : ($call is Orgs\Update::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GetActionsCacheUsageByRepoForOrg\Response\ApplicationJson\Ok : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\OidcCustomSub : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsOrganizationPermissions : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnerGroupsForOrg\Response\ApplicationJson\Ok : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg\Response\ApplicationJson\Ok : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersInGroupForOrg\Response\ApplicationJson\Ok : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForOrg\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationActionsSecret : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? Schema\OrganizationActionsVariable : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgVariable\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\BlockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInOrganization\Response\ApplicationJson\Ok : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? Schema\CodespacesOrgSecret : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? Schema\CopilotOrganizationDetails : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? Schema\Operations\Copilot\ListCopilotSeats\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForTeams\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForTeams\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForUsers\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForUsers\Response\ApplicationJson\Ok : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? Schema\CredentialAuthorization : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRepoRoles\Response\ApplicationJson\Ok : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationDependabotSecret : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Dependabot\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? Schema\Event : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Orgs\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? Schema\Operations\Orgs\ListAppInstallations\Response\ApplicationJson\Ok : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForOrg\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? Schema\Team : ($call is Issues\ListForOrg::OPERATION_MATCH ? Schema\Issue : ($call is Orgs\ListMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? Schema\Operations\Codespaces\GetCodespacesForUserInOrg\Response\ApplicationJson\Ok : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteFromOrganization\Response\ApplicationJson\Accepted : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? Schema\Codespace : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? Schema\CopilotSeatDetails : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? Schema\Operations\Orgs\ConvertMemberToOutsideCollaborator\Response\ApplicationJson\Accepted : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrantRequest : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? Schema\Operations\Orgs\ReviewPatGrantRequestsInBulk\Response\ApplicationJson\Accepted : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrant : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? Schema\Operations\Orgs\UpdatePatAccesses\Response\ApplicationJson\Accepted : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Projects\ListForOrg::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForOrg::OPERATION_MATCH ? Schema\Project : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateInOrg::OPERATION_MATCH ? Schema\Repository : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? Schema\TeamSimple : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\List_::OPERATION_MATCH ? Schema\Team : ($call is Teams\Create::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\GetByName::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? Schema\Team : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\DeleteCard::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveCard::OPERATION_MATCH ? Schema\Operations\Projects\MoveCard\Response\ApplicationJson\Created : ($call is Projects\GetColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\ListCards::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\CreateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveColumn::OPERATION_MATCH ? Schema\Operations\Projects\MoveColumn\Response\ApplicationJson\Created : ($call is Projects\Get::OPERATION_MATCH ? Schema\Project : ($call is Projects\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\Update::OPERATION_MATCH ? Schema\Project : ($call is Projects\ListCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? Schema\ProjectCollaboratorPermission : ($call is Projects\ListColumns::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\CreateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is RateLimit\Get::OPERATION_MATCH ? Schema\RateLimitOverview : ($call is Repos\Get::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Repos\Delete::OPERATION_MATCH ? Schema\BasicError : ($call is Repos\Update::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListArtifactsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetArtifact::OPERATION_MATCH ? Schema\Artifact : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? Schema\ActionsCacheUsageByRepository : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? Schema\Job : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\OidcCustomSubRepo : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationSecrets\Response\ApplicationJson\Ok : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationVariables\Response\ApplicationJson\Ok : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? Schema\ActionsRepositoryPermissions : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? Schema\ActionsWorkflowAccessToRepository : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForRepo\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? Schema\EnvironmentApprovals : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunArtifacts\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRunAttempt\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRun\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? Schema\PendingDeployment : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? Schema\Deployment : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? Schema\WorkflowRunUsage : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoWorkflows\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflow::OPERATION_MATCH ? Schema\Workflow : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRuns\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? Schema\WorkflowUsage : ($call is Repos\ListActivities::OPERATION_MATCH ? Schema\Activity : ($call is Issues\ListAssignees::OPERATION_MATCH ? Schema\SimpleUser : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListAutolinks::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\CreateAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\GetAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? Schema\CheckAutomatedSecurityFixes : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListBranches::OPERATION_MATCH ? Schema\ShortBranch : ($call is Repos\GetBranch::OPERATION_MATCH ? Schema\BranchWithProtection|Schema\BasicError : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? Schema\BranchProtection : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranch : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\GetAllStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\SetStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\AddStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\RemoveStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? Schema\BranchRestrictionPolicy : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Integration : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Team : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RenameBranch::OPERATION_MATCH ? Schema\BranchWithProtection : ($call is Checks\Create::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Get::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Update::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\ListAnnotations::OPERATION_MATCH ? Schema\CheckAnnotation : ($call is Checks\RerequestRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Checks\CreateSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? Schema\CheckSuitePreference : ($call is Checks\GetSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\ListForSuite::OPERATION_MATCH ? Schema\Operations\Checks\ListForSuite\Response\ApplicationJson\Ok : ($call is Checks\RerequestSuite::OPERATION_MATCH ? Schema\EmptyObject : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\CodeScanningAlertItems : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? Schema\CodeScanningAlertInstance : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? Schema\CodeScanningAnalysis : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysis|Schema\Operations\CodeScanning\GetAnalysis\Response\ApplicationJsonSarif\Ok : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysisDeletion : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? Schema\CodeScanningDefaultSetup : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? Schema\EmptyObject|Schema\CodeScanningDefaultSetupUpdateResponse : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsReceipt : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsStatus : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? Schema\CodeownersErrors : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\RepoMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\PreFlightWithRepoForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? Schema\RepoCodespacesSecret : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCollaborators::OPERATION_MATCH ? Schema\Collaborator : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AddCollaborator::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? Schema\RepositoryCollaboratorPermission : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\GetCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? Schema\BranchShort : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Repos\GetCommit::OPERATION_MATCH ? Schema\Commit : ($call is Checks\ListForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListForRef\Response\ApplicationJson\Ok : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListSuitesForRef\Response\ApplicationJson\Ok : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? Schema\CombinedCommitStatus : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? Schema\Status|Schema\BasicError : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? Schema\CommunityProfile : ($call is Repos\CompareCommits::OPERATION_MATCH ? Schema\CommitComparison : ($call is Repos\GetContent::OPERATION_MATCH ? Schema\ContentTree|Schema\Operations\Repos\GetContent\Response\ApplicationJson\Ok : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\DeleteFile::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\ListContributors::OPERATION_MATCH ? Schema\Contributor : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\GetAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? Schema\DependabotSecret : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? Schema\DependencyGraphDiff : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? Schema\DependencyGraphSpdxSbom : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? Schema\Operations\DependencyGraph\CreateRepositorySnapshot\Response\ApplicationJson\Created : ($call is Repos\ListDeployments::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\CreateDeployment::OPERATION_MATCH ? Schema\Deployment|Schema\Operations\Repos\CreateDeployment\Response\ApplicationJson\Accepted : ($call is Repos\GetDeployment::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? Schema\Operations\Repos\GetAllEnvironments\Response\ApplicationJson\Ok : ($call is Repos\GetEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? Schema\Operations\Repos\GetAllDeploymentProtectionRules\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? Schema\Operations\Repos\ListCustomDeploymentRuleIntegrations\Response\ApplicationJson\Ok : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForks::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateFork::OPERATION_MATCH ? Schema\FullRepository : ($call is Git\CreateBlob::OPERATION_MATCH ? Schema\ShortBlob : ($call is Git\GetBlob::OPERATION_MATCH ? Schema\Blob : ($call is Git\CreateCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\GetCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? Schema\GitRef : ($call is Git\GetRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\DeleteRef::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Git\UpdateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\GetTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\CreateTree::OPERATION_MATCH ? Schema\GitTree : ($call is Git\GetTree::OPERATION_MATCH ? Schema\GitTree : ($call is Repos\ListWebhooks::OPERATION_MATCH ? Schema\Hook : ($call is Repos\CreateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Repos\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Repos\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? Schema\Import : ($call is Migrations\StartImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\CancelImport::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UpdateImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? Schema\PorterLargeFile : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? Schema\Import : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? Schema\Installation|Schema\BasicError : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForRepo\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListInvitations::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Issues\ListForRepo::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Create::OPERATION_MATCH ? Schema\Issue : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\GetComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\GetEvent::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\Get::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Update::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\AddAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListComments::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\CreateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\ListEvents::OPERATION_MATCH ? Schema\IssueEventForIssue : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\SetLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\AddLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? Schema\BasicError : ($call is Issues\RemoveLabel::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\Lock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\Unlock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? Schema\TimelineIssueEvents : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\GetDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? Schema\Label : ($call is Issues\CreateLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\GetLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateLabel::OPERATION_MATCH ? Schema\Label : ($call is Repos\ListLanguages::OPERATION_MATCH ? Schema\Language : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? Schema\Operations\Repos\EnableLfsForRepo\Response\ApplicationJson\Accepted : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Licenses\GetForRepo::OPERATION_MATCH ? Schema\LicenseContent : ($call is Repos\MergeUpstream::OPERATION_MATCH ? Schema\MergedUpstream : ($call is Repos\Merge::OPERATION_MATCH ? Schema\Commit : ($call is Issues\ListMilestones::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\CreateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\GetMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? Schema\Label : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkRepoNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Repos\GetPages::OPERATION_MATCH ? Schema\Page : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? Schema\Page : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? Schema\PageBuildStatus : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? Schema\PageDeployment : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? Schema\PagesHealthCheck|Schema\EmptyObject : ($call is Projects\ListForRepo::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForRepo::OPERATION_MATCH ? Schema\Project : ($call is Pulls\List_::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\Create::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Get::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\Update::OPERATION_MATCH ? Schema\PullRequest : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Pulls\ListFiles::OPERATION_MATCH ? Schema\DiffEntry : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Merge::OPERATION_MATCH ? Schema\PullRequestMergeResult : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestReviewRequest : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\ListReviews::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\CreateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\GetReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? Schema\ReviewComment : ($call is Pulls\DismissReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\SubmitReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? Schema\Operations\Pulls\UpdateBranch\Response\ApplicationJson\Accepted : ($call is Repos\GetReadme::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\ListReleases::OPERATION_MATCH ? Schema\Release : ($call is Repos\CreateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? Schema\ReleaseNotesContent : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Reactions\ListForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetBranchRules::OPERATION_MATCH ? Schema\RepositoryRuleDetailed : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? Schema\SecretScanningLocation : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? Schema\Operations\SecurityAdvisories\CreateRepositoryAdvisoryCveRequest\Response\ApplicationJson\Accepted : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? Schema\Operations\Activity\ListStargazersForRepo\Response\ApplicationJson\Ok : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok|Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Accepted : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? Schema\CommitActivity|Schema\Operations\Repos\GetCommitActivityStats\Response\ApplicationJson\Accepted : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? Schema\ContributorActivity|Schema\Operations\Repos\GetContributorsStats\Response\ApplicationJson\Accepted : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? Schema\ParticipationStats : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? Schema\Status : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? Schema\SimpleUser : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListTags::OPERATION_MATCH ? Schema\Tag : ($call is Repos\ListTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\ListTeams::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\GetClones::OPERATION_MATCH ? Schema\CloneTraffic : ($call is Repos\GetTopPaths::OPERATION_MATCH ? Schema\ContentTraffic : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? Schema\ReferrerTraffic : ($call is Repos\GetViews::OPERATION_MATCH ? Schema\ViewTraffic : ($call is Repos\Transfer::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListPublic::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? Schema\ScimUserList : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Search\Code::OPERATION_MATCH ? Schema\Operations\Search\Code\Response\ApplicationJson\Ok : ($call is Search\Commits::OPERATION_MATCH ? Schema\Operations\Search\Commits\Response\ApplicationJson\Ok : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? Schema\Operations\Search\IssuesAndPullRequests\Response\ApplicationJson\Ok : ($call is Search\Labels::OPERATION_MATCH ? Schema\Operations\Search\Labels\Response\ApplicationJson\Ok : ($call is Search\Repos::OPERATION_MATCH ? Schema\Operations\Search\Repos\Response\ApplicationJson\Ok : ($call is Search\Topics::OPERATION_MATCH ? Schema\Operations\Search\Topics\Response\ApplicationJson\Ok : ($call is Search\Users::OPERATION_MATCH ? Schema\Operations\Search\Users\Response\ApplicationJson\Ok : ($call is Teams\GetLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? Schema\Team : ($call is Users\GetAuthenticated::OPERATION_MATCH ? Schema\Operations\Users\GetAuthenticated\Response\ApplicationJson\Ok : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? Schema\PrivateUser : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckBlocked::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Block::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unblock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSecretsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesUserPublicKey : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesSecret : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepositoriesForSecretForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteForAuthenticatedUser\Response\ApplicationJson\Accepted : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\CodespaceMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceWithFullRepository : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Follow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unfollow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationReposForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Issue : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Project : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? Schema\Repository|Schema\StarredRepository : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\TeamFull : ($call is Users\List_::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\GetByUsername::OPERATION_MATCH ? Schema\Operations\Users\GetByUsername\Response\ApplicationJson\Ok : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\ListForUser::OPERATION_MATCH ? Schema\BaseGist : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetContextForUser::OPERATION_MATCH ? Schema\Hovercard : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? Schema\KeySimple : ($call is Orgs\ListForUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\ListForUser::OPERATION_MATCH ? Schema\Project : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? Schema\Operations\Activity\ListReposStarredByUser\Response\ApplicationJson\Ok : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Meta\GetAllVersions::OPERATION_MATCH ? Schema\Operations\Meta\GetAllVersions\Response\ApplicationJson\Ok : Schema\Operations\Meta\GetZen\Response\ApplicationJson\Ok)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + * @return ($call is Meta\Root::OPERATION_MATCH ? Schema\Root : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? Schema\GlobalAdvisory : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? Schema\Integration : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? Schema\Operations\Apps\CreateFromManifest\Response\ApplicationJson\Created : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Apps\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? Schema\IntegrationInstallationRequest : ($call is Apps\ListInstallations::OPERATION_MATCH ? Schema\Installation : ($call is Apps\GetInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? Schema\InstallationToken : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\CheckToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\DeleteToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ResetToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\ScopeToken::OPERATION_MATCH ? Schema\Authorization : ($call is Apps\GetBySlug::OPERATION_MATCH ? Schema\Integration : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? Schema\CodeOfConduct : ($call is Emojis\Get::OPERATION_MATCH ? Schema\Operations\Emojis\Get\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? Schema\ServerStatistics : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsEnterprisePermissions : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? Schema\SelectedActions : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? Schema\RunnerGroupsEnterprise : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListSelfHostedRunnersForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Runner : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? Schema\EnterpriseSecurityAnalysisSettings : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? Schema\GetConsumedLicenses : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? Schema\GetLicenseSyncStatus : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? Schema\Event : ($call is Activity\GetFeeds::OPERATION_MATCH ? Schema\Feed : ($call is Gists\List_::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Create::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListPublic::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\ListStarred::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\Get::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Update::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\ListComments::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\CreateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\GetComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\UpdateComment::OPERATION_MATCH ? Schema\GistComment : ($call is Gists\ListCommits::OPERATION_MATCH ? Schema\GistCommit : ($call is Gists\ListForks::OPERATION_MATCH ? Schema\GistSimple : ($call is Gists\Fork::OPERATION_MATCH ? Schema\BaseGist : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Star::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\Unstar::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\GetRevision::OPERATION_MATCH ? Schema\GistSimple : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? Schema\Operations\Gitignore\GetAllTemplates\Response\ApplicationJson\Ok : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? Schema\GitignoreTemplate : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? Schema\Operations\Apps\ListReposAccessibleToInstallation\Response\ApplicationJson\Ok : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\List_::OPERATION_MATCH ? Schema\Issue : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? Schema\LicenseSimple : ($call is Licenses\Get::OPERATION_MATCH ? Schema\License : ($call is Markdown\Render::OPERATION_MATCH ? Schema\Operations\Markdown\Render\Response\TextHtml\Ok : ($call is Markdown\RenderRaw::OPERATION_MATCH ? Schema\Operations\Markdown\RenderRaw\Response\TextHtml\Ok : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlans::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? Schema\MarketplaceListingPlan : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? Schema\MarketplacePurchase : ($call is Meta\Get::OPERATION_MATCH ? Schema\ApiOverview : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? Schema\Event|Schema\BasicError : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Activity\GetThread::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? Schema\ThreadSubscription : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Meta\GetOctocat::OPERATION_MATCH ? Schema\Operations\Meta\GetOctocat\Response\ApplicationOctocatStream\Ok : ($call is Orgs\List_::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRoles\Response\ApplicationJson\Ok : ($call is Orgs\Get::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Orgs\Delete::OPERATION_MATCH ? Schema\Operations\Orgs\Delete\Response\ApplicationJson\Accepted : ($call is Orgs\Update::OPERATION_MATCH ? Schema\OrganizationFull : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? Schema\ActionsCacheUsageOrgEnterprise : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GetActionsCacheUsageByRepoForOrg\Response\ApplicationJson\Ok : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\OidcCustomSub : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsOrganizationPermissions : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnerGroupsForOrg\Response\ApplicationJson\Ok : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? Schema\RunnerGroupsOrg : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg\Response\ApplicationJson\Ok : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersInGroupForOrg\Response\ApplicationJson\Ok : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForOrg\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationActionsSecret : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListOrgVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? Schema\OrganizationActionsVariable : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? Schema\Operations\Actions\ListSelectedReposForOrgVariable\Response\ApplicationJson\Ok : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? Schema\AnnouncementBanner : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? Schema\AuditLogEvent : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\BlockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\CodeScanningOrganizationAlertItems : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInOrganization\Response\ApplicationJson\Ok : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? Schema\CodespacesOrgSecret : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? Schema\CopilotOrganizationDetails : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? Schema\Operations\Copilot\ListCopilotSeats\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForTeams\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForTeams\Response\ApplicationJson\Ok : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\AddCopilotForBusinessSeatsForUsers\Response\ApplicationJson\Created : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? Schema\Operations\Copilot\CancelCopilotSeatAssignmentForUsers\Response\ApplicationJson\Ok : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? Schema\CredentialAuthorization : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? Schema\Operations\Orgs\ListCustomRepoRoles\Response\ApplicationJson\Ok : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? Schema\OrganizationCustomRepositoryRole : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? Schema\DependabotAlertWithRepository : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListOrgSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? Schema\OrganizationDependabotSecret : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? Schema\Operations\Dependabot\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? Schema\Event : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? Schema\OrgHook : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Orgs\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? Schema\Operations\Orgs\ListAppInstallations\Response\ApplicationJson\Ok : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForOrg\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? Schema\Team : ($call is Issues\ListForOrg::OPERATION_MATCH ? Schema\Issue : ($call is Orgs\ListMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? Schema\Operations\Codespaces\GetCodespacesForUserInOrg\Response\ApplicationJson\Ok : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteFromOrganization\Response\ApplicationJson\Accepted : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? Schema\Codespace : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? Schema\CopilotSeatDetails : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? Schema\Operations\Orgs\ConvertMemberToOutsideCollaborator\Response\ApplicationJson\Accepted : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrantRequest : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? Schema\Operations\Orgs\ReviewPatGrantRequestsInBulk\Response\ApplicationJson\Accepted : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? Schema\OrganizationProgrammaticAccessGrant : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? Schema\Operations\Orgs\UpdatePatAccesses\Response\ApplicationJson\Accepted : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Projects\ListForOrg::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForOrg::OPERATION_MATCH ? Schema\Project : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? Schema\SimpleUser : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListForOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateInOrg::OPERATION_MATCH ? Schema\Repository : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? Schema\RepositoryFineGrainedPermission : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? Schema\OrganizationSecretScanningAlert : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? Schema\TeamSimple : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? Schema\AdvancedSecurityActiveCommitters : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\List_::OPERATION_MATCH ? Schema\Team : ($call is Teams\Create::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\GetByName::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroups : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? Schema\ExternalGroup : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? Schema\Team : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\DeleteCard::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveCard::OPERATION_MATCH ? Schema\Operations\Projects\MoveCard\Response\ApplicationJson\Created : ($call is Projects\GetColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\UpdateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\ListCards::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\CreateCard::OPERATION_MATCH ? Schema\ProjectCard : ($call is Projects\MoveColumn::OPERATION_MATCH ? Schema\Operations\Projects\MoveColumn\Response\ApplicationJson\Created : ($call is Projects\Get::OPERATION_MATCH ? Schema\Project : ($call is Projects\Delete::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\Update::OPERATION_MATCH ? Schema\Project : ($call is Projects\ListCollaborators::OPERATION_MATCH ? Schema\SimpleUser : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? Schema\ProjectCollaboratorPermission : ($call is Projects\ListColumns::OPERATION_MATCH ? Schema\ProjectColumn : ($call is Projects\CreateColumn::OPERATION_MATCH ? Schema\ProjectColumn : ($call is RateLimit\Get::OPERATION_MATCH ? Schema\RateLimitOverview : ($call is Repos\Get::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Repos\Delete::OPERATION_MATCH ? Schema\BasicError : ($call is Repos\Update::OPERATION_MATCH ? Schema\FullRepository|Schema\BasicError : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListArtifactsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetArtifact::OPERATION_MATCH ? Schema\Artifact : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? Schema\ActionsCacheUsageByRepository : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? Schema\ActionsCacheList : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? Schema\Job : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\OidcCustomSubRepo : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationSecrets\Response\ApplicationJson\Ok : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoOrganizationVariables\Response\ApplicationJson\Ok : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? Schema\ActionsRepositoryPermissions : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? Schema\ActionsWorkflowAccessToRepository : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? Schema\SelectedActions : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? Schema\ActionsGetDefaultWorkflowPermissions : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListSelfHostedRunnersForRepo\Response\ApplicationJson\Ok : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? Schema\RunnerApplication : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? Schema\Operations\Actions\GenerateRunnerJitconfigForEnterprise\Response\ApplicationJson\Created : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? Schema\AuthenticationToken : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Runner : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo\Response\ApplicationJson\Ok : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunsForRepo\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? Schema\EnvironmentApprovals : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRunArtifacts\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? Schema\WorkflowRun : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRunAttempt\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? Schema\Operations\Actions\ListJobsForWorkflowRun\Response\ApplicationJson\Ok : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? Schema\PendingDeployment : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? Schema\Deployment : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? Schema\WorkflowRunUsage : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? Schema\Operations\Actions\ListRepoWorkflows\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflow::OPERATION_MATCH ? Schema\Workflow : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? Schema\Operations\Actions\ListWorkflowRuns\Response\ApplicationJson\Ok : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? Schema\WorkflowUsage : ($call is Repos\ListActivities::OPERATION_MATCH ? Schema\Activity : ($call is Issues\ListAssignees::OPERATION_MATCH ? Schema\SimpleUser : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListAutolinks::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\CreateAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\GetAutolink::OPERATION_MATCH ? Schema\Autolink : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? Schema\CheckAutomatedSecurityFixes : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListBranches::OPERATION_MATCH ? Schema\ShortBranch : ($call is Repos\GetBranch::OPERATION_MATCH ? Schema\BranchWithProtection|Schema\BasicError : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? Schema\BranchProtection : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranch : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? Schema\ProtectedBranchPullRequestReview : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? Schema\ProtectedBranchAdminEnforced : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? Schema\StatusCheckPolicy : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\GetAllStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\SetStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\AddStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? Schema\Operations\Repos\RemoveStatusCheckContexts\Response\ApplicationJson\Ok : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? Schema\BranchRestrictionPolicy : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Integration : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? Schema\Integration : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\Team : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? Schema\SimpleUser : ($call is Repos\RenameBranch::OPERATION_MATCH ? Schema\BranchWithProtection : ($call is Checks\Create::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Get::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\Update::OPERATION_MATCH ? Schema\CheckRun : ($call is Checks\ListAnnotations::OPERATION_MATCH ? Schema\CheckAnnotation : ($call is Checks\RerequestRun::OPERATION_MATCH ? Schema\EmptyObject : ($call is Checks\CreateSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? Schema\CheckSuitePreference : ($call is Checks\GetSuite::OPERATION_MATCH ? Schema\CheckSuite : ($call is Checks\ListForSuite::OPERATION_MATCH ? Schema\Operations\Checks\ListForSuite\Response\ApplicationJson\Ok : ($call is Checks\RerequestSuite::OPERATION_MATCH ? Schema\EmptyObject : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\CodeScanningAlertItems : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? Schema\CodeScanningAlert : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? Schema\CodeScanningAlertInstance : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? Schema\CodeScanningAnalysis : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysis|Schema\Operations\CodeScanning\GetAnalysis\Response\ApplicationJsonSarif\Ok : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? Schema\CodeScanningAnalysisDeletion : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? Schema\CodeScanningCodeqlDatabase : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? Schema\CodeScanningDefaultSetup : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? Schema\EmptyObject|Schema\CodeScanningDefaultSetupUpdateResponse : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsReceipt : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? Schema\CodeScanningSarifsStatus : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? Schema\CodeownersErrors : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\RepoMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\PreFlightWithRepoForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? Schema\CodespacesPublicKey : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? Schema\RepoCodespacesSecret : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCollaborators::OPERATION_MATCH ? Schema\Collaborator : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AddCollaborator::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? Schema\RepositoryCollaboratorPermission : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\GetCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? Schema\BranchShort : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? Schema\CommitComment : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Repos\GetCommit::OPERATION_MATCH ? Schema\Commit : ($call is Checks\ListForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListForRef\Response\ApplicationJson\Ok : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? Schema\Operations\Checks\ListSuitesForRef\Response\ApplicationJson\Ok : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? Schema\CombinedCommitStatus : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? Schema\Status|Schema\BasicError : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? Schema\CommunityProfile : ($call is Repos\CompareCommits::OPERATION_MATCH ? Schema\CommitComparison : ($call is Repos\GetContent::OPERATION_MATCH ? Schema\ContentTree|Schema\Operations\Repos\GetContent\Response\ApplicationJson\Ok : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\DeleteFile::OPERATION_MATCH ? Schema\FileCommit : ($call is Repos\ListContributors::OPERATION_MATCH ? Schema\Contributor : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\GetAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? Schema\DependabotAlert : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? Schema\Operations\Dependabot\ListRepoSecrets\Response\ApplicationJson\Ok : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? Schema\DependabotPublicKey : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? Schema\DependabotSecret : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? Schema\DependencyGraphDiff : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? Schema\DependencyGraphSpdxSbom : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? Schema\Operations\DependencyGraph\CreateRepositorySnapshot\Response\ApplicationJson\Created : ($call is Repos\ListDeployments::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\CreateDeployment::OPERATION_MATCH ? Schema\Deployment|Schema\Operations\Repos\CreateDeployment\Response\ApplicationJson\Accepted : ($call is Repos\GetDeployment::OPERATION_MATCH ? Schema\Deployment : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? Schema\DeploymentStatus : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? Schema\Operations\Repos\GetAllEnvironments\Response\ApplicationJson\Ok : ($call is Repos\GetEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? Schema\Environment : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? Schema\DeploymentBranchPolicy : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? Schema\Operations\Repos\GetAllDeploymentProtectionRules\Response\ApplicationJson\Ok : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? Schema\Operations\Repos\ListCustomDeploymentRuleIntegrations\Response\ApplicationJson\Ok : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? Schema\DeploymentProtectionRule : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForks::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CreateFork::OPERATION_MATCH ? Schema\FullRepository : ($call is Git\CreateBlob::OPERATION_MATCH ? Schema\ShortBlob : ($call is Git\GetBlob::OPERATION_MATCH ? Schema\Blob : ($call is Git\CreateCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\GetCommit::OPERATION_MATCH ? Schema\GitCommit : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? Schema\GitRef : ($call is Git\GetRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\DeleteRef::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Git\UpdateRef::OPERATION_MATCH ? Schema\GitRef : ($call is Git\CreateTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\GetTag::OPERATION_MATCH ? Schema\GitTag : ($call is Git\CreateTree::OPERATION_MATCH ? Schema\GitTree : ($call is Git\GetTree::OPERATION_MATCH ? Schema\GitTree : ($call is Repos\ListWebhooks::OPERATION_MATCH ? Schema\Hook : ($call is Repos\CreateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? Schema\Hook : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? Schema\WebhookConfig : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? Schema\HookDeliveryItem : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? Schema\HookDelivery : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? Schema\Operations\Repos\RedeliverWebhookDelivery\Response\ApplicationJson\Accepted : ($call is Repos\PingWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? Schema\Import : ($call is Migrations\StartImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\CancelImport::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UpdateImport::OPERATION_MATCH ? Schema\Import : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? Schema\PorterAuthor : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? Schema\PorterLargeFile : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? Schema\Import : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? Schema\Installation|Schema\BasicError : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForRepo\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListInvitations::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Issues\ListForRepo::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Create::OPERATION_MATCH ? Schema\Issue : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\GetComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\DeleteComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\GetEvent::OPERATION_MATCH ? Schema\IssueEvent : ($call is Issues\Get::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\Update::OPERATION_MATCH ? Schema\Issue|Schema\BasicError : ($call is Issues\AddAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? Schema\Issue : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListComments::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\CreateComment::OPERATION_MATCH ? Schema\IssueComment : ($call is Issues\ListEvents::OPERATION_MATCH ? Schema\IssueEventForIssue : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\SetLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\AddLabels::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? Schema\BasicError : ($call is Issues\RemoveLabel::OPERATION_MATCH ? Schema\Label|Schema\BasicError : ($call is Issues\Lock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\Unlock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Reactions\ListForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? Schema\TimelineIssueEvents : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\GetDeployKey::OPERATION_MATCH ? Schema\DeployKey : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? Schema\Label : ($call is Issues\CreateLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\GetLabel::OPERATION_MATCH ? Schema\Label : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateLabel::OPERATION_MATCH ? Schema\Label : ($call is Repos\ListLanguages::OPERATION_MATCH ? Schema\Language : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? Schema\Operations\Repos\EnableLfsForRepo\Response\ApplicationJson\Accepted : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Licenses\GetForRepo::OPERATION_MATCH ? Schema\LicenseContent : ($call is Repos\MergeUpstream::OPERATION_MATCH ? Schema\MergedUpstream : ($call is Repos\Merge::OPERATION_MATCH ? Schema\Commit : ($call is Issues\ListMilestones::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\CreateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\GetMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? Schema\Milestone : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? Schema\Label : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Thread : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? Schema\Operations\Activity\MarkRepoNotificationsAsRead\Response\ApplicationJson\Accepted : ($call is Repos\GetPages::OPERATION_MATCH ? Schema\Page : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? Schema\Page : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? Schema\PageBuildStatus : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? Schema\PageBuild : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? Schema\PageDeployment : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? Schema\PagesHealthCheck|Schema\EmptyObject : ($call is Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\ListForRepo::OPERATION_MATCH ? Schema\Project : ($call is Projects\CreateForRepo::OPERATION_MATCH ? Schema\Project : ($call is Pulls\List_::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\Create::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Get::OPERATION_MATCH ? Schema\PullRequest : ($call is Pulls\Update::OPERATION_MATCH ? Schema\PullRequest : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? Schema\PullRequestReviewComment : ($call is Pulls\ListCommits::OPERATION_MATCH ? Schema\Commit : ($call is Pulls\ListFiles::OPERATION_MATCH ? Schema\DiffEntry : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Pulls\Merge::OPERATION_MATCH ? Schema\PullRequestMergeResult : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestReviewRequest : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? Schema\PullRequestSimple : ($call is Pulls\ListReviews::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\CreateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\GetReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? Schema\ReviewComment : ($call is Pulls\DismissReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\SubmitReview::OPERATION_MATCH ? Schema\PullRequestReview : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? Schema\Operations\Pulls\UpdateBranch\Response\ApplicationJson\Accepted : ($call is Repos\GetReadme::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? Schema\ContentFile : ($call is Repos\ListReleases::OPERATION_MATCH ? Schema\Release : ($call is Repos\CreateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? Schema\ReleaseNotesContent : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? Schema\Release : ($call is Repos\GetRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\UpdateRelease::OPERATION_MATCH ? Schema\Release : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? Schema\ReleaseAsset : ($call is Reactions\ListForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\GetBranchRules::OPERATION_MATCH ? Schema\RepositoryRuleDetailed : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? Schema\RepositoryRuleset : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? Schema\SecretScanningAlert : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? Schema\SecretScanningLocation : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? Schema\RepositoryAdvisory : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? Schema\Operations\SecurityAdvisories\CreateRepositoryAdvisoryCveRequest\Response\ApplicationJson\Accepted : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? Schema\Operations\Activity\ListStargazersForRepo\Response\ApplicationJson\Ok : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok|Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Accepted : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? Schema\CommitActivity|Schema\Operations\Repos\GetCommitActivityStats\Response\ApplicationJson\Accepted : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? Schema\ContributorActivity|Schema\Operations\Repos\GetContributorsStats\Response\ApplicationJson\Accepted : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? Schema\ParticipationStats : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? Schema\Operations\Repos\GetCodeFrequencyStats\Response\ApplicationJson\Ok : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? Schema\Status : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? Schema\SimpleUser : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? Schema\RepositorySubscription : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\ListTags::OPERATION_MATCH ? Schema\Tag : ($call is Repos\ListTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? Schema\TagProtection : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\ListTeams::OPERATION_MATCH ? Schema\Team : ($call is Repos\GetAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? Schema\Topic : ($call is Repos\GetClones::OPERATION_MATCH ? Schema\CloneTraffic : ($call is Repos\GetTopPaths::OPERATION_MATCH ? Schema\ContentTraffic : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? Schema\ReferrerTraffic : ($call is Repos\GetViews::OPERATION_MATCH ? Schema\ViewTraffic : ($call is Repos\Transfer::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? iterable|\Psr\Http\Message\ResponseInterface : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListPublic::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentSecrets\Response\ApplicationJson\Ok : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? Schema\ActionsPublicKey : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? Schema\ActionsSecret : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? Schema\Operations\Actions\ListEnvironmentVariables\Response\ApplicationJson\Ok : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? Schema\EmptyObject : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? Schema\ActionsVariable : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? Schema\ScimUserList : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? Schema\ScimUser : ($call is Search\Code::OPERATION_MATCH ? Schema\Operations\Search\Code\Response\ApplicationJson\Ok : ($call is Search\Commits::OPERATION_MATCH ? Schema\Operations\Search\Commits\Response\ApplicationJson\Ok : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? Schema\Operations\Search\IssuesAndPullRequests\Response\ApplicationJson\Ok : ($call is Search\Labels::OPERATION_MATCH ? Schema\Operations\Search\Labels\Response\ApplicationJson\Ok : ($call is Search\Repos::OPERATION_MATCH ? Schema\Operations\Search\Repos\Response\ApplicationJson\Ok : ($call is Search\Topics::OPERATION_MATCH ? Schema\Operations\Search\Topics\Response\ApplicationJson\Ok : ($call is Search\Users::OPERATION_MATCH ? Schema\Operations\Search\Users\Response\ApplicationJson\Ok : ($call is Teams\GetLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? Schema\TeamFull : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? Schema\TeamDiscussion : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? Schema\TeamDiscussionComment : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? Schema\Reaction : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? Schema\OrganizationInvitation : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? Schema\SimpleUser : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? Schema\TeamMembership : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? Schema\TeamProject : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? Schema\TeamRepository : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? Schema\GroupMapping : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? Schema\Team : ($call is Users\GetAuthenticated::OPERATION_MATCH ? Schema\Operations\Users\GetAuthenticated\Response\ApplicationJson\Ok : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? Schema\PrivateUser : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckBlocked::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Block::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unblock::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListSecretsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesUserPublicKey : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespacesSecret : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\EmptyObject : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\ListRepositoriesForSecretForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\DeleteForAuthenticatedUser\Response\ApplicationJson\Accepted : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceExportDetails : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Codespaces\CodespaceMachinesForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? Schema\CodespaceWithFullRepository : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? Schema\Codespace : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Follow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\Unfollow::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Apps\ListInstallationReposForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\Operations\Interactions\GetRestrictionsForAuthenticatedUser\Response\ApplicationJson\Ok : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? Schema\InteractionLimitResponse : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Issue : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\Key : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? Schema\UserMarketplacePurchase : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? Schema\OrgMembership : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? Schema\Migration : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Project : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? Schema\Email : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? Schema\Repository : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? Schema\RepositoryInvitation : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? Schema\Repository|Schema\StarredRepository : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? Schema\TeamFull : ($call is Users\List_::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\GetByUsername::OPERATION_MATCH ? Schema\Operations\Users\GetByUsername\Response\ApplicationJson\Ok : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? Schema\SimpleUser : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Gists\ListForUser::OPERATION_MATCH ? Schema\BaseGist : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? Schema\GpgKey : ($call is Users\GetContextForUser::OPERATION_MATCH ? Schema\Hovercard : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? Schema\Installation : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? Schema\KeySimple : ($call is Orgs\ListForUser::OPERATION_MATCH ? Schema\OrganizationSimple : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? Schema\Package : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? Schema\PackageVersion : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \Psr\Http\Message\ResponseInterface : ($call is Projects\ListForUser::OPERATION_MATCH ? Schema\Project : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? Schema\Event : ($call is Repos\ListForUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? Schema\ActionsBillingUsage : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? Schema\PackagesBillingUsage : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? Schema\CombinedBillingUsage : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? Schema\SocialAccount : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? Schema\SshSigningKey : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? Schema\Operations\Activity\ListReposStarredByUser\Response\ApplicationJson\Ok : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? Schema\MinimalRepository : ($call is Meta\GetAllVersions::OPERATION_MATCH ? Schema\Operations\Meta\GetAllVersions\Response\ApplicationJson\Ok : Schema\Operations\Meta\GetZen\Response\ApplicationJson\Ok)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) */ // phpcs:enable public function call(string $call, array $params = []): void; // phpcs:disable /** - * @return ($call is Meta\Root::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CheckToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ResetToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ScopeToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetBySlug::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Emojis\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetFeeds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Fork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Star::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Unstar::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\GetRevision::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\Render::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\RenderRaw::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlans::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetThread::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Meta\GetOctocat::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\BlockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetByName::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteCard::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\GetColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCards::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListColumns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is RateLimit\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListActivities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListAutolinks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListBranches::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RenameBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListAnnotations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\CreateSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\GetSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CompareCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteFile::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListContributors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateFork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\DeleteRef::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Git\UpdateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\CancelImport::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UpdateImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\SetLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Lock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\Unlock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListLanguages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Licenses\GetForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\MergeUpstream::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListMilestones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DismissReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\SubmitReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadme::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetBranchRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTags::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetClones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopPaths::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetViews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Transfer::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Code::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Commits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Labels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Repos::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Topics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Users::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckBlocked::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Block::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unblock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Follow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unfollow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetByUsername::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetContextForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\GetAllVersions::OPERATION_MATCH ? \React\Promise\PromiseInterface : \React\Promise\PromiseInterface)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + * @return ($call is Meta\Root::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListGlobalAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetGlobalAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\CreateFromManifest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\UpdateWebhookConfigForApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationRequestsForAuthenticatedApp::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CreateInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\SuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\UnsuspendInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\DeleteAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\CheckToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\DeleteToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ResetToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ScopeToken::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetBySlug::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetAllCodesOfConduct::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodesOfConduct\GetConductCode::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Emojis\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetServerStatistics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetActionsOidcCustomIssuerPolicyForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetGithubActionsPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelectedOrganizationsEnabledGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\EnableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\DisableSelectedOrganizationGithubActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetAllowedActionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnerGroupsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerGroupFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\UpdateSelfHostedRunnerGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveOrgAccessToSelfHostedRunnerGroupInEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetSelfHostedRunnersInGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\AddSelfHostedRunnerToGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\RemoveSelfHostedRunnerFromGroupForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListSelfHostedRunnersForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\ListRunnerApplicationsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRegistrationTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\CreateRemoveTokenForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\DeleteSelfHostedRunnerFromEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\SetCustomLabelsForSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\AddCustomLabelsToSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveAllCustomLabelsFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\RemoveCustomLabelFromSelfHostedRunnerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\GetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PatchSecurityAnalysisSettingsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is EnterpriseAdmin\GetConsumedLicenses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is EnterpriseAdmin\GetLicenseSyncStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListAlertsForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingGhe::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\PostSecurityProductEnablementForEnterprise::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListPublicEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetFeeds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\Fork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gists\CheckIsStarred::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Star::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\Unstar::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\GetRevision::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetAllTemplates::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Gitignore\GetTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListReposAccessibleToInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\RevokeInstallationAccessToken::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\GetAllCommonlyUsed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Licenses\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\Render::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Markdown\RenderRaw::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccount::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlans::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlan::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetSubscriptionPlanForAccountStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListPlansStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListAccountsForPlanStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForRepoNetwork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetThread::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkThreadAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\GetThreadSubscriptionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteThreadSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Meta\GetOctocat::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListCustomRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheUsageByRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\GetOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Oidc\UpdateOidcCustomSubTemplateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedRepositoriesEnabledGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DisableSelectedRepositoryGithubActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnerGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerGroupFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateSelfHostedRunnerGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveRepoAccessToSelfHostedRunnerGroupInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelfHostedRunnersInGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelfHostedRunnerToGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelfHostedRunnerFromGroupForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListOrgVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetSelectedReposForOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\AddSelectedRepoToOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\RemoveSelectedRepoFromOrgVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\GetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is AnnouncementBanners\RemoveAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is AnnouncementBanners\SetAnnouncementBannerForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetAuditLog::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListBlockedUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckBlockedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\BlockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UnblockUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is CodeScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetCodespacesAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\SetCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\DeleteCodespacesAccessUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Copilot\GetCopilotOrganizationDetails::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\ListCopilotSeats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\AddCopilotForBusinessSeatsForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\CancelCopilotSeatAssignmentForUsers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSamlSsoAuthorizations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveSamlSsoAuthorization::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListCustomRepoRoles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRepoRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateCustomRole::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListOrgSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\ListSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\SetSelectedReposForOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\AddSelectedRepoToOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Dependabot\RemoveSelectedRepoFromOrgSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListDockerMigrationConflictingPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicOrgEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ExternalIdpGroupInfoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListExternalIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFailedInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateWebhookConfigForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\GetOrgInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListAppInstallations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPendingInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CreateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CancelInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListInvitationTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveMember::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetCodespacesForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteFromOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopInOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Copilot\GetCopilotSeatAssignmentDetailsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\SetMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\DownloadArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DownloadArchiveForOrgStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListOutsideCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ConvertMemberToOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\RemoveOutsideCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\ListPackagesForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForOrganization::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequestsInBulk::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ReviewPatGrantRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRequestRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPatGrants::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccesses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdatePatAccess::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\ListPatGrantRepositories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListPublicMembers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\CheckPublicMembershipForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\SetPublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemovePublicMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListRepoFineGrainedPermissions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteOrgRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListOrgRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListSecurityManagerTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\AddSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Orgs\RemoveSecurityManagerTeam::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Billing\GetGithubActionsBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubAdvancedSecurityBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListIdpGroupsForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetByName::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussionComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForTeamDiscussion::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListLinkedExternalIdpGroupsToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\UnlinkExternalIdpGroupFromTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\LinkExternalIdpGroupToTeamForOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildInOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\EnableOrDisableSecurityProductOnAllOrgRepos::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteCard::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\GetColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\DeleteColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\UpdateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCards::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateCard::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\MoveColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\GetPermissionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\ListColumns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateColumn::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is RateLimit\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Delete::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListArtifactsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifact::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadArtifactStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetActionsCacheUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetActionsCacheList::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheByKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteActionsCacheById::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadJobLogsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadJobLogsForWorkflowRunStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\ReRunJobForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomOidcSubClaimForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoOrganizationVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetWorkflowAccessToRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetAllowedActionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetGithubActionsDefaultWorkflowPermissionsRepository::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListSelfHostedRunnersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRunnerApplicationsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GenerateRunnerJitconfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRegistrationTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRemoveTokenForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteSelfHostedRunnerFromRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\SetCustomLabelsForSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\AddCustomLabelsToSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\RemoveCustomLabelFromSelfHostedRunnerForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetReviewsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ApproveWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListWorkflowRunArtifacts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListJobsForWorkflowRunAttempt::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunAttemptLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunAttemptLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\CancelWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewCustomGatesForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListJobsForWorkflowRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DownloadWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\DownloadWorkflowRunLogsStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Actions\DeleteWorkflowRunLogs::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\GetPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReviewPendingDeploymentsForRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ReRunWorkflowFailedJobs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowRunUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateRepoVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListRepoWorkflows::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DisableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\CreateWorkflowDispatch::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\EnableWorkflow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListWorkflowRuns::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetWorkflowUsage::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListActivities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssigned::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListAutolinks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAutolink::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CheckAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableAutomatedSecurityFixes::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListBranches::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAdminBranchProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetPullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdatePullRequestReviewProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitSignatureProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetStatusChecksProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateStatusCheckProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveStatusCheckContexts::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAppsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveAppAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTeamsWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveTeamAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetUsersWithAccessToProtectedBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\SetUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\AddUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveUserAccessRestrictions::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RenameBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListAnnotations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestRun::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\CreateSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\SetSuitesPreferences::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\GetSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\RerequestSuite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListAlertInstances::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListRecentAnalyses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\DeleteAnalysis::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\ListCodeqlDatabases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetCodeqlDatabase::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UpdateDefaultSetup::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\UploadSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is CodeScanning\GetSarif::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CodeownersErrors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListDevcontainersInRepositoryForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\RepoMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PreFlightWithRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCollaborators::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AddCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RemoveCollaborator::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetCollaboratorPermissionLevel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListBranchesForHeadCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommentsForCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPullRequestsAssociatedWithCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Checks\ListSuitesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCombinedStatusForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCommitStatusesForRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommunityProfileMetrics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CompareCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateFileContents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteFile::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListContributors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\ListRepoSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\GetRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\CreateOrUpdateRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Dependabot\DeleteRepoSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is DependencyGraph\DiffRange::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\ExportSbom::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is DependencyGraph\CreateRepositorySnapshot::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentStatuses::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDispatchEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllEnvironments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateOrUpdateEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteAnEnvironment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListDeploymentBranchPolicies::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeploymentBranchPolicy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetAllDeploymentProtectionRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListCustomDeploymentRuleIntegrations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCustomDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableDeploymentProtectionRule::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListRepoEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateFork::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetBlob::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetCommit::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\ListMatchingRefs::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\DeleteRef::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Git\UpdateRef::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\CreateTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Git\GetTree::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhooks::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateWebhookConfigForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListWebhookDeliveries::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RedeliverWebhookDelivery::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\PingWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\TestPushWebhook::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\GetImportStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\CancelImport::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UpdateImport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetCommitAuthors::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\MapCommitAuthor::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetLargeFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\SetLfsPreference::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetRepoInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\GetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListInvitations::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateInvitation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssueComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetEvent::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAssignees::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CheckUserCanBeAssignedToIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListEvents::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsOnIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\SetLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\AddLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveAllLabels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\RemoveLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\Lock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\Unlock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Reactions\ListForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForIssue::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListEventsForTimeline::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListDeployKeys::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteDeployKey::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListLabelsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateLabel::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListLanguages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DisableLfsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Licenses\GetForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\MergeUpstream::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListMilestones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\CreateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\GetMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\DeleteMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\UpdateMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Issues\ListLabelsForMilestone::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListRepoNotificationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\MarkRepoNotificationsAsRead::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPages::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateInformationAboutPagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreatePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeletePagesSite::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListPagesBuilds::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\RequestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesBuild::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreatePagesDeployment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPagesHealthCheck::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\ListForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Projects\CreateForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Create::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewCommentsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeleteReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\UpdateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForPullRequestReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForPullRequestComment::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Get::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\Update::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateWithPrForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviewComments::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReplyForReviewComment::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListFiles::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CheckIfMerged::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Pulls\Merge::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RequestReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\RemoveRequestedReviewers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListReviews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\CreateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\GetReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DeletePendingReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\ListCommentsForReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\DismissReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\SubmitReview::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Pulls\UpdateBranch::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadme::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReadmeInDirectory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleases::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GenerateReleaseNotes::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetLatestRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetReleaseByTag::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\UpdateRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListReleaseAssets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UploadReleaseAsset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\DeleteForRelease::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\GetBranchRules::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRulesets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\UpdateRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteRepoRuleset::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is SecretScanning\ListAlertsForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\GetAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\UpdateAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecretScanning\ListLocationsForAlert::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\ListRepositoryAdvisories::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreatePrivateVulnerabilityReport::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\GetRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\UpdateRepositoryAdvisory::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is SecurityAdvisories\CreateRepositoryAdvisoryCveRequest::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListStargazersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCodeFrequencyStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetCommitActivityStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetContributorsStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetParticipationStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetPunchCardStats::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateCommitStatus::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListWatchersForRepo::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\GetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\SetRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\DeleteRepoSubscription::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTags::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeleteTagProtection::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadTarballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\ListTeams::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ReplaceAllTopics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetClones::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopPaths::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetTopReferrers::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\GetViews::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\Transfer::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CheckVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\EnableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DisableVulnerabilityAlerts::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchive::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\DownloadZipballArchiveStreaming::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Rx\Observable|\Psr\Http\Message\ResponseInterface> : ($call is Repos\CreateUsingTemplate::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListPublic::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\ListEnvironmentSecrets::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentPublicKey::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateOrUpdateEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentSecret::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\ListEnvironmentVariables::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\CreateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\GetEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Actions\DeleteEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Actions\UpdateEnvironmentVariable::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\ListProvisionedIdentities::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\ProvisionAndInviteUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\GetProvisioningInformationForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\SetInformationForProvisionedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Scim\DeleteUserFromOrg::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Scim\UpdateAttributeForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Code::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Commits::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\IssuesAndPullRequests::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Labels::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Repos::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Topics::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Search\Users::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListDiscussionCommentsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\DeleteDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\UpdateDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionCommentLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\ListForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Reactions\CreateForTeamDiscussionLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListPendingInvitationsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListMembersLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\GetMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\AddMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveMemberLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\GetMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\RemoveMembershipForUserLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListProjectsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateProjectPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveProjectLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListReposLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CheckPermissionsForRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\AddOrUpdateRepoPermissionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\RemoveRepoLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Teams\ListIdpGroupsForLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\CreateOrUpdateIdpGroupConnectionsLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListChildLegacy::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\UpdateAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListBlockedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckBlocked::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Block::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unblock::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ListSecretsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetPublicKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CreateOrUpdateSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\ListRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\SetRepositoriesForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\AddRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\RemoveRepositoryForSecretForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Codespaces\GetForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\DeleteForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\UpdateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\ExportForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\GetExportDetailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\CodespaceMachinesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\PublishForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Codespaces\StopForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\SetPrimaryEmailVisibilityForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteEmailForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListFollowersForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckPersonIsFollowedByAuthenticated::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Follow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\Unfollow::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListGpgKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteGpgKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListInstallationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListInstallationReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\AddRepoToInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\RemoveRepoFromInstallationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Interactions\GetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\SetRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Interactions\RemoveRestrictionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Issues\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicSshKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreatePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetPublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeletePublicSshKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Apps\ListSubscriptionsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\ListSubscriptionsForAuthenticatedUserStubbed::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListMembershipsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\GetMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\UpdateMembershipForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\StartForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetStatusForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Migrations\GetArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\DeleteArchiveForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\UnlockRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Migrations\ListReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicEmailsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\CreateForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListInvitationsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\DeclineInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Repos\AcceptInvitationForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSocialAccountsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\AddSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSocialAccountForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Users\ListSshSigningKeysForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CreateSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\DeleteSshSigningKeyForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListReposStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\CheckRepoIsStarredByAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\StarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\UnstarRepoForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Activity\ListWatchedReposForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Teams\ListForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\List_::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetByUsername::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListDockerMigrationConflictingPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListOrgEventsForAuthenticatedUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowersForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\CheckFollowingForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Gists\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListGpgKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\GetContextForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Apps\GetUserInstallation::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListPublicKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Orgs\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\ListPackagesForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\GetAllPackageVersionsForPackageOwnedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\GetPackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Packages\DeletePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Packages\RestorePackageVersionForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface<\Psr\Http\Message\ResponseInterface> : ($call is Projects\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReceivedPublicEventsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Repos\ListForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubActionsBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetGithubPackagesBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Billing\GetSharedStorageBillingUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSocialAccountsForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Users\ListSshSigningKeysForUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposStarredByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Activity\ListReposWatchedByUser::OPERATION_MATCH ? \React\Promise\PromiseInterface : ($call is Meta\GetAllVersions::OPERATION_MATCH ? \React\Promise\PromiseInterface : \React\Promise\PromiseInterface)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) */ // phpcs:enable public function callAsync(string $call, array $params = []): void; diff --git a/clients/GitHubEnterpriseCloud/src/Hydrator/Operation/Repos/Owner/Repo/PrivateVulnerabilityReporting.php b/clients/GitHubEnterpriseCloud/src/Hydrator/Operation/Repos/Owner/Repo/PrivateVulnerabilityReporting.php new file mode 100644 index 00000000000..a910e1cba15 --- /dev/null +++ b/clients/GitHubEnterpriseCloud/src/Hydrator/Operation/Repos/Owner/Repo/PrivateVulnerabilityReporting.php @@ -0,0 +1,440 @@ + $className + * @return T + */ + public function hydrateObject(string $className, array $payload): object + { + return match($className) { + 'ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError' => $this->hydrateApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️BasicError($payload), + 'ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError' => $this->hydrateApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️ScimError($payload), + default => throw UnableToHydrateObject::noHydrationDefined($className, $this->hydrationStack), + }; + } + + + private function hydrateApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️BasicError(array $payload): \ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError + { + $properties = []; + $missingFields = []; + try { + $value = $payload['message'] ?? null; + + if ($value === null) { + $properties['message'] = null; + goto after_message; + } + + $properties['message'] = $value; + + after_message: + + $value = $payload['documentation_url'] ?? null; + + if ($value === null) { + $properties['documentationUrl'] = null; + goto after_documentationUrl; + } + + $properties['documentationUrl'] = $value; + + after_documentationUrl: + + $value = $payload['url'] ?? null; + + if ($value === null) { + $properties['url'] = null; + goto after_url; + } + + $properties['url'] = $value; + + after_url: + + $value = $payload['status'] ?? null; + + if ($value === null) { + $properties['status'] = null; + goto after_status; + } + + $properties['status'] = $value; + + after_status: + + } catch (\Throwable $exception) { + throw UnableToHydrateObject::dueToError('ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError', $exception, stack: $this->hydrationStack); + } + + if (count($missingFields) > 0) { + throw UnableToHydrateObject::dueToMissingFields(\ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError::class, $missingFields, stack: $this->hydrationStack); + } + + try { + return new \ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError(...$properties); + } catch (\Throwable $exception) { + throw UnableToHydrateObject::dueToError('ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError', $exception, stack: $this->hydrationStack); + } + } + + + private function hydrateApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️ScimError(array $payload): \ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError + { + $properties = []; + $missingFields = []; + try { + $value = $payload['message'] ?? null; + + if ($value === null) { + $properties['message'] = null; + goto after_message; + } + + $properties['message'] = $value; + + after_message: + + $value = $payload['documentation_url'] ?? null; + + if ($value === null) { + $properties['documentationUrl'] = null; + goto after_documentationUrl; + } + + $properties['documentationUrl'] = $value; + + after_documentationUrl: + + $value = $payload['detail'] ?? null; + + if ($value === null) { + $properties['detail'] = null; + goto after_detail; + } + + $properties['detail'] = $value; + + after_detail: + + $value = $payload['status'] ?? null; + + if ($value === null) { + $properties['status'] = null; + goto after_status; + } + + $properties['status'] = $value; + + after_status: + + $value = $payload['scim_type'] ?? null; + + if ($value === null) { + $properties['scimType'] = null; + goto after_scimType; + } + + $properties['scimType'] = $value; + + after_scimType: + + $value = $payload['schemas'] ?? null; + + if ($value === null) { + $properties['schemas'] = null; + goto after_schemas; + } + + $properties['schemas'] = $value; + + after_schemas: + + } catch (\Throwable $exception) { + throw UnableToHydrateObject::dueToError('ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError', $exception, stack: $this->hydrationStack); + } + + if (count($missingFields) > 0) { + throw UnableToHydrateObject::dueToMissingFields(\ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError::class, $missingFields, stack: $this->hydrationStack); + } + + try { + return new \ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError(...$properties); + } catch (\Throwable $exception) { + throw UnableToHydrateObject::dueToError('ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError', $exception, stack: $this->hydrationStack); + } + } + + private function serializeViaTypeMap(string $accessor, object $object, array $payloadToTypeMap): array + { + foreach ($payloadToTypeMap as $payloadType => [$valueType, $method]) { + if (is_a($object, $valueType)) { + return [$accessor => $payloadType] + $this->{$method}($object); + } + } + + throw new \LogicException('No type mapped for object of class: ' . get_class($object)); + } + + public function serializeObject(object $object): mixed + { + return $this->serializeObjectOfType($object, get_class($object)); + } + + /** + * @template T + * + * @param T $object + * @param class-string $className + */ + public function serializeObjectOfType(object $object, string $className): mixed + { + try { + return match($className) { + 'array' => $this->serializeValuearray($object), + 'Ramsey\Uuid\UuidInterface' => $this->serializeValueRamsey⚡️Uuid⚡️UuidInterface($object), + 'DateTime' => $this->serializeValueDateTime($object), + 'DateTimeImmutable' => $this->serializeValueDateTimeImmutable($object), + 'DateTimeInterface' => $this->serializeValueDateTimeInterface($object), + 'ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError' => $this->serializeObjectApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️BasicError($object), + 'ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError' => $this->serializeObjectApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️ScimError($object), + default => throw new \LogicException('No serialization defined for $className'), + }; + } catch (\Throwable $exception) { + throw UnableToSerializeObject::dueToError($className, $exception); + } + } + + + private function serializeValuearray(mixed $value): mixed + { + static $serializer; + + if ($serializer === null) { + $serializer = new \EventSauce\ObjectHydrator\PropertySerializers\SerializeArrayItems(...array ( +)); + } + + return $serializer->serialize($value, $this); + } + + + private function serializeValueRamsey⚡️Uuid⚡️UuidInterface(mixed $value): mixed + { + static $serializer; + + if ($serializer === null) { + $serializer = new \EventSauce\ObjectHydrator\PropertySerializers\SerializeUuidToString(...array ( +)); + } + + return $serializer->serialize($value, $this); + } + + + private function serializeValueDateTime(mixed $value): mixed + { + static $serializer; + + if ($serializer === null) { + $serializer = new \EventSauce\ObjectHydrator\PropertySerializers\SerializeDateTime(...array ( +)); + } + + return $serializer->serialize($value, $this); + } + + + private function serializeValueDateTimeImmutable(mixed $value): mixed + { + static $serializer; + + if ($serializer === null) { + $serializer = new \EventSauce\ObjectHydrator\PropertySerializers\SerializeDateTime(...array ( +)); + } + + return $serializer->serialize($value, $this); + } + + + private function serializeValueDateTimeInterface(mixed $value): mixed + { + static $serializer; + + if ($serializer === null) { + $serializer = new \EventSauce\ObjectHydrator\PropertySerializers\SerializeDateTime(...array ( +)); + } + + return $serializer->serialize($value, $this); + } + + + private function serializeObjectApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️BasicError(mixed $object): mixed + { + \assert($object instanceof \ApiClients\Client\GitHubEnterpriseCloud\Schema\BasicError); + $result = []; + + $message = $object->message; + + if ($message === null) { + goto after_message; + } + after_message: $result['message'] = $message; + + + $documentationUrl = $object->documentationUrl; + + if ($documentationUrl === null) { + goto after_documentationUrl; + } + after_documentationUrl: $result['documentation_url'] = $documentationUrl; + + + $url = $object->url; + + if ($url === null) { + goto after_url; + } + after_url: $result['url'] = $url; + + + $status = $object->status; + + if ($status === null) { + goto after_status; + } + after_status: $result['status'] = $status; + + + return $result; + } + + + private function serializeObjectApiClients⚡️Client⚡️GitHubEnterpriseCloud⚡️Schema⚡️ScimError(mixed $object): mixed + { + \assert($object instanceof \ApiClients\Client\GitHubEnterpriseCloud\Schema\ScimError); + $result = []; + + $message = $object->message; + + if ($message === null) { + goto after_message; + } + after_message: $result['message'] = $message; + + + $documentationUrl = $object->documentationUrl; + + if ($documentationUrl === null) { + goto after_documentationUrl; + } + after_documentationUrl: $result['documentation_url'] = $documentationUrl; + + + $detail = $object->detail; + + if ($detail === null) { + goto after_detail; + } + after_detail: $result['detail'] = $detail; + + + $status = $object->status; + + if ($status === null) { + goto after_status; + } + after_status: $result['status'] = $status; + + + $scimType = $object->scimType; + + if ($scimType === null) { + goto after_scimType; + } + after_scimType: $result['scim_type'] = $scimType; + + + $schemas = $object->schemas; + + if ($schemas === null) { + goto after_schemas; + } + static $schemasSerializer0; + + if ($schemasSerializer0 === null) { + $schemasSerializer0 = new \EventSauce\ObjectHydrator\PropertySerializers\SerializeArrayItems(...array ( +)); + } + + $schemas = $schemasSerializer0->serialize($schemas, $this); + after_schemas: $result['schemas'] = $schemas; + + + return $result; + } + + + + /** + * @template T + * + * @param class-string $className + * @param iterable $payloads; + * + * @return IterableList + * + * @throws UnableToHydrateObject + */ + public function hydrateObjects(string $className, iterable $payloads): IterableList + { + return new IterableList($this->doHydrateObjects($className, $payloads)); + } + + private function doHydrateObjects(string $className, iterable $payloads): Generator + { + foreach ($payloads as $index => $payload) { + yield $index => $this->hydrateObject($className, $payload); + } + } + + /** + * @template T + * + * @param class-string $className + * @param iterable $payloads; + * + * @return IterableList + * + * @throws UnableToSerializeObject + */ + public function serializeObjects(iterable $payloads): IterableList + { + return new IterableList($this->doSerializeObjects($payloads)); + } + + private function doSerializeObjects(iterable $objects): Generator + { + foreach ($objects as $index => $object) { + yield $index => $this->serializeObject($object); + } + } +} diff --git a/clients/GitHubEnterpriseCloud/src/Hydrators.php b/clients/GitHubEnterpriseCloud/src/Hydrators.php index 1f435f13278..6d700d6be3f 100644 --- a/clients/GitHubEnterpriseCloud/src/Hydrators.php +++ b/clients/GitHubEnterpriseCloud/src/Hydrators.php @@ -463,6 +463,7 @@ final class Hydrators implements ObjectMapper private Hydrator\Operation\Repos\Owner\Repo\Pages\Builds\BuildId|null $operation🌀Repos🌀Owner🌀Repo🌀Pages🌀Builds🌀BuildId = null; private Hydrator\Operation\Repos\Owner\Repo\Pages\Deployment|null $operation🌀Repos🌀Owner🌀Repo🌀Pages🌀Deployment = null; private Hydrator\Operation\Repos\Owner\Repo\Pages\Health|null $operation🌀Repos🌀Owner🌀Repo🌀Pages🌀Health = null; + private Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting|null $operation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting = null; private Hydrator\Operation\Repos\Owner\Repo\Projects|null $operation🌀Repos🌀Owner🌀Repo🌀Projects = null; private Hydrator\Operation\Repos\Owner\Repo\Pulls|null $operation🌀Repos🌀Owner🌀Repo🌀Pulls = null; private Hydrator\Operation\Repos\Owner\Repo\Pulls\Comments|null $operation🌀Repos🌀Owner🌀Repo🌀Pulls🌀Comments = null; @@ -5289,6 +5290,15 @@ public function getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀Pages🌀H return $this->operation🌀Repos🌀Owner🌀Repo🌀Pages🌀Health; } + public function getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting(): Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting + { + if ($this->operation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting instanceof Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting === false) { + $this->operation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting = new Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting(); + } + + return $this->operation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting; + } + public function getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀Projects(): Hydrator\Operation\Repos\Owner\Repo\Projects { if ($this->operation🌀Repos🌀Owner🌀Repo🌀Projects instanceof Hydrator\Operation\Repos\Owner\Repo\Projects === false) { diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Repos.php b/clients/GitHubEnterpriseCloud/src/Operation/Repos.php index 70eb1c6c46d..251b967668d 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Repos.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Repos.php @@ -1245,6 +1245,24 @@ public function getPagesHealthCheck(string $owner, string $repo): PromiseInterfa return $this->operator[Operator\Repos\GetPagesHealthCheck::class]->call($owner, $repo); } + public function enablePrivateVulnerabilityReporting(string $owner, string $repo): PromiseInterface + { + if (array_key_exists(Operator\Repos\EnablePrivateVulnerabilityReporting::class, $this->operator) === false) { + $this->operator[Operator\Repos\EnablePrivateVulnerabilityReporting::class] = new Operator\Repos\EnablePrivateVulnerabilityReporting($this->browser, $this->authentication, $this->responseSchemaValidator, $this->hydrators->getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting()); + } + + return $this->operator[Operator\Repos\EnablePrivateVulnerabilityReporting::class]->call($owner, $repo); + } + + public function disablePrivateVulnerabilityReporting(string $owner, string $repo): PromiseInterface + { + if (array_key_exists(Operator\Repos\DisablePrivateVulnerabilityReporting::class, $this->operator) === false) { + $this->operator[Operator\Repos\DisablePrivateVulnerabilityReporting::class] = new Operator\Repos\DisablePrivateVulnerabilityReporting($this->browser, $this->authentication, $this->responseSchemaValidator, $this->hydrators->getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting()); + } + + return $this->operator[Operator\Repos\DisablePrivateVulnerabilityReporting::class]->call($owner, $repo); + } + public function getReadme(string $owner, string $repo, string $ref): PromiseInterface { if (array_key_exists(Operator\Repos\GetReadme::class, $this->operator) === false) { diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Repos/DisablePrivateVulnerabilityReporting.php b/clients/GitHubEnterpriseCloud/src/Operation/Repos/DisablePrivateVulnerabilityReporting.php new file mode 100644 index 00000000000..2678930542e --- /dev/null +++ b/clients/GitHubEnterpriseCloud/src/Operation/Repos/DisablePrivateVulnerabilityReporting.php @@ -0,0 +1,87 @@ +owner = $owner; + $this->repo = $repo; + } + + public function createRequest(): RequestInterface + { + return new Request(self::METHOD, str_replace(['{owner}', '{repo}'], [$this->owner, $this->repo], self::PATH)); + } + + /** @return array{code: int} */ + public function createResponse(ResponseInterface $response): array + { + $code = $response->getStatusCode(); + [$contentType] = explode(';', $response->getHeaderLine('Content-Type')); + switch ($contentType) { + case 'application/json': + $body = json_decode($response->getBody()->getContents(), true); + switch ($code) { + /** + * Bad Request + **/ + case 422: + $this->responseSchemaValidator->validate($body, Reader::readFromJson(Schema\BasicError::SCHEMA_JSON, \cebe\openapi\spec\Schema::class)); + + throw new ErrorSchemas\BasicError(422, $this->hydrator->hydrateObject(Schema\BasicError::class, $body)); + } + + break; + case 'application/scim+json': + $body = json_decode($response->getBody()->getContents(), true); + switch ($code) { + /** + * Bad Request + **/ + case 422: + $this->responseSchemaValidator->validate($body, Reader::readFromJson(Schema\ScimError::SCHEMA_JSON, \cebe\openapi\spec\Schema::class)); + + throw new ErrorSchemas\ScimError(422, $this->hydrator->hydrateObject(Schema\ScimError::class, $body)); + } + + break; + } + + switch ($code) { + /** + * A header with no content is returned. + **/ + case 204: + return ['code' => 204]; + } + + throw new RuntimeException('Unable to find matching response code and content type'); + } +} diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Repos/EnablePrivateVulnerabilityReporting.php b/clients/GitHubEnterpriseCloud/src/Operation/Repos/EnablePrivateVulnerabilityReporting.php new file mode 100644 index 00000000000..0f3318c9eca --- /dev/null +++ b/clients/GitHubEnterpriseCloud/src/Operation/Repos/EnablePrivateVulnerabilityReporting.php @@ -0,0 +1,87 @@ +owner = $owner; + $this->repo = $repo; + } + + public function createRequest(): RequestInterface + { + return new Request(self::METHOD, str_replace(['{owner}', '{repo}'], [$this->owner, $this->repo], self::PATH)); + } + + /** @return array{code: int} */ + public function createResponse(ResponseInterface $response): array + { + $code = $response->getStatusCode(); + [$contentType] = explode(';', $response->getHeaderLine('Content-Type')); + switch ($contentType) { + case 'application/json': + $body = json_decode($response->getBody()->getContents(), true); + switch ($code) { + /** + * Bad Request + **/ + case 422: + $this->responseSchemaValidator->validate($body, Reader::readFromJson(Schema\BasicError::SCHEMA_JSON, \cebe\openapi\spec\Schema::class)); + + throw new ErrorSchemas\BasicError(422, $this->hydrator->hydrateObject(Schema\BasicError::class, $body)); + } + + break; + case 'application/scim+json': + $body = json_decode($response->getBody()->getContents(), true); + switch ($code) { + /** + * Bad Request + **/ + case 422: + $this->responseSchemaValidator->validate($body, Reader::readFromJson(Schema\ScimError::SCHEMA_JSON, \cebe\openapi\spec\Schema::class)); + + throw new ErrorSchemas\ScimError(422, $this->hydrator->hydrateObject(Schema\ScimError::class, $body)); + } + + break; + } + + switch ($code) { + /** + * A header with no content is returned. + **/ + case 204: + return ['code' => 204]; + } + + throw new RuntimeException('Unable to find matching response code and content type'); + } +} diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/Code.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/Code.php index ab7c7c359b7..88441801b6b 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/Code.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/Code.php @@ -24,9 +24,9 @@ final class Code public const OPERATION_MATCH = 'GET /search/code'; private const METHOD = 'GET'; private const PATH = '/search/code'; - /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). See "[Searching code](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-code)" for a detailed list of qualifiers. **/ + /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching code](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-code)" for a detailed list of qualifiers. **/ private string $q; - /****This field is deprecated.** Sorts the results of your query. Can only be `indexed`, which indicates how recently a file has been indexed by the GitHub Enterprise Cloud search infrastructure. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results) **/ + /****This field is deprecated.** Sorts the results of your query. Can only be `indexed`, which indicates how recently a file has been indexed by the GitHub Enterprise Cloud search infrastructure. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results) **/ private string $sort; /****This field is deprecated.** Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. **/ private string $order; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/Commits.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/Commits.php index 1307ba48eed..9304ab837f4 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/Commits.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/Commits.php @@ -23,9 +23,9 @@ final class Commits public const OPERATION_MATCH = 'GET /search/commits'; private const METHOD = 'GET'; private const PATH = '/search/commits'; - /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). See "[Searching commits](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-commits)" for a detailed list of qualifiers. **/ + /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching commits](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-commits)" for a detailed list of qualifiers. **/ private string $q; - /**Sorts the results of your query by `author-date` or `committer-date`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results) **/ + /**Sorts the results of your query by `author-date` or `committer-date`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results) **/ private string $sort; /**Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. **/ private string $order; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/IssuesAndPullRequests.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/IssuesAndPullRequests.php index 5fb53d070d5..19030d33b8a 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/IssuesAndPullRequests.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/IssuesAndPullRequests.php @@ -24,9 +24,9 @@ final class IssuesAndPullRequests public const OPERATION_MATCH = 'GET /search/issues'; private const METHOD = 'GET'; private const PATH = '/search/issues'; - /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). See "[Searching issues and pull requests](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-issues-and-pull-requests)" for a detailed list of qualifiers. **/ + /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching issues and pull requests](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-issues-and-pull-requests)" for a detailed list of qualifiers. **/ private string $q; - /**Sorts the results of your query by the number of `comments`, `reactions`, `reactions-+1`, `reactions--1`, `reactions-smile`, `reactions-thinking_face`, `reactions-heart`, `reactions-tada`, or `interactions`. You can also sort results by how recently the items were `created` or `updated`, Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results) **/ + /**Sorts the results of your query by the number of `comments`, `reactions`, `reactions-+1`, `reactions--1`, `reactions-smile`, `reactions-thinking_face`, `reactions-heart`, `reactions-tada`, or `interactions`. You can also sort results by how recently the items were `created` or `updated`, Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results) **/ private string $sort; /**Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. **/ private string $order; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/Labels.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/Labels.php index b6987f8fa52..673ff0aa976 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/Labels.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/Labels.php @@ -26,9 +26,9 @@ final class Labels private const PATH = '/search/labels'; /**The id of the repository. **/ private int $repositoryId; - /**The search keywords. This endpoint does not accept qualifiers in the query. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). **/ + /**The search keywords. This endpoint does not accept qualifiers in the query. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). **/ private string $q; - /**Sorts the results of your query by when the label was `created` or `updated`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results) **/ + /**Sorts the results of your query by when the label was `created` or `updated`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results) **/ private string $sort; /**Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. **/ private string $order; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/Repos.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/Repos.php index cc6c3d85eda..f91bd5e30a8 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/Repos.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/Repos.php @@ -24,9 +24,9 @@ final class Repos public const OPERATION_MATCH = 'GET /search/repositories'; private const METHOD = 'GET'; private const PATH = '/search/repositories'; - /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). See "[Searching for repositories](https://docs.github.com/enterprise-cloud@latest//articles/searching-for-repositories/)" for a detailed list of qualifiers. **/ + /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching for repositories](https://docs.github.com/enterprise-cloud@latest//articles/searching-for-repositories/)" for a detailed list of qualifiers. **/ private string $q; - /**Sorts the results of your query by number of `stars`, `forks`, or `help-wanted-issues` or how recently the items were `updated`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results) **/ + /**Sorts the results of your query by number of `stars`, `forks`, or `help-wanted-issues` or how recently the items were `updated`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results) **/ private string $sort; /**Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. **/ private string $order; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/Topics.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/Topics.php index bb1840a0f94..2136aa645fb 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/Topics.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/Topics.php @@ -23,7 +23,7 @@ final class Topics public const OPERATION_MATCH = 'GET /search/topics'; private const METHOD = 'GET'; private const PATH = '/search/topics'; - /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). **/ + /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). **/ private string $q; /**The number of results per page (max 100). **/ private int $perPage; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/Search/Users.php b/clients/GitHubEnterpriseCloud/src/Operation/Search/Users.php index 4f2e6d63f3e..81b0d703eed 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/Search/Users.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/Search/Users.php @@ -24,9 +24,9 @@ final class Users public const OPERATION_MATCH = 'GET /search/users'; private const METHOD = 'GET'; private const PATH = '/search/users'; - /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). See "[Searching users](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-users)" for a detailed list of qualifiers. **/ + /**The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching users](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-users)" for a detailed list of qualifiers. **/ private string $q; - /**Sorts the results of your query by number of `followers` or `repositories`, or when the person `joined` GitHub Enterprise Cloud. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results) **/ + /**Sorts the results of your query by number of `followers` or `repositories`, or when the person `joined` GitHub Enterprise Cloud. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results) **/ private string $sort; /**Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. **/ private string $order; diff --git a/clients/GitHubEnterpriseCloud/src/Operation/SecurityAdvisories/ListGlobalAdvisories.php b/clients/GitHubEnterpriseCloud/src/Operation/SecurityAdvisories/ListGlobalAdvisories.php index 0999a3bd36d..8fa3342f4c7 100644 --- a/clients/GitHubEnterpriseCloud/src/Operation/SecurityAdvisories/ListGlobalAdvisories.php +++ b/clients/GitHubEnterpriseCloud/src/Operation/SecurityAdvisories/ListGlobalAdvisories.php @@ -32,11 +32,16 @@ final class ListGlobalAdvisories private string $ecosystem; /**If specified, only advisories with these severities will be returned. **/ private string $severity; - /**If specified, only advisories with these Common Weakness Enumerations (CWEs) will be returned. **/ + /**If specified, only advisories with these Common Weakness Enumerations (CWEs) will be returned. + + Example: `cwes=79,284,22` or `cwes[]=79&cwes[]=284&cwes[]=22` **/ private $cwes; /**Whether to only return advisories that have been withdrawn. **/ private bool $isWithdrawn; - /**If specified, return advisories that affect any of `package` or `package@version`. A maximum of 1000 packages can be specified. If the query parameter causes the URL to exceed the maximum URL length supported by your client, you must specify fewer packages. **/ + /**If specified, only return advisories that affect any of `package` or `package@version`. A maximum of 1000 packages can be specified. + If the query parameter causes the URL to exceed the maximum URL length supported by your client, you must specify fewer packages. + + Example: `affects=package1,package2@1.0.0,package3@^2.0.0` or `affects[]=package1&affects[]=package2@1.0.0` **/ private $affects; /**If specified, only return advisories that were published on a date or date range. diff --git a/clients/GitHubEnterpriseCloud/src/Operator/Repos/DisablePrivateVulnerabilityReporting.php b/clients/GitHubEnterpriseCloud/src/Operator/Repos/DisablePrivateVulnerabilityReporting.php new file mode 100644 index 00000000000..1b2ff5ef4cd --- /dev/null +++ b/clients/GitHubEnterpriseCloud/src/Operator/Repos/DisablePrivateVulnerabilityReporting.php @@ -0,0 +1,35 @@ + **/ + public function call(string $owner, string $repo): PromiseInterface + { + $operation = new \ApiClients\Client\GitHubEnterpriseCloud\Operation\Repos\DisablePrivateVulnerabilityReporting($this->responseSchemaValidator, $this->hydrator, $owner, $repo); + $request = $operation->createRequest(); + + return $this->browser->request($request->getMethod(), (string) $request->getUri(), $request->withHeader('Authorization', $this->authentication->authHeader())->getHeaders(), (string) $request->getBody())->then(static function (ResponseInterface $response) use ($operation): array { + return $operation->createResponse($response); + }); + } +} diff --git a/clients/GitHubEnterpriseCloud/src/Operator/Repos/EnablePrivateVulnerabilityReporting.php b/clients/GitHubEnterpriseCloud/src/Operator/Repos/EnablePrivateVulnerabilityReporting.php new file mode 100644 index 00000000000..25baf2b3f6d --- /dev/null +++ b/clients/GitHubEnterpriseCloud/src/Operator/Repos/EnablePrivateVulnerabilityReporting.php @@ -0,0 +1,35 @@ + **/ + public function call(string $owner, string $repo): PromiseInterface + { + $operation = new \ApiClients\Client\GitHubEnterpriseCloud\Operation\Repos\EnablePrivateVulnerabilityReporting($this->responseSchemaValidator, $this->hydrator, $owner, $repo); + $request = $operation->createRequest(); + + return $this->browser->request($request->getMethod(), (string) $request->getUri(), $request->withHeader('Authorization', $this->authentication->authHeader())->getHeaders(), (string) $request->getBody())->then(static function (ResponseInterface $response) use ($operation): array { + return $operation->createResponse($response); + }); + } +} diff --git a/clients/GitHubEnterpriseCloud/src/Router/Delete/Five.php b/clients/GitHubEnterpriseCloud/src/Router/Delete/Five.php index 05ada72d9e8..636c2034f3f 100644 --- a/clients/GitHubEnterpriseCloud/src/Router/Delete/Five.php +++ b/clients/GitHubEnterpriseCloud/src/Router/Delete/Five.php @@ -259,6 +259,14 @@ public function call(string $call, array $params, array $pathChunks) return $this->router[Router\Delete\Repos::class]->deletePagesSite($params); } + } elseif ($pathChunks[4] === 'private-vulnerability-reporting') { + if ($call === 'DELETE /repos/{owner}/{repo}/private-vulnerability-reporting') { + if (array_key_exists(Router\Delete\Repos::class, $this->router) === false) { + $this->router[Router\Delete\Repos::class] = new Router\Delete\Repos($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrators, $this->browser, $this->authentication); + } + + return $this->router[Router\Delete\Repos::class]->disablePrivateVulnerabilityReporting($params); + } } elseif ($pathChunks[4] === 'subscription') { if ($call === 'DELETE /repos/{owner}/{repo}/subscription') { if (array_key_exists(Router\Delete\Activity::class, $this->router) === false) { diff --git a/clients/GitHubEnterpriseCloud/src/Router/Delete/Repos.php b/clients/GitHubEnterpriseCloud/src/Router/Delete/Repos.php index 487cb1cd805..f12e3fc1d8d 100644 --- a/clients/GitHubEnterpriseCloud/src/Router/Delete/Repos.php +++ b/clients/GitHubEnterpriseCloud/src/Router/Delete/Repos.php @@ -154,6 +154,30 @@ public function deletePagesSite(array $params) return $operator->call($arguments['owner'], $arguments['repo']); } + public function disablePrivateVulnerabilityReporting(array $params) + { + $arguments = []; + if (array_key_exists('owner', $params) === false) { + throw new InvalidArgumentException('Missing mandatory field: owner'); + } + + $arguments['owner'] = $params['owner']; + unset($params['owner']); + if (array_key_exists('repo', $params) === false) { + throw new InvalidArgumentException('Missing mandatory field: repo'); + } + + $arguments['repo'] = $params['repo']; + unset($params['repo']); + if (array_key_exists(Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting::class, $this->hydrator) === false) { + $this->hydrator[Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting::class] = $this->hydrators->getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting(); + } + + $operator = new Operator\Repos\DisablePrivateVulnerabilityReporting($this->browser, $this->authentication, $this->responseSchemaValidator, $this->hydrator[Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting::class]); + + return $operator->call($arguments['owner'], $arguments['repo']); + } + public function disableVulnerabilityAlerts(array $params) { $arguments = []; diff --git a/clients/GitHubEnterpriseCloud/src/Router/Put/Five.php b/clients/GitHubEnterpriseCloud/src/Router/Put/Five.php index d28becad1ee..d4373b1e464 100644 --- a/clients/GitHubEnterpriseCloud/src/Router/Put/Five.php +++ b/clients/GitHubEnterpriseCloud/src/Router/Put/Five.php @@ -205,6 +205,14 @@ public function call(string $call, array $params, array $pathChunks) return $this->router[Router\Put\Repos::class]->updateInformationAboutPagesSite($params); } + } elseif ($pathChunks[4] === 'private-vulnerability-reporting') { + if ($call === 'PUT /repos/{owner}/{repo}/private-vulnerability-reporting') { + if (array_key_exists(Router\Put\Repos::class, $this->router) === false) { + $this->router[Router\Put\Repos::class] = new Router\Put\Repos($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrators, $this->browser, $this->authentication); + } + + return $this->router[Router\Put\Repos::class]->enablePrivateVulnerabilityReporting($params); + } } elseif ($pathChunks[4] === 'subscription') { if ($call === 'PUT /repos/{owner}/{repo}/subscription') { if (array_key_exists(Router\Put\Activity::class, $this->router) === false) { diff --git a/clients/GitHubEnterpriseCloud/src/Router/Put/Repos.php b/clients/GitHubEnterpriseCloud/src/Router/Put/Repos.php index 15a797e2f8e..834d31f6c86 100644 --- a/clients/GitHubEnterpriseCloud/src/Router/Put/Repos.php +++ b/clients/GitHubEnterpriseCloud/src/Router/Put/Repos.php @@ -116,6 +116,30 @@ public function updateInformationAboutPagesSite(array $params) return $operator->call($arguments['owner'], $arguments['repo'], $params); } + public function enablePrivateVulnerabilityReporting(array $params) + { + $arguments = []; + if (array_key_exists('owner', $params) === false) { + throw new InvalidArgumentException('Missing mandatory field: owner'); + } + + $arguments['owner'] = $params['owner']; + unset($params['owner']); + if (array_key_exists('repo', $params) === false) { + throw new InvalidArgumentException('Missing mandatory field: repo'); + } + + $arguments['repo'] = $params['repo']; + unset($params['repo']); + if (array_key_exists(Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting::class, $this->hydrator) === false) { + $this->hydrator[Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting::class] = $this->hydrators->getObjectMapperOperation🌀Repos🌀Owner🌀Repo🌀PrivateVulnerabilityReporting(); + } + + $operator = new Operator\Repos\EnablePrivateVulnerabilityReporting($this->browser, $this->authentication, $this->responseSchemaValidator, $this->hydrator[Hydrator\Operation\Repos\Owner\Repo\PrivateVulnerabilityReporting::class]); + + return $operator->call($arguments['owner'], $arguments['repo']); + } + public function replaceAllTopics(array $params) { $arguments = []; diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Checks/Create/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Checks/Create/Request/ApplicationJson.php index 79a3b00882b..d311575435c 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Checks/Create/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Checks/Create/Request/ApplicationJson.php @@ -9,7 +9,7 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"required":["name","head_sha"],"type":"object","oneOf":[{"required":["status","conclusion"],"properties":{"status":{"enum":["completed"]}},"additionalProperties":true},{"properties":{"status":{"enum":["queued","in_progress"]}},"additionalProperties":true}],"properties":{"name":{"type":"string","description":"The name of the check. For example, \\"code-coverage\\"."},"head_sha":{"type":"string","description":"The SHA of the commit."},"details_url":{"type":"string","description":"The URL of the integrator\'s site that has the full details of the check. If the integrator does not provide this, then the homepage of the GitHub app is used."},"external_id":{"type":"string","description":"A reference for the run on the integrator\'s system."},"status":{"enum":["queued","in_progress","completed"],"type":"string","description":"The current status.","default":"queued"},"started_at":{"type":"string","description":"The time that the check run began. This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"conclusion":{"enum":["action_required","cancelled","failure","neutral","success","skipped","stale","timed_out"],"type":"string","description":"**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. \\n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. You cannot change a check run conclusion to `stale`, only GitHub can set this."},"completed_at":{"type":"string","description":"The time the check completed. This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"output":{"required":["title","summary"],"type":"object","properties":{"title":{"type":"string","description":"The title of the check run."},"summary":{"maxLength":65535,"type":"string","description":"The summary of the check run. This parameter supports Markdown. **Maximum length**: 65535 characters."},"text":{"maxLength":65535,"type":"string","description":"The details of the check run. This parameter supports Markdown. **Maximum length**: 65535 characters."},"annotations":{"maxItems":50,"type":"array","items":{"required":["path","start_line","end_line","annotation_level","message"],"type":"object","properties":{"path":{"type":"string","description":"The path of the file to add an annotation to. For example, `assets\\/css\\/main.css`."},"start_line":{"type":"integer","description":"The start line of the annotation. Line numbers start at 1."},"end_line":{"type":"integer","description":"The end line of the annotation."},"start_column":{"type":"integer","description":"The start column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values. Column numbers start at 1."},"end_column":{"type":"integer","description":"The end column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values."},"annotation_level":{"enum":["notice","warning","failure"],"type":"string","description":"The level of the annotation."},"message":{"type":"string","description":"A short description of the feedback for these lines of code. The maximum size is 64 KB."},"title":{"type":"string","description":"The title that represents the annotation. The maximum size is 255 characters."},"raw_details":{"type":"string","description":"Details about this annotation. The maximum size is 64 KB."}}},"description":"Adds information from your analysis to specific lines of code. Annotations are visible on GitHub in the **Checks** and **Files changed** tab of the pull request. The Checks API limits the number of annotations to a maximum of 50 per API request. To create more than 50 annotations, you have to make multiple requests to the [Update a check run](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/checks\\/runs#update-a-check-run) endpoint. Each time you update the check run, annotations are appended to the list of annotations that already exist for the check run. GitHub Actions are limited to 10 warning annotations and 10 error annotations per step. For details about how you can view annotations on GitHub, see \\"[About status checks](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/articles\\/about-status-checks#checks)\\"."},"images":{"type":"array","items":{"required":["alt","image_url"],"type":"object","properties":{"alt":{"type":"string","description":"The alternative text for the image."},"image_url":{"type":"string","description":"The full URL of the image."},"caption":{"type":"string","description":"A short image description."}}},"description":"Adds images to the output displayed in the GitHub pull request UI."}},"description":"Check runs can accept a variety of data in the `output` object, including a `title` and `summary` and can optionally provide descriptive details about the run."},"actions":{"maxItems":3,"type":"array","items":{"required":["label","description","identifier"],"type":"object","properties":{"label":{"maxLength":20,"type":"string","description":"The text to be displayed on a button in the web UI. The maximum size is 20 characters."},"description":{"maxLength":40,"type":"string","description":"A short explanation of what this action would do. The maximum size is 40 characters."},"identifier":{"maxLength":20,"type":"string","description":"A reference for the action on the integrator\'s system. The maximum size is 20 characters."}}},"description":"Displays a button on GitHub that can be clicked to alert your app to do additional tasks. For example, a code linting app can display a button that automatically fixes detected errors. The button created in this object is displayed after the check run completes. When a user clicks the button, GitHub sends the [`check_run.requested_action` webhook](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#check_run) to your app. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see \\"[Check runs and requested actions](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/checks#check-runs-and-requested-actions).\\""}}}'; + public const SCHEMA_JSON = '{"required":["name","head_sha"],"type":"object","oneOf":[{"required":["status","conclusion"],"properties":{"status":{"enum":["completed"]}},"additionalProperties":true},{"properties":{"status":{"enum":["queued","in_progress"]}},"additionalProperties":true}],"properties":{"name":{"type":"string","description":"The name of the check. For example, \\"code-coverage\\"."},"head_sha":{"type":"string","description":"The SHA of the commit."},"details_url":{"type":"string","description":"The URL of the integrator\'s site that has the full details of the check. If the integrator does not provide this, then the homepage of the GitHub app is used."},"external_id":{"type":"string","description":"A reference for the run on the integrator\'s system."},"status":{"enum":["queued","in_progress","completed"],"type":"string","description":"The current status.","default":"queued"},"started_at":{"type":"string","description":"The time that the check run began. This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"conclusion":{"enum":["action_required","cancelled","failure","neutral","success","skipped","stale","timed_out"],"type":"string","description":"**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. \\n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. You cannot change a check run conclusion to `stale`, only GitHub can set this."},"completed_at":{"type":"string","description":"The time the check completed. This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"output":{"required":["title","summary"],"type":"object","properties":{"title":{"type":"string","description":"The title of the check run."},"summary":{"maxLength":65535,"type":"string","description":"The summary of the check run. This parameter supports Markdown. **Maximum length**: 65535 characters."},"text":{"maxLength":65535,"type":"string","description":"The details of the check run. This parameter supports Markdown. **Maximum length**: 65535 characters."},"annotations":{"maxItems":50,"type":"array","items":{"required":["path","start_line","end_line","annotation_level","message"],"type":"object","properties":{"path":{"type":"string","description":"The path of the file to add an annotation to. For example, `assets\\/css\\/main.css`."},"start_line":{"type":"integer","description":"The start line of the annotation. Line numbers start at 1."},"end_line":{"type":"integer","description":"The end line of the annotation."},"start_column":{"type":"integer","description":"The start column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values. Column numbers start at 1."},"end_column":{"type":"integer","description":"The end column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values."},"annotation_level":{"enum":["notice","warning","failure"],"type":"string","description":"The level of the annotation."},"message":{"type":"string","description":"A short description of the feedback for these lines of code. The maximum size is 64 KB."},"title":{"type":"string","description":"The title that represents the annotation. The maximum size is 255 characters."},"raw_details":{"type":"string","description":"Details about this annotation. The maximum size is 64 KB."}}},"description":"Adds information from your analysis to specific lines of code. Annotations are visible on GitHub in the **Checks** and **Files changed** tab of the pull request. The Checks API limits the number of annotations to a maximum of 50 per API request. To create more than 50 annotations, you have to make multiple requests to the [Update a check run](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/checks\\/runs#update-a-check-run) endpoint. Each time you update the check run, annotations are appended to the list of annotations that already exist for the check run. GitHub Actions are limited to 10 warning annotations and 10 error annotations per step. For details about how you can view annotations on GitHub, see \\"[About status checks](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/articles\\/about-status-checks#checks)\\"."},"images":{"type":"array","items":{"required":["alt","image_url"],"type":"object","properties":{"alt":{"type":"string","description":"The alternative text for the image."},"image_url":{"type":"string","description":"The full URL of the image."},"caption":{"type":"string","description":"A short image description."}}},"description":"Adds images to the output displayed in the GitHub pull request UI."}},"description":"Check runs can accept a variety of data in the `output` object, including a `title` and `summary` and can optionally provide descriptive details about the run."},"actions":{"maxItems":3,"type":"array","items":{"required":["label","description","identifier"],"type":"object","properties":{"label":{"maxLength":20,"type":"string","description":"The text to be displayed on a button in the web UI. The maximum size is 20 characters."},"description":{"maxLength":40,"type":"string","description":"A short explanation of what this action would do. The maximum size is 40 characters."},"identifier":{"maxLength":20,"type":"string","description":"A reference for the action on the integrator\'s system. The maximum size is 20 characters."}}},"description":"Displays a button on GitHub that can be clicked to alert your app to do additional tasks. For example, a code linting app can display a button that automatically fixes detected errors. The button created in this object is displayed after the check run completes. When a user clicks the button, GitHub sends the [`check_run.requested_action` webhook](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#check_run) to your app. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see \\"[Check runs and requested actions](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/guides\\/using-the-rest-api-to-interact-with-checks#check-runs-and-requested-actions).\\""}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"name":"generated","head_sha":"generated","details_url":"generated","external_id":"generated","status":"completed","started_at":"1970-01-01T00:00:00+00:00","conclusion":"timed_out","completed_at":"1970-01-01T00:00:00+00:00","output":{"title":"generated","summary":"generated","text":"generated","annotations":[{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"}],"images":[{"alt":"generated","image_url":"generated","caption":"generated"},{"alt":"generated","image_url":"generated","caption":"generated"}]},"actions":[{"label":"generated","description":"generated","identifier":"generated"},{"label":"generated","description":"generated","identifier":"generated"},{"label":"generated","description":"generated","identifier":"generated"}]}'; @@ -25,7 +25,7 @@ * *Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. You cannot change a check run conclusion to `stale`, only GitHub can set this. * completedAt: The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. * output: Check runs can accept a variety of data in the `output` object, including a `title` and `summary` and can optionally provide descriptive details about the run. - * actions: Displays a button on GitHub that can be clicked to alert your app to do additional tasks. For example, a code linting app can display a button that automatically fixes detected errors. The button created in this object is displayed after the check run completes. When a user clicks the button, GitHub sends the [`check_run.requested_action` webhook](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads/#check_run) to your app. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see "[Check runs and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#check-runs-and-requested-actions)." + * actions: Displays a button on GitHub that can be clicked to alert your app to do additional tasks. For example, a code linting app can display a button that automatically fixes detected errors. The button created in this object is displayed after the check run completes. When a user clicks the button, GitHub sends the [`check_run.requested_action` webhook](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads/#check_run) to your app. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see "[Check runs and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-the-rest-api-to-interact-with-checks#check-runs-and-requested-actions)." */ public function __construct(public string $name, #[MapFrom('head_sha')] public string $headSha, #[MapFrom('details_url')] diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Checks/Update/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Checks/Update/Request/ApplicationJson.php index 5cfb3961b77..6b20a9850b8 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Checks/Update/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Checks/Update/Request/ApplicationJson.php @@ -9,7 +9,7 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"type":"object","anyOf":[{"required":["conclusion"],"properties":{"status":{"enum":["completed"]}},"additionalProperties":true},{"properties":{"status":{"enum":["queued","in_progress"]}},"additionalProperties":true}],"properties":{"name":{"type":"string","description":"The name of the check. For example, \\"code-coverage\\"."},"details_url":{"type":"string","description":"The URL of the integrator\'s site that has the full details of the check."},"external_id":{"type":"string","description":"A reference for the run on the integrator\'s system."},"started_at":{"type":"string","description":"This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"status":{"enum":["queued","in_progress","completed"],"type":"string","description":"The current status."},"conclusion":{"enum":["action_required","cancelled","failure","neutral","success","skipped","stale","timed_out"],"type":"string","description":"**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. \\n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. You cannot change a check run conclusion to `stale`, only GitHub can set this."},"completed_at":{"type":"string","description":"The time the check completed. This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"output":{"required":["summary"],"type":"object","properties":{"title":{"type":"string","description":"**Required**."},"summary":{"maxLength":65535,"type":"string","description":"Can contain Markdown."},"text":{"maxLength":65535,"type":"string","description":"Can contain Markdown."},"annotations":{"maxItems":50,"type":"array","items":{"required":["path","start_line","end_line","annotation_level","message"],"type":"object","properties":{"path":{"type":"string","description":"The path of the file to add an annotation to. For example, `assets\\/css\\/main.css`."},"start_line":{"type":"integer","description":"The start line of the annotation. Line numbers start at 1."},"end_line":{"type":"integer","description":"The end line of the annotation."},"start_column":{"type":"integer","description":"The start column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values. Column numbers start at 1."},"end_column":{"type":"integer","description":"The end column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values."},"annotation_level":{"enum":["notice","warning","failure"],"type":"string","description":"The level of the annotation."},"message":{"type":"string","description":"A short description of the feedback for these lines of code. The maximum size is 64 KB."},"title":{"type":"string","description":"The title that represents the annotation. The maximum size is 255 characters."},"raw_details":{"type":"string","description":"Details about this annotation. The maximum size is 64 KB."}}},"description":"Adds information from your analysis to specific lines of code. Annotations are visible in GitHub\'s pull request UI. Annotations are visible in GitHub\'s pull request UI. The Checks API limits the number of annotations to a maximum of 50 per API request. To create more than 50 annotations, you have to make multiple requests to the [Update a check run](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/checks\\/runs#update-a-check-run) endpoint. Each time you update the check run, annotations are appended to the list of annotations that already exist for the check run. GitHub Actions are limited to 10 warning annotations and 10 error annotations per step. For details about annotations in the UI, see \\"[About status checks](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/articles\\/about-status-checks#checks)\\"."},"images":{"type":"array","items":{"required":["alt","image_url"],"type":"object","properties":{"alt":{"type":"string","description":"The alternative text for the image."},"image_url":{"type":"string","description":"The full URL of the image."},"caption":{"type":"string","description":"A short image description."}}},"description":"Adds images to the output displayed in the GitHub pull request UI."}},"description":"Check runs can accept a variety of data in the `output` object, including a `title` and `summary` and can optionally provide descriptive details about the run."},"actions":{"maxItems":3,"type":"array","items":{"required":["label","description","identifier"],"type":"object","properties":{"label":{"maxLength":20,"type":"string","description":"The text to be displayed on a button in the web UI. The maximum size is 20 characters."},"description":{"maxLength":40,"type":"string","description":"A short explanation of what this action would do. The maximum size is 40 characters."},"identifier":{"maxLength":20,"type":"string","description":"A reference for the action on the integrator\'s system. The maximum size is 20 characters."}}},"description":"Possible further actions the integrator can perform, which a user may trigger. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. See the [`actions` object](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/checks#actions-object) description. To learn more about check runs and requested actions, see \\"[Check runs and requested actions](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/checks#check-runs-and-requested-actions).\\""}}}'; + public const SCHEMA_JSON = '{"type":"object","anyOf":[{"required":["conclusion"],"properties":{"status":{"enum":["completed"]}},"additionalProperties":true},{"properties":{"status":{"enum":["queued","in_progress"]}},"additionalProperties":true}],"properties":{"name":{"type":"string","description":"The name of the check. For example, \\"code-coverage\\"."},"details_url":{"type":"string","description":"The URL of the integrator\'s site that has the full details of the check."},"external_id":{"type":"string","description":"A reference for the run on the integrator\'s system."},"started_at":{"type":"string","description":"This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"status":{"enum":["queued","in_progress","completed"],"type":"string","description":"The current status."},"conclusion":{"enum":["action_required","cancelled","failure","neutral","success","skipped","stale","timed_out"],"type":"string","description":"**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. \\n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. You cannot change a check run conclusion to `stale`, only GitHub can set this."},"completed_at":{"type":"string","description":"The time the check completed. This is a timestamp in [ISO 8601](https:\\/\\/en.wikipedia.org\\/wiki\\/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.","format":"date-time"},"output":{"required":["summary"],"type":"object","properties":{"title":{"type":"string","description":"**Required**."},"summary":{"maxLength":65535,"type":"string","description":"Can contain Markdown."},"text":{"maxLength":65535,"type":"string","description":"Can contain Markdown."},"annotations":{"maxItems":50,"type":"array","items":{"required":["path","start_line","end_line","annotation_level","message"],"type":"object","properties":{"path":{"type":"string","description":"The path of the file to add an annotation to. For example, `assets\\/css\\/main.css`."},"start_line":{"type":"integer","description":"The start line of the annotation. Line numbers start at 1."},"end_line":{"type":"integer","description":"The end line of the annotation."},"start_column":{"type":"integer","description":"The start column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values. Column numbers start at 1."},"end_column":{"type":"integer","description":"The end column of the annotation. Annotations only support `start_column` and `end_column` on the same line. Omit this parameter if `start_line` and `end_line` have different values."},"annotation_level":{"enum":["notice","warning","failure"],"type":"string","description":"The level of the annotation."},"message":{"type":"string","description":"A short description of the feedback for these lines of code. The maximum size is 64 KB."},"title":{"type":"string","description":"The title that represents the annotation. The maximum size is 255 characters."},"raw_details":{"type":"string","description":"Details about this annotation. The maximum size is 64 KB."}}},"description":"Adds information from your analysis to specific lines of code. Annotations are visible in GitHub\'s pull request UI. Annotations are visible in GitHub\'s pull request UI. The Checks API limits the number of annotations to a maximum of 50 per API request. To create more than 50 annotations, you have to make multiple requests to the [Update a check run](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/checks\\/runs#update-a-check-run) endpoint. Each time you update the check run, annotations are appended to the list of annotations that already exist for the check run. GitHub Actions are limited to 10 warning annotations and 10 error annotations per step. For details about annotations in the UI, see \\"[About status checks](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/articles\\/about-status-checks#checks)\\"."},"images":{"type":"array","items":{"required":["alt","image_url"],"type":"object","properties":{"alt":{"type":"string","description":"The alternative text for the image."},"image_url":{"type":"string","description":"The full URL of the image."},"caption":{"type":"string","description":"A short image description."}}},"description":"Adds images to the output displayed in the GitHub pull request UI."}},"description":"Check runs can accept a variety of data in the `output` object, including a `title` and `summary` and can optionally provide descriptive details about the run."},"actions":{"maxItems":3,"type":"array","items":{"required":["label","description","identifier"],"type":"object","properties":{"label":{"maxLength":20,"type":"string","description":"The text to be displayed on a button in the web UI. The maximum size is 20 characters."},"description":{"maxLength":40,"type":"string","description":"A short explanation of what this action would do. The maximum size is 40 characters."},"identifier":{"maxLength":20,"type":"string","description":"A reference for the action on the integrator\'s system. The maximum size is 20 characters."}}},"description":"Possible further actions the integrator can perform, which a user may trigger. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see \\"[Check runs and requested actions](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/guides\\/using-the-rest-api-to-interact-with-checks#check-runs-and-requested-actions).\\""}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"name":"generated","details_url":"generated","external_id":"generated","started_at":"1970-01-01T00:00:00+00:00","status":"completed","conclusion":"timed_out","completed_at":"1970-01-01T00:00:00+00:00","output":{"title":"generated","summary":"generated","text":"generated","annotations":[{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"},{"path":"generated","start_line":10,"end_line":8,"start_column":12,"end_column":10,"annotation_level":"failure","message":"generated","title":"generated","raw_details":"generated"}],"images":[{"alt":"generated","image_url":"generated","caption":"generated"},{"alt":"generated","image_url":"generated","caption":"generated"}]},"actions":[{"label":"generated","description":"generated","identifier":"generated"},{"label":"generated","description":"generated","identifier":"generated"},{"label":"generated","description":"generated","identifier":"generated"}]}'; @@ -24,7 +24,7 @@ * *Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. You cannot change a check run conclusion to `stale`, only GitHub can set this. * completedAt: The time the check completed. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. * output: Check runs can accept a variety of data in the `output` object, including a `title` and `summary` and can optionally provide descriptive details about the run. - * actions: Possible further actions the integrator can perform, which a user may trigger. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. See the [`actions` object](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#actions-object) description. To learn more about check runs and requested actions, see "[Check runs and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#check-runs-and-requested-actions)." + * actions: Possible further actions the integrator can perform, which a user may trigger. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see "[Check runs and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-the-rest-api-to-interact-with-checks#check-runs-and-requested-actions)." */ public function __construct(public string|null $name, #[MapFrom('details_url')] public string|null $detailsUrl, #[MapFrom('external_id')] diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Codespaces/CreateOrUpdateSecretForAuthenticatedUser/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Codespaces/CreateOrUpdateSecretForAuthenticatedUser/Request/ApplicationJson.php index 5277e7dca2e..b87ad3a8360 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Codespaces/CreateOrUpdateSecretForAuthenticatedUser/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Codespaces/CreateOrUpdateSecretForAuthenticatedUser/Request/ApplicationJson.php @@ -8,13 +8,13 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"required":["key_id"],"type":"object","properties":{"encrypted_value":{"pattern":"^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=|[A-Za-z0-9+\\/]{4})$","type":"string","description":"Value for your secret, encrypted with [LibSodium](https:\\/\\/libsodium.gitbook.io\\/doc\\/bindings_for_other_languages) using the public key retrieved from the [Get the public key for the authenticated user](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/codespaces#get-the-public-key-for-the-authenticated-user) endpoint."},"key_id":{"type":"string","description":"ID of the key you used to encrypt the secret."},"selected_repository_ids":{"type":"array","items":{"anyOf":[{"type":"integer"},{"type":"string"}]},"description":"An array of repository ids that can access the user secret. You can manage the list of selected repositories using the [List selected repositories for a user secret](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#list-selected-repositories-for-a-user-secret), [Set selected repositories for a user secret](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#set-selected-repositories-for-a-user-secret), and [Remove a selected repository from a user secret](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#remove-a-selected-repository-from-a-user-secret) endpoints."}}}'; + public const SCHEMA_JSON = '{"required":["key_id"],"type":"object","properties":{"encrypted_value":{"pattern":"^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=|[A-Za-z0-9+\\/]{4})$","type":"string","description":"Value for your secret, encrypted with [LibSodium](https:\\/\\/libsodium.gitbook.io\\/doc\\/bindings_for_other_languages) using the public key retrieved from the [Get the public key for the authenticated user](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#get-public-key-for-the-authenticated-user) endpoint."},"key_id":{"type":"string","description":"ID of the key you used to encrypt the secret."},"selected_repository_ids":{"type":"array","items":{"anyOf":[{"type":"integer"},{"type":"string"}]},"description":"An array of repository ids that can access the user secret. You can manage the list of selected repositories using the [List selected repositories for a user secret](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#list-selected-repositories-for-a-user-secret), [Set selected repositories for a user secret](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#set-selected-repositories-for-a-user-secret), and [Remove a selected repository from a user secret](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/codespaces\\/secrets#remove-a-selected-repository-from-a-user-secret) endpoints."}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"encrypted_value":":zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzz:zzzzzzzz","key_id":"generated","selected_repository_ids":[null,null]}'; /** - * encryptedValue: Value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get the public key for the authenticated user](https://docs.github.com/enterprise-cloud@latest//rest/reference/codespaces#get-the-public-key-for-the-authenticated-user) endpoint. + * encryptedValue: Value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get the public key for the authenticated user](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-public-key-for-the-authenticated-user) endpoint. * keyId: ID of the key you used to encrypt the secret. * selectedRepositoryIds: An array of repository ids that can access the user secret. You can manage the list of selected repositories using the [List selected repositories for a user secret](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret), [Set selected repositories for a user secret](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret), and [Remove a selected repository from a user secret](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret) endpoints. */ diff --git a/clients/GitHubEnterpriseCloud/src/Schema/GlobalAdvisory.php b/clients/GitHubEnterpriseCloud/src/Schema/GlobalAdvisory.php index 14573334250..9c431b52a19 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/GlobalAdvisory.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/GlobalAdvisory.php @@ -9,7 +9,7 @@ final readonly class GlobalAdvisory { - public const SCHEMA_JSON = '{"required":["ghsa_id","cve_id","url","html_url","repository_advisory_url","summary","description","type","severity","source_code_location","identifiers","references","published_at","updated_at","github_reviewed_at","nvd_published_at","withdrawn_at","vulnerabilities","cvss","cwes","credits"],"type":"object","properties":{"ghsa_id":{"type":"string","description":"The GitHub Security Advisory ID.","readOnly":true},"cve_id":{"type":["string","null"],"description":"The Common Vulnerabilities and Exposures (CVE) ID.","readOnly":true},"url":{"type":"string","description":"The API URL for the advisory.","readOnly":true},"html_url":{"type":"string","description":"The URL for the advisory.","format":"uri","readOnly":true},"repository_advisory_url":{"type":["string","null"],"description":"The API URL for the repository advisory.","format":"uri","readOnly":true},"summary":{"maxLength":1024,"type":"string","description":"A short summary of the advisory."},"description":{"maxLength":65535,"type":["string","null"],"description":"A detailed description of what the advisory entails."},"type":{"enum":["reviewed","unreviewed","malware"],"type":"string","description":"The type of advisory.","readOnly":true},"severity":{"enum":["critical","high","medium","low","unknown"],"type":"string","description":"The severity of the advisory."},"source_code_location":{"type":["string","null"],"description":"The URL of the advisory\'s source code.","format":"uri"},"identifiers":{"type":["array","null"],"items":{"required":["type","value"],"type":"object","properties":{"type":{"enum":["CVE","GHSA"],"type":"string","description":"The type of identifier."},"value":{"type":"string","description":"The identifier value."}}},"readOnly":true},"references":{"type":["array","null"],"items":{"type":"string","description":"URLs with more information regarding the advisory."}},"published_at":{"type":"string","description":"The date and time of when the advisory was published, in ISO 8601 format.","format":"date-time","readOnly":true},"updated_at":{"type":"string","description":"The date and time of when the advisory was last updated, in ISO 8601 format.","format":"date-time","readOnly":true},"github_reviewed_at":{"type":["string","null"],"description":"The date and time of when the advisory was reviewed by GitHub, in ISO 8601 format.","format":"date-time","readOnly":true},"nvd_published_at":{"type":["string","null"],"description":"The date and time of when the advisory was published in the National Vulnerability Database, in ISO 8601 format.","format":"date-time","readOnly":true},"withdrawn_at":{"type":["string","null"],"description":"The date and time of when the advisory was withdrawn, in ISO 8601 format.","format":"date-time","readOnly":true},"vulnerabilities":{"type":["array","null"],"items":{"required":["package","vulnerable_version_range","first_patched_version","vulnerable_functions"],"type":"object","properties":{"package":{"required":["ecosystem","name"],"type":["object","null"],"properties":{"ecosystem":{"enum":["rubygems","npm","pip","maven","nuget","composer","go","rust","erlang","actions","pub","other","swift"],"type":"string","description":"The package\'s language or package management ecosystem."},"name":{"type":["string","null"],"description":"The unique package name within its ecosystem."}},"description":"The name of the package affected by the vulnerability."},"vulnerable_version_range":{"type":["string","null"],"description":"The range of the package versions affected by the vulnerability."},"first_patched_version":{"type":["string","null"],"description":"The package version that resolve the vulnerability."},"vulnerable_functions":{"type":["array","null"],"items":{"type":"string"},"description":"The functions in the package that are affected by the vulnerability.","readOnly":true}}},"description":"The products and respective version ranges affected by the advisory."},"cvss":{"required":["vector_string","score"],"type":["object","null"],"properties":{"vector_string":{"type":["string","null"],"description":"The CVSS vector."},"score":{"maximum":10,"minimum":0,"type":["number","null"],"description":"The CVSS score.","readOnly":true}}},"cwes":{"type":["array","null"],"items":{"required":["cwe_id","name"],"type":"object","properties":{"cwe_id":{"type":"string","description":"The Common Weakness Enumeration (CWE) identifier."},"name":{"type":"string","description":"The name of the CWE.","readOnly":true}}}},"credits":{"type":["array","null"],"items":{"required":["user","type"],"type":"object","properties":{"user":{"title":"Simple User","required":["avatar_url","events_url","followers_url","following_url","gists_url","gravatar_id","html_url","id","node_id","login","organizations_url","received_events_url","repos_url","site_admin","starred_url","subscriptions_url","type","url"],"type":"object","properties":{"name":{"type":["string","null"]},"email":{"type":["string","null"]},"login":{"type":"string","examples":["octocat"]},"id":{"type":"integer","examples":[1]},"node_id":{"type":"string","examples":["MDQ6VXNlcjE="]},"avatar_url":{"type":"string","format":"uri","examples":["https:\\/\\/github.com\\/images\\/error\\/octocat_happy.gif"]},"gravatar_id":{"type":["string","null"],"examples":["41d064eb2195891e12d0413f63227ea7"]},"url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat"]},"html_url":{"type":"string","format":"uri","examples":["https:\\/\\/github.com\\/octocat"]},"followers_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/followers"]},"following_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/following{\\/other_user}"]},"gists_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/gists{\\/gist_id}"]},"starred_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/starred{\\/owner}{\\/repo}"]},"subscriptions_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/subscriptions"]},"organizations_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/orgs"]},"repos_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/repos"]},"events_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/events{\\/privacy}"]},"received_events_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/received_events"]},"type":{"type":"string","examples":["User"]},"site_admin":{"type":"boolean"},"starred_at":{"type":"string","examples":["\\"2020-07-09T00:17:55Z\\""]}},"description":"A GitHub user."},"type":{"enum":["analyst","finder","reporter","coordinator","remediation_developer","remediation_reviewer","remediation_verifier","tool","sponsor","other"],"type":"string","description":"The type of credit the user is receiving."}}},"readOnly":true}},"description":"A GitHub Security Advisory.","additionalProperties":false}'; + public const SCHEMA_JSON = '{"required":["ghsa_id","cve_id","url","html_url","repository_advisory_url","summary","description","type","severity","source_code_location","identifiers","references","published_at","updated_at","github_reviewed_at","nvd_published_at","withdrawn_at","vulnerabilities","cvss","cwes","credits"],"type":"object","properties":{"ghsa_id":{"type":"string","description":"The GitHub Security Advisory ID.","readOnly":true},"cve_id":{"type":["string","null"],"description":"The Common Vulnerabilities and Exposures (CVE) ID.","readOnly":true},"url":{"type":"string","description":"The API URL for the advisory.","readOnly":true},"html_url":{"type":"string","description":"The URL for the advisory.","format":"uri","readOnly":true},"repository_advisory_url":{"type":["string","null"],"description":"The API URL for the repository advisory.","format":"uri","readOnly":true},"summary":{"maxLength":1024,"type":"string","description":"A short summary of the advisory."},"description":{"maxLength":65535,"type":["string","null"],"description":"A detailed description of what the advisory entails."},"type":{"enum":["reviewed","unreviewed","malware"],"type":"string","description":"The type of advisory.","readOnly":true},"severity":{"enum":["critical","high","medium","low","unknown"],"type":"string","description":"The severity of the advisory."},"source_code_location":{"type":["string","null"],"description":"The URL of the advisory\'s source code.","format":"uri"},"identifiers":{"type":["array","null"],"items":{"required":["type","value"],"type":"object","properties":{"type":{"enum":["CVE","GHSA"],"type":"string","description":"The type of identifier."},"value":{"type":"string","description":"The identifier value."}}},"readOnly":true},"references":{"type":["array","null"],"items":{"type":"string","description":"URLs with more information regarding the advisory."}},"published_at":{"type":"string","description":"The date and time of when the advisory was published, in ISO 8601 format.","format":"date-time","readOnly":true},"updated_at":{"type":"string","description":"The date and time of when the advisory was last updated, in ISO 8601 format.","format":"date-time","readOnly":true},"github_reviewed_at":{"type":["string","null"],"description":"The date and time of when the advisory was reviewed by GitHub, in ISO 8601 format.","format":"date-time","readOnly":true},"nvd_published_at":{"type":["string","null"],"description":"The date and time when the advisory was published in the National Vulnerability Database, in ISO 8601 format.\\nThis field is only populated when the advisory is imported from the National Vulnerability Database.","format":"date-time","readOnly":true},"withdrawn_at":{"type":["string","null"],"description":"The date and time of when the advisory was withdrawn, in ISO 8601 format.","format":"date-time","readOnly":true},"vulnerabilities":{"type":["array","null"],"items":{"required":["package","vulnerable_version_range","first_patched_version","vulnerable_functions"],"type":"object","properties":{"package":{"required":["ecosystem","name"],"type":["object","null"],"properties":{"ecosystem":{"enum":["rubygems","npm","pip","maven","nuget","composer","go","rust","erlang","actions","pub","other","swift"],"type":"string","description":"The package\'s language or package management ecosystem."},"name":{"type":["string","null"],"description":"The unique package name within its ecosystem."}},"description":"The name of the package affected by the vulnerability."},"vulnerable_version_range":{"type":["string","null"],"description":"The range of the package versions affected by the vulnerability."},"first_patched_version":{"type":["string","null"],"description":"The package version that resolve the vulnerability."},"vulnerable_functions":{"type":["array","null"],"items":{"type":"string"},"description":"The functions in the package that are affected by the vulnerability.","readOnly":true}}},"description":"The products and respective version ranges affected by the advisory."},"cvss":{"required":["vector_string","score"],"type":["object","null"],"properties":{"vector_string":{"type":["string","null"],"description":"The CVSS vector."},"score":{"maximum":10,"minimum":0,"type":["number","null"],"description":"The CVSS score.","readOnly":true}}},"cwes":{"type":["array","null"],"items":{"required":["cwe_id","name"],"type":"object","properties":{"cwe_id":{"type":"string","description":"The Common Weakness Enumeration (CWE) identifier."},"name":{"type":"string","description":"The name of the CWE.","readOnly":true}}}},"credits":{"type":["array","null"],"items":{"required":["user","type"],"type":"object","properties":{"user":{"title":"Simple User","required":["avatar_url","events_url","followers_url","following_url","gists_url","gravatar_id","html_url","id","node_id","login","organizations_url","received_events_url","repos_url","site_admin","starred_url","subscriptions_url","type","url"],"type":"object","properties":{"name":{"type":["string","null"]},"email":{"type":["string","null"]},"login":{"type":"string","examples":["octocat"]},"id":{"type":"integer","examples":[1]},"node_id":{"type":"string","examples":["MDQ6VXNlcjE="]},"avatar_url":{"type":"string","format":"uri","examples":["https:\\/\\/github.com\\/images\\/error\\/octocat_happy.gif"]},"gravatar_id":{"type":["string","null"],"examples":["41d064eb2195891e12d0413f63227ea7"]},"url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat"]},"html_url":{"type":"string","format":"uri","examples":["https:\\/\\/github.com\\/octocat"]},"followers_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/followers"]},"following_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/following{\\/other_user}"]},"gists_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/gists{\\/gist_id}"]},"starred_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/starred{\\/owner}{\\/repo}"]},"subscriptions_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/subscriptions"]},"organizations_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/orgs"]},"repos_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/repos"]},"events_url":{"type":"string","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/events{\\/privacy}"]},"received_events_url":{"type":"string","format":"uri","examples":["https:\\/\\/api.github.com\\/users\\/octocat\\/received_events"]},"type":{"type":"string","examples":["User"]},"site_admin":{"type":"boolean"},"starred_at":{"type":"string","examples":["\\"2020-07-09T00:17:55Z\\""]}},"description":"A GitHub user."},"type":{"enum":["analyst","finder","reporter","coordinator","remediation_developer","remediation_reviewer","remediation_verifier","tool","sponsor","other"],"type":"string","description":"The type of credit the user is receiving."}}},"readOnly":true}},"description":"A GitHub Security Advisory.","additionalProperties":false}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = 'A GitHub Security Advisory.'; public const SCHEMA_EXAMPLE_DATA = '{"ghsa_id":"generated","cve_id":"generated","url":"generated","html_url":"https:\\/\\/example.com\\/","repository_advisory_url":"https:\\/\\/example.com\\/","summary":"generated","description":"generated","type":"malware","severity":"unknown","source_code_location":"https:\\/\\/example.com\\/","identifiers":null,"references":null,"published_at":"1970-01-01T00:00:00+00:00","updated_at":"1970-01-01T00:00:00+00:00","github_reviewed_at":"1970-01-01T00:00:00+00:00","nvd_published_at":"1970-01-01T00:00:00+00:00","withdrawn_at":"1970-01-01T00:00:00+00:00","vulnerabilities":null,"cvss":{"vector_string":"generated","score":0.5},"cwes":null,"credits":null}'; @@ -28,7 +28,8 @@ * publishedAt: The date and time of when the advisory was published, in ISO 8601 format. * updatedAt: The date and time of when the advisory was last updated, in ISO 8601 format. * githubReviewedAt: The date and time of when the advisory was reviewed by GitHub, in ISO 8601 format. - * nvdPublishedAt: The date and time of when the advisory was published in the National Vulnerability Database, in ISO 8601 format. + * nvdPublishedAt: The date and time when the advisory was published in the National Vulnerability Database, in ISO 8601 format. + This field is only populated when the advisory is imported from the National Vulnerability Database. * withdrawnAt: The date and time of when the advisory was withdrawn, in ISO 8601 format. * vulnerabilities: The products and respective version ranges affected by the advisory. */ diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson.php index a2c9ada8f41..ff0aceace33 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson.php @@ -8,14 +8,14 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"required":["name","config"],"type":"object","properties":{"name":{"type":"string","description":"Must be passed as \\"web\\"."},"config":{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"username":{"type":"string","examples":["\\"kdaigle\\""]},"password":{"type":"string","examples":["\\"password\\""]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/orgs#create-hook-config-params)."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for. Set to `[\\"*\\"]` to receive all possible events.","default":["push"]},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true}}}'; + public const SCHEMA_JSON = '{"required":["name","config"],"type":"object","properties":{"name":{"type":"string","description":"Must be passed as \\"web\\"."},"config":{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"username":{"type":"string","examples":["\\"kdaigle\\""]},"password":{"type":"string","examples":["\\"password\\""]}},"description":"Key\\/value pairs to provide settings for this webhook."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for. Set to `[\\"*\\"]` to receive all possible events.","default":["push"]},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"name":"generated","config":{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null,"username":"\\"kdaigle\\"","password":"\\"password\\""},"events":["generated","generated"],"active":false}'; /** * name: Must be passed as "web". - * config: Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#create-hook-config-params). + * config: Key/value pairs to provide settings for this webhook. * events: Determines what [events](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads) the hook is triggered for. Set to `["*"]` to receive all possible events. * active: Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications. */ diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson/Config.php b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson/Config.php index ddac7508b68..ab3f67e63f1 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson/Config.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/CreateWebhook/Request/ApplicationJson/Config.php @@ -8,9 +8,9 @@ final readonly class Config { - public const SCHEMA_JSON = '{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"username":{"type":"string","examples":["\\"kdaigle\\""]},"password":{"type":"string","examples":["\\"password\\""]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/orgs#create-hook-config-params)."}'; + public const SCHEMA_JSON = '{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"username":{"type":"string","examples":["\\"kdaigle\\""]},"password":{"type":"string","examples":["\\"password\\""]}},"description":"Key\\/value pairs to provide settings for this webhook."}'; public const SCHEMA_TITLE = ''; - public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#create-hook-config-params).'; + public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook.'; public const SCHEMA_EXAMPLE_DATA = '{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null,"username":"\\"kdaigle\\"","password":"\\"password\\""}'; /** diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson.php index b1438cec791..a455c1560dd 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson.php @@ -8,13 +8,13 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"type":"object","properties":{"config":{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/orgs#update-hook-config-params)."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for.","default":["push"]},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true},"name":{"type":"string","examples":["\\"web\\""]}}}'; + public const SCHEMA_JSON = '{"type":"object","properties":{"config":{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]}},"description":"Key\\/value pairs to provide settings for this webhook."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for.","default":["push"]},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true},"name":{"type":"string","examples":["\\"web\\""]}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"config":{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null},"events":["generated","generated"],"active":false,"name":"\\"web\\""}'; /** - * config: Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#update-hook-config-params). + * config: Key/value pairs to provide settings for this webhook. * events: Determines what [events](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads) the hook is triggered for. * active: Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications. */ diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson/Config.php b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson/Config.php index 0cbc2654807..bf6b92dc417 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson/Config.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Orgs/UpdateWebhook/Request/ApplicationJson/Config.php @@ -8,9 +8,9 @@ final readonly class Config { - public const SCHEMA_JSON = '{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/orgs#update-hook-config-params)."}'; + public const SCHEMA_JSON = '{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]}},"description":"Key\\/value pairs to provide settings for this webhook."}'; public const SCHEMA_TITLE = ''; - public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#update-hook-config-params).'; + public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook.'; public const SCHEMA_EXAMPLE_DATA = '{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null}'; /** diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Pulls/UpdateBranch/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Pulls/UpdateBranch/Request/ApplicationJson.php index 3d595bc0f94..cd58b00649b 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Pulls/UpdateBranch/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Pulls/UpdateBranch/Request/ApplicationJson.php @@ -8,13 +8,13 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"type":["object","null"],"properties":{"expected_head_sha":{"type":"string","description":"The expected SHA of the pull request\'s HEAD ref. This is the most recent commit on the pull request\'s branch. If the expected SHA does not match the pull request\'s HEAD, you will receive a `422 Unprocessable Entity` status. You can use the \\"[List commits](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/repos#list-commits)\\" endpoint to find the most recent commit SHA. Default: SHA of the pull request\'s current HEAD ref."}}}'; + public const SCHEMA_JSON = '{"type":["object","null"],"properties":{"expected_head_sha":{"type":"string","description":"The expected SHA of the pull request\'s HEAD ref. This is the most recent commit on the pull request\'s branch. If the expected SHA does not match the pull request\'s HEAD, you will receive a `422 Unprocessable Entity` status. You can use the \\"[List commits](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/commits\\/commits#list-commits)\\" endpoint to find the most recent commit SHA. Default: SHA of the pull request\'s current HEAD ref."}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"expected_head_sha":"generated"}'; /** - * expectedHeadSha: The expected SHA of the pull request's HEAD ref. This is the most recent commit on the pull request's branch. If the expected SHA does not match the pull request's HEAD, you will receive a `422 Unprocessable Entity` status. You can use the "[List commits](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#list-commits)" endpoint to find the most recent commit SHA. Default: SHA of the pull request's current HEAD ref. + * expectedHeadSha: The expected SHA of the pull request's HEAD ref. This is the most recent commit on the pull request's branch. If the expected SHA does not match the pull request's HEAD, you will receive a `422 Unprocessable Entity` status. You can use the "[List commits](https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits)" endpoint to find the most recent commit SHA. Default: SHA of the pull request's current HEAD ref. */ public function __construct(#[MapFrom('expected_head_sha')] public string|null $expectedHeadSha,) diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson.php index f64821716bd..0ac8d1093cb 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson.php @@ -8,14 +8,14 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"type":["object","null"],"properties":{"name":{"type":"string","description":"Use `web` to create a webhook. Default: `web`. This parameter only accepts the value `web`."},"config":{"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"token":{"type":"string","examples":["\\"abc\\""]},"digest":{"type":"string","examples":["\\"sha256\\""]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/repos#create-hook-config-params)."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for.","default":["push"]},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true}},"additionalProperties":false}'; + public const SCHEMA_JSON = '{"type":["object","null"],"properties":{"name":{"type":"string","description":"Use `web` to create a webhook. Default: `web`. This parameter only accepts the value `web`."},"config":{"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"token":{"type":"string","examples":["\\"abc\\""]},"digest":{"type":"string","examples":["\\"sha256\\""]}},"description":"Key\\/value pairs to provide settings for this webhook."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for.","default":["push"]},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true}},"additionalProperties":false}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"name":"generated","config":{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null,"token":"\\"abc\\"","digest":"\\"sha256\\""},"events":["generated","generated"],"active":false}'; /** * name: Use `web` to create a webhook. Default: `web`. This parameter only accepts the value `web`. - * config: Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#create-hook-config-params). + * config: Key/value pairs to provide settings for this webhook. * events: Determines what [events](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads) the hook is triggered for. * active: Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications. */ diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson/Config.php b/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson/Config.php index 951b405e456..5cae2a6443f 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson/Config.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Repos/CreateWebhook/Request/ApplicationJson/Config.php @@ -8,9 +8,9 @@ final readonly class Config { - public const SCHEMA_JSON = '{"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"token":{"type":"string","examples":["\\"abc\\""]},"digest":{"type":"string","examples":["\\"sha256\\""]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/repos#create-hook-config-params)."}'; + public const SCHEMA_JSON = '{"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"token":{"type":"string","examples":["\\"abc\\""]},"digest":{"type":"string","examples":["\\"sha256\\""]}},"description":"Key\\/value pairs to provide settings for this webhook."}'; public const SCHEMA_TITLE = ''; - public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#create-hook-config-params).'; + public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook.'; public const SCHEMA_EXAMPLE_DATA = '{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null,"token":"\\"abc\\"","digest":"\\"sha256\\""}'; /** diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson.php b/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson.php index 29329751311..7c56d0fb1ab 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson.php @@ -9,13 +9,13 @@ final readonly class ApplicationJson { - public const SCHEMA_JSON = '{"type":"object","properties":{"config":{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"address":{"type":"string","examples":["\\"bar@example.com\\""]},"room":{"type":"string","examples":["\\"The Serious Room\\""]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/repos#create-hook-config-params)."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for. This replaces the entire array of events.","default":["push"]},"add_events":{"type":"array","items":{"type":"string"},"description":"Determines a list of events to be added to the list of events that the Hook triggers for."},"remove_events":{"type":"array","items":{"type":"string"},"description":"Determines a list of events to be removed from the list of events that the Hook triggers for."},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true}}}'; + public const SCHEMA_JSON = '{"type":"object","properties":{"config":{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"address":{"type":"string","examples":["\\"bar@example.com\\""]},"room":{"type":"string","examples":["\\"The Serious Room\\""]}},"description":"Key\\/value pairs to provide settings for this webhook."},"events":{"type":"array","items":{"type":"string"},"description":"Determines what [events](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads) the hook is triggered for. This replaces the entire array of events.","default":["push"]},"add_events":{"type":"array","items":{"type":"string"},"description":"Determines a list of events to be added to the list of events that the Hook triggers for."},"remove_events":{"type":"array","items":{"type":"string"},"description":"Determines a list of events to be removed from the list of events that the Hook triggers for."},"active":{"type":"boolean","description":"Determines if notifications are sent when the webhook is triggered. Set to `true` to send notifications.","default":true}}}'; public const SCHEMA_TITLE = ''; public const SCHEMA_DESCRIPTION = ''; public const SCHEMA_EXAMPLE_DATA = '{"config":{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null,"address":"\\"bar@example.com\\"","room":"\\"The Serious Room\\""},"events":["generated","generated"],"add_events":["generated","generated"],"remove_events":["generated","generated"],"active":false}'; /** - * config: Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#create-hook-config-params). + * config: Key/value pairs to provide settings for this webhook. * events: Determines what [events](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads) the hook is triggered for. This replaces the entire array of events. * addEvents: Determines a list of events to be added to the list of events that the Hook triggers for. * removeEvents: Determines a list of events to be removed from the list of events that the Hook triggers for. diff --git a/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson/Config.php b/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson/Config.php index 038d4a21ae5..3fa7d28871b 100644 --- a/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson/Config.php +++ b/clients/GitHubEnterpriseCloud/src/Schema/Repos/UpdateWebhook/Request/ApplicationJson/Config.php @@ -8,9 +8,9 @@ final readonly class Config { - public const SCHEMA_JSON = '{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"address":{"type":"string","examples":["\\"bar@example.com\\""]},"room":{"type":"string","examples":["\\"The Serious Room\\""]}},"description":"Key\\/value pairs to provide settings for this webhook. [These are defined below](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/rest\\/reference\\/repos#create-hook-config-params)."}'; + public const SCHEMA_JSON = '{"required":["url"],"type":"object","properties":{"url":{"type":"string","description":"The URL to which the payloads will be delivered.","format":"uri","examples":["https:\\/\\/example.com\\/webhook"]},"content_type":{"type":"string","description":"The media type used to serialize the payloads. Supported values include `json` and `form`. The default is `form`.","examples":["\\"json\\""]},"secret":{"type":"string","description":"If provided, the `secret` will be used as the `key` to generate the HMAC hex digest value for [delivery signature headers](https:\\/\\/docs.github.com\\/enterprise-cloud@latest\\/\\/webhooks\\/event-payloads\\/#delivery-headers).","examples":["\\"********\\""]},"insecure_ssl":{"oneOf":[{"type":"string","description":"Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`. **We strongly recommend not setting this to `1` as you are subject to man-in-the-middle and other attacks.**","examples":["\\"0\\""]},{"type":"number"}]},"address":{"type":"string","examples":["\\"bar@example.com\\""]},"room":{"type":"string","examples":["\\"The Serious Room\\""]}},"description":"Key\\/value pairs to provide settings for this webhook."}'; public const SCHEMA_TITLE = ''; - public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook. [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#create-hook-config-params).'; + public const SCHEMA_DESCRIPTION = 'Key/value pairs to provide settings for this webhook.'; public const SCHEMA_EXAMPLE_DATA = '{"url":"https:\\/\\/example.com\\/webhook","content_type":"\\"json\\"","secret":"\\"********\\"","insecure_ssl":null,"address":"\\"bar@example.com\\"","room":"\\"The Serious Room\\""}'; /** diff --git a/clients/GitHubEnterpriseCloud/tests/Operation/Repos/DisablePrivateVulnerabilityReportingTest.php b/clients/GitHubEnterpriseCloud/tests/Operation/Repos/DisablePrivateVulnerabilityReportingTest.php new file mode 100644 index 00000000000..588da82c90b --- /dev/null +++ b/clients/GitHubEnterpriseCloud/tests/Operation/Repos/DisablePrivateVulnerabilityReportingTest.php @@ -0,0 +1,126 @@ + 'application/json'], Schema\BasicError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('DELETE', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = $client->call(Operation\Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH, (static function (array $data): array { + $data['owner'] = 'generated'; + $data['repo'] = 'generated'; + + return $data; + })([])); + } + + /** @test */ + public function operations_httpCode_422_responseContentType_application_json_zero(): void + { + self::expectException(ErrorSchemas\BasicError::class); + $response = new Response(422, ['Content-Type' => 'application/json'], Schema\BasicError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('DELETE', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = await($client->operations()->repos()->disablePrivateVulnerabilityReporting('generated', 'generated')); + } + + /** @test */ + public function call_httpCode_422_responseContentType_application_scim_json_zero(): void + { + self::expectException(ErrorSchemas\ScimError::class); + $response = new Response(422, ['Content-Type' => 'application/scim+json'], Schema\ScimError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('DELETE', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = $client->call(Operation\Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH, (static function (array $data): array { + $data['owner'] = 'generated'; + $data['repo'] = 'generated'; + + return $data; + })([])); + } + + /** @test */ + public function operations_httpCode_422_responseContentType_application_scim_json_zero(): void + { + self::expectException(ErrorSchemas\ScimError::class); + $response = new Response(422, ['Content-Type' => 'application/scim+json'], Schema\ScimError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('DELETE', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = await($client->operations()->repos()->disablePrivateVulnerabilityReporting('generated', 'generated')); + } + + /** @test */ + public function call_httpCode_204_empty(): void + { + $response = new Response(204, []); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('DELETE', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = $client->call(Operation\Repos\DisablePrivateVulnerabilityReporting::OPERATION_MATCH, (static function (array $data): array { + $data['owner'] = 'generated'; + $data['repo'] = 'generated'; + + return $data; + })([])); + } + + /** @test */ + public function operations_httpCode_204_empty(): void + { + $response = new Response(204, []); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('DELETE', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = await($client->operations()->repos()->disablePrivateVulnerabilityReporting('generated', 'generated')); + self::assertArrayHasKey('code', $result); + self::assertSame(204, $result['code']); + } +} diff --git a/clients/GitHubEnterpriseCloud/tests/Operation/Repos/EnablePrivateVulnerabilityReportingTest.php b/clients/GitHubEnterpriseCloud/tests/Operation/Repos/EnablePrivateVulnerabilityReportingTest.php new file mode 100644 index 00000000000..38f4b5cd74e --- /dev/null +++ b/clients/GitHubEnterpriseCloud/tests/Operation/Repos/EnablePrivateVulnerabilityReportingTest.php @@ -0,0 +1,126 @@ + 'application/json'], Schema\BasicError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('PUT', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = $client->call(Operation\Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH, (static function (array $data): array { + $data['owner'] = 'generated'; + $data['repo'] = 'generated'; + + return $data; + })([])); + } + + /** @test */ + public function operations_httpCode_422_responseContentType_application_json_zero(): void + { + self::expectException(ErrorSchemas\BasicError::class); + $response = new Response(422, ['Content-Type' => 'application/json'], Schema\BasicError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('PUT', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = await($client->operations()->repos()->enablePrivateVulnerabilityReporting('generated', 'generated')); + } + + /** @test */ + public function call_httpCode_422_responseContentType_application_scim_json_zero(): void + { + self::expectException(ErrorSchemas\ScimError::class); + $response = new Response(422, ['Content-Type' => 'application/scim+json'], Schema\ScimError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('PUT', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = $client->call(Operation\Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH, (static function (array $data): array { + $data['owner'] = 'generated'; + $data['repo'] = 'generated'; + + return $data; + })([])); + } + + /** @test */ + public function operations_httpCode_422_responseContentType_application_scim_json_zero(): void + { + self::expectException(ErrorSchemas\ScimError::class); + $response = new Response(422, ['Content-Type' => 'application/scim+json'], Schema\ScimError::SCHEMA_EXAMPLE_DATA); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('PUT', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = await($client->operations()->repos()->enablePrivateVulnerabilityReporting('generated', 'generated')); + } + + /** @test */ + public function call_httpCode_204_empty(): void + { + $response = new Response(204, []); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('PUT', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = $client->call(Operation\Repos\EnablePrivateVulnerabilityReporting::OPERATION_MATCH, (static function (array $data): array { + $data['owner'] = 'generated'; + $data['repo'] = 'generated'; + + return $data; + })([])); + } + + /** @test */ + public function operations_httpCode_204_empty(): void + { + $response = new Response(204, []); + $auth = $this->prophesize(AuthenticationInterface::class); + $auth->authHeader(Argument::any())->willReturn('Bearer beer')->shouldBeCalled(); + $browser = $this->prophesize(Browser::class); + $browser->withBase(Argument::any())->willReturn($browser->reveal()); + $browser->withFollowRedirects(Argument::any())->willReturn($browser->reveal()); + $browser->request('PUT', '/repos/generated/generated/private-vulnerability-reporting', Argument::type('array'), Argument::any())->willReturn(resolve($response))->shouldBeCalled(); + $client = new Client($auth->reveal(), $browser->reveal()); + $result = await($client->operations()->repos()->enablePrivateVulnerabilityReporting('generated', 'generated')); + self::assertArrayHasKey('code', $result); + self::assertSame(204, $result['code']); + } +} diff --git a/etc/specs/GitHubEnterpriseCloud/current.spec.yaml b/etc/specs/GitHubEnterpriseCloud/current.spec.yaml index 6e7a54d6c8c..ae9470ee995 100644 --- a/etc/specs/GitHubEnterpriseCloud/current.spec.yaml +++ b/etc/specs/GitHubEnterpriseCloud/current.spec.yaml @@ -27,10 +27,6 @@ tags: description: Retrieve code scanning alerts from a repository. - name: codes-of-conduct description: Insight into codes of conduct for your communities. -- name: codespaces - description: Endpoints to manage Codespaces using the REST API. -- name: copilot - description: Endpoints to manage Copilot using the REST API. - name: emojis description: List emojis available to use on GitHub. - name: dependabot @@ -43,8 +39,6 @@ tags: description: Raw Git functionality. - name: gitignore description: View gitignore templates -- name: interactions - description: Owner or admin management of users interactions. - name: issues description: Interact with GitHub Issues. - name: licenses @@ -77,18 +71,24 @@ tags: description: Look for stuff on GitHub. - name: secret-scanning description: Retrieve secret scanning alerts from a repository. -- name: security-advisories - description: Manage security advisories. - name: teams description: Interact with GitHub Teams. - name: users description: Interact with and view information about users and also current user. +- name: codespaces + description: Endpoints to manage Codespaces using the REST API. +- name: copilot + description: Endpoints to manage Copilot using the REST API. - name: enterprise-admin description: Enterprise Administration - name: scim description: Provisioning of GitHub organization membership for SCIM-enabled providers. - name: server-statistics description: Server statistics +- name: security-advisories + description: Manage security advisories. +- name: interactions + description: Owner or admin management of users interactions. servers: - url: https://api.github.com externalDocs: @@ -123,8 +123,10 @@ paths: "/advisories": get: summary: List global security advisories - description: List global security advisories and filter using parameters such - as ecosystem, GHSA ID, CVE ID, etc. + description: |- + Lists all global security advisories that match the specified parameters. If no other parameters are defined, the request will return only GitHub-reviewed advisories that are not malware. + + By default, all responses will exclude advisories for malware, because malware are not standard vulnerabilities. To list advisories for malware, you must include the `type` parameter in your request, with the value `malware`. For more information about the different types of security advisories, see "[About the GitHub Advisory database](https://docs.github.com/enterprise-cloud@latest//code-security/security-advisories/global-security-advisories/about-the-github-advisory-database#about-types-of-security-advisories)." tags: - security-advisories operationId: security-advisories/list-global-advisories @@ -187,8 +189,10 @@ paths: - critical - name: cwes in: query - description: If specified, only advisories with these Common Weakness Enumerations - (CWEs) will be returned. + description: |- + If specified, only advisories with these Common Weakness Enumerations (CWEs) will be returned. + + Example: `cwes=79,284,22` or `cwes[]=79&cwes[]=284&cwes[]=22` schema: oneOf: - type: string @@ -202,10 +206,11 @@ paths: type: boolean - name: affects in: query - description: If specified, return advisories that affect any of `package` - or `package@version`. A maximum of 1000 packages can be specified. If the - query parameter causes the URL to exceed the maximum URL length supported - by your client, you must specify fewer packages. + description: |- + If specified, only return advisories that affect any of `package` or `package@version`. A maximum of 1000 packages can be specified. + If the query parameter causes the URL to exceed the maximum URL length supported by your client, you must specify fewer packages. + + Example: `affects=package1,package2@1.0.0,package3@^2.0.0` or `affects[]=package1&affects[]=package2@1.0.0` schema: oneOf: - type: string @@ -692,7 +697,7 @@ paths: delete: summary: Delete an installation for the authenticated app description: |- - Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the "[Suspend an app installation](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps/#suspend-an-app-installation)" endpoint. + Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the "[Suspend an app installation](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#suspend-an-app-installation)" endpoint. You must use a [JWT](https://docs.github.com/enterprise-cloud@latest//apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint. tags: @@ -4332,7 +4337,7 @@ paths: description: |- Revokes the installation token you're using to authenticate as an installation and access this endpoint. - Once an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the "[Create an installation access token for an app](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps#create-an-installation-access-token-for-an-app)" endpoint. + Once an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the "[Create an installation access token for an app](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#create-an-installation-access-token-for-an-app)" endpoint. You must use an [installation access token](https://docs.github.com/enterprise-cloud@latest//apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) to access this endpoint. tags: @@ -4464,7 +4469,8 @@ paths: "/licenses": get: summary: Get all commonly used licenses - description: '' + description: Lists the most commonly used licenses on GitHub. For more information, + see "[Licensing a repository ](https://docs.github.com/enterprise-cloud@latest//repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository)." tags: - licenses operationId: licenses/get-all-commonly-used @@ -4501,7 +4507,8 @@ paths: "/licenses/{license}": get: summary: Get a license - description: '' + description: Gets information about a specific license. For more information, + see "[Licensing a repository ](https://docs.github.com/enterprise-cloud@latest//repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository)." tags: - licenses operationId: licenses/get @@ -10469,7 +10476,7 @@ paths: summary: Deprecated - List fine-grained permissions for an organization description: |- **Note**: This operation is deprecated and will be removed after September 6th 2023. - Use the "[List fine-grained repository permissions](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization)" endpoint instead. + Use the "[List fine-grained repository permissions](https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization)" endpoint instead. Lists the fine-grained permissions that can be used in custom repository roles for an organization. For more information, see "[About custom repository roles](https://docs.github.com/enterprise-cloud@latest//organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-repository-roles)." @@ -10564,7 +10571,6 @@ paths: config: type: object description: Key/value pairs to provide settings for this webhook. - [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#create-hook-config-params). properties: url: "$ref": "#/components/schemas/webhook-config-url" @@ -10693,7 +10699,6 @@ paths: config: type: object description: Key/value pairs to provide settings for this webhook. - [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#update-hook-config-params). properties: url: "$ref": "#/components/schemas/webhook-config-url" @@ -12319,7 +12324,7 @@ paths: value: message: You cannot specify an organization member to remove as an outside collaborator. - documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/reference/orgs#remove-outside-collaborator + documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23006,7 +23011,7 @@ paths: to your app. Each action includes a `label`, `identifier` and `description`. A maximum of three actions are accepted. To learn more about check runs and requested actions, see "[Check runs - and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#check-runs-and-requested-actions)." + and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-the-rest-api-to-interact-with-checks#check-runs-and-requested-actions)." maxItems: 3 items: type: object @@ -23321,10 +23326,9 @@ paths: type: array description: Possible further actions the integrator can perform, which a user may trigger. Each action includes a `label`, `identifier` - and `description`. A maximum of three actions are accepted. See - the [`actions` object](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#actions-object) - description. To learn more about check runs and requested actions, - see "[Check runs and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#check-runs-and-requested-actions)." + and `description`. A maximum of three actions are accepted. To + learn more about check runs and requested actions, see "[Check + runs and requested actions](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-the-rest-api-to-interact-with-checks#check-runs-and-requested-actions)." maxItems: 3 items: type: object @@ -23504,7 +23508,7 @@ paths: description: |- **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`. - By default, check suites are automatically created when you create a [check run](https://docs.github.com/enterprise-cloud@latest//rest/reference/checks#check-runs). You only need to use this endpoint for manually creating check suites when you've disabled automatic creation using "[Update repository preferences for check suites](https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites)". Your GitHub App must have the `checks:write` permission to create check suites. + By default, check suites are automatically created when you create a [check run](https://docs.github.com/enterprise-cloud@latest//rest/checks/runs). You only need to use this endpoint for manually creating check suites when you've disabled automatic creation using "[Update repository preferences for check suites](https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites)". Your GitHub App must have the `checks:write` permission to create check suites. tags: - checks operationId: checks/create-suite @@ -26555,7 +26559,7 @@ paths: description: |- Creates a new file or replaces an existing file in a repository. You must authenticate using an access token with the `workflow` scope to use this endpoint. - **Note:** If you use this endpoint and the "[Delete a file](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos/#delete-file)" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead. + **Note:** If you use this endpoint and the "[Delete a file](https://docs.github.com/enterprise-cloud@latest//rest/repos/contents/#delete-a-file)" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead. tags: - repos operationId: repos/create-or-update-file-contents @@ -26695,7 +26699,7 @@ paths: You must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code. - **Note:** If you use this endpoint and the "[Create or update file contents](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos/#create-or-update-file-contents)" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead. + **Note:** If you use this endpoint and the "[Create or update file contents](https://docs.github.com/enterprise-cloud@latest//rest/repos/contents/#create-or-update-file-contents)" endpoint in parallel, the concurrent requests will conflict and you will receive errors. You must use these endpoints serially instead. tags: - repos operationId: repos/delete-file @@ -27990,7 +27994,7 @@ paths: **Note:** To create or update name patterns that branches must match in order to deploy to this environment, see "[Deployment branch policies](/rest/deployments/branch-policies)." - **Note:** To create or update secrets for an environment, see "[Secrets](/rest/reference/actions#secrets)." + **Note:** To create or update secrets for an environment, see "[GitHub Actions secrets](/rest/actions/secrets)." You must authenticate using an access token with the `repo` scope to use this endpoint. GitHub Apps must have the `administration:write` permission for the repository to use this endpoint. tags: @@ -29644,7 +29648,6 @@ paths: config: type: object description: Key/value pairs to provide settings for this webhook. - [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#create-hook-config-params). properties: url: "$ref": "#/components/schemas/webhook-config-url" @@ -29718,7 +29721,7 @@ paths: get: summary: Get a repository webhook description: Returns a webhook configured in a repository. To get only the webhook - `config` properties, see "[Get a webhook configuration for a repository](/rest/reference/repos#get-a-webhook-configuration-for-a-repository)." + `config` properties, see "[Get a webhook configuration for a repository](/rest/webhooks/repo-config#get-a-webhook-configuration-for-a-repository)." tags: - repos operationId: repos/get-webhook @@ -29751,7 +29754,7 @@ paths: description: Updates a webhook configured in a repository. If you previously had a `secret` set, you must provide the same `secret` or set a new `secret` or the secret will be removed. If you are only updating individual webhook - `config` properties, use "[Update a webhook configuration for a repository](/rest/reference/repos#update-a-webhook-configuration-for-a-repository)." + `config` properties, use "[Update a webhook configuration for a repository](/rest/webhooks/repo-config#update-a-webhook-configuration-for-a-repository)." tags: - repos operationId: repos/update-webhook @@ -29772,7 +29775,6 @@ paths: config: type: object description: Key/value pairs to provide settings for this webhook. - [These are defined below](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#create-hook-config-params). properties: url: "$ref": "#/components/schemas/webhook-config-url" @@ -29869,7 +29871,7 @@ paths: get: summary: Get a webhook configuration for a repository description: |- - Returns the webhook configuration for a repository. To get more information about the webhook, including the `active` state and `events`, use "[Get a repository webhook](/rest/reference/orgs#get-a-repository-webhook)." + Returns the webhook configuration for a repository. To get more information about the webhook, including the `active` state and `events`, use "[Get a repository webhook](/rest/webhooks/repos#get-a-repository-webhook)." Access tokens must have the `read:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:read` permission. tags: @@ -29900,7 +29902,7 @@ paths: patch: summary: Update a webhook configuration for a repository description: |- - Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use "[Update a repository webhook](/rest/reference/orgs#update-a-repository-webhook)." + Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use "[Update a repository webhook](/rest/webhooks/repos#update-a-repository-webhook)." Access tokens must have the `write:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:write` permission. tags: @@ -32896,7 +32898,7 @@ paths: - Git LFS support not enabled because Git LFS is disabled for the root repository in the network. - Git LFS support not enabled because Git LFS is disabled for . x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: false category: repos subcategory: lfs @@ -32917,7 +32919,7 @@ paths: '204': description: Response x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: false category: repos subcategory: lfs @@ -33968,6 +33970,55 @@ paths: enabledForGitHubApps: true category: pages subcategory: pages + "/repos/{owner}/{repo}/private-vulnerability-reporting": + put: + summary: Enable private vulnerability reporting for a repository + description: Enables private vulnerability reporting for a repository. The authenticated + user must have admin access to the repository. For more information, see "[Privately + reporting a security vulnerability](https://docs.github.com/enterprise-cloud@latest//code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability)." + tags: + - repos + operationId: repos/enable-private-vulnerability-reporting + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '204': + "$ref": "#/components/responses/no_content" + '422': + "$ref": "#/components/responses/bad_request" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos + delete: + summary: Disable private vulnerability reporting for a repository + description: Disables private vulnerability reporting for a repository. The + authenticated user must have admin access to the repository. For more information, + see "[Privately reporting a security vulnerability](https://docs.github.com/enterprise-cloud@latest//code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability)". + tags: + - repos + operationId: repos/disable-private-vulnerability-reporting + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '204': + "$ref": "#/components/responses/no_content" + '422': + "$ref": "#/components/responses/bad_request" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/projects": get: summary: List repository projects @@ -35065,7 +35116,7 @@ paths: summary: List commits on a pull request description: Lists a maximum of 250 commits for a pull request. To receive a complete commit list for pull requests with more than 250 commits, use the - [List commits](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#list-commits) + [List commits](https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits) endpoint. tags: - pulls @@ -35891,7 +35942,7 @@ paths: This is the most recent commit on the pull request''s branch. If the expected SHA does not match the pull request''s HEAD, you will receive a `422 Unprocessable Entity` status. You can use - the "[List commits](https://docs.github.com/enterprise-cloud@latest//rest/reference/repos#list-commits)" + the "[List commits](https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits)" endpoint to find the most recent commit SHA. Default: SHA of the pull request''s current HEAD ref.' examples: @@ -39892,7 +39943,7 @@ paths: description: |- Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). - When searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + When searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this: @@ -39922,7 +39973,7 @@ paths: Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see - [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching code](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-code)" for a detailed list of qualifiers. in: query @@ -39933,7 +39984,7 @@ paths: deprecated: true description: "**This field is deprecated.** Sorts the results of your query. Can only be `indexed`, which indicates how recently a file has been indexed - by the GitHub Enterprise Cloud search infrastructure. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results)" + by the GitHub Enterprise Cloud search infrastructure. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results)" in: query required: false schema: @@ -39998,7 +40049,7 @@ paths: Find commits via various criteria on the default branch (usually `main`). This method returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). When searching for commits, you can get text match metadata for the **message** field when you provide the `text-match` media type. For more details about how to receive highlighted search results, see [Text match - metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you want to find commits related to CSS in the [octocat/Spoon-Knife](https://github.com/octocat/Spoon-Knife) repository. Your query would look something like this: @@ -40015,7 +40066,7 @@ paths: Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see - [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching commits](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-commits)" for a detailed list of qualifiers. in: query @@ -40024,7 +40075,7 @@ paths: type: string - name: sort description: 'Sorts the results of your query by `author-date` or `committer-date`. - Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results)' + Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results)' in: query required: false schema: @@ -40072,7 +40123,7 @@ paths: Find issues by state and keyword. This method returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). When searching for issues, you can get text match metadata for the issue **title**, issue **body**, and issue **comment body** fields when you pass the `text-match` media type. For more details about how to receive highlighted - search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you want to find the oldest unresolved Python bugs on Windows. Your query might look something like this. @@ -40093,7 +40144,7 @@ paths: Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see - [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching issues and pull requests](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-issues-and-pull-requests)" for a detailed list of qualifiers. in: query @@ -40105,7 +40156,7 @@ paths: `reactions`, `reactions-+1`, `reactions--1`, `reactions-smile`, `reactions-thinking_face`, `reactions-heart`, `reactions-tada`, or `interactions`. You can also sort results by how recently the items were `created` or `updated`, Default: - [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results)' + [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results)' in: query required: false schema: @@ -40167,7 +40218,7 @@ paths: description: |- Find labels in a repository with names or descriptions that match search keywords. Returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). - When searching for labels, you can get text match metadata for the label **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + When searching for labels, you can get text match metadata for the label **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you want to find labels in the `linguist` repository that match `bug`, `defect`, or `enhancement`. Your query might look like this: @@ -40190,14 +40241,14 @@ paths: - name: q description: The search keywords. This endpoint does not accept qualifiers in the query. To learn more about the format of the query, see [Constructing - a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). in: query required: true schema: type: string - name: sort description: 'Sorts the results of your query by when the label was `created` - or `updated`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results)' + or `updated`. Default: [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results)' in: query required: false schema: @@ -40250,7 +40301,7 @@ paths: description: |- Find repositories via various criteria. This method returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). - When searching for repositories, you can get text match metadata for the **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + When searching for repositories, you can get text match metadata for the **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you want to search for popular Tetris repositories written in assembly code, your query might look like this: @@ -40269,7 +40320,7 @@ paths: Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see - [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching for repositories](https://docs.github.com/enterprise-cloud@latest//articles/searching-for-repositories/)" for a detailed list of qualifiers. in: query @@ -40279,7 +40330,7 @@ paths: - name: sort description: 'Sorts the results of your query by number of `stars`, `forks`, or `help-wanted-issues` or how recently the items were `updated`. Default: - [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results)' + [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results)' in: query required: false schema: @@ -40332,7 +40383,7 @@ paths: description: |- Find topics via various criteria. Results are sorted by best match. This method returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). See "[Searching topics](https://docs.github.com/enterprise-cloud@latest//articles/searching-topics/)" for a detailed list of qualifiers. - When searching for topics, you can get text match metadata for the topic's **short\_description**, **description**, **name**, or **display\_name** field when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + When searching for topics, you can get text match metadata for the topic's **short\_description**, **description**, **name**, or **display\_name** field when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you want to search for topics related to Ruby that are featured on https://github.com/topics. Your query might look like this: @@ -40351,7 +40402,7 @@ paths: Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see - [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). in: query required: true schema: @@ -40394,7 +40445,7 @@ paths: description: |- Find users via various criteria. This method returns up to 100 results [per page](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#pagination). - When searching for users, you can get text match metadata for the issue **login**, public **email**, and **name** fields when you pass the `text-match` media type. For more details about highlighting search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#text-match-metadata). + When searching for users, you can get text match metadata for the issue **login**, public **email**, and **name** fields when you pass the `text-match` media type. For more details about highlighting search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/enterprise-cloud@latest//rest/search/search#text-match-metadata). For example, if you're looking for a list of popular users, you might try this query: @@ -40415,7 +40466,7 @@ paths: Qualifiers allow you to limit your search to specific areas of GitHub Enterprise Cloud. The REST API supports the same qualifiers as the web interface for GitHub Enterprise Cloud. To learn more about the format of the query, see - [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#constructing-a-search-query). + [Constructing a search query](https://docs.github.com/enterprise-cloud@latest//rest/search/search#constructing-a-search-query). See "[Searching users](https://docs.github.com/enterprise-cloud@latest//search-github/searching-on-github/searching-users)" for a detailed list of qualifiers. in: query @@ -40425,7 +40476,7 @@ paths: - name: sort description: 'Sorts the results of your query by number of `followers` or `repositories`, or when the person `joined` GitHub Enterprise Cloud. Default: - [best match](https://docs.github.com/enterprise-cloud@latest//rest/reference/search#ranking-search-results)' + [best match](https://docs.github.com/enterprise-cloud@latest//rest/search/search#ranking-search-results)' in: query required: false schema: @@ -41866,7 +41917,7 @@ paths: description: |- **Note**: Repositories inherited through a parent team will also be checked. - **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Check team permissions for a repository](https://docs.github.com/enterprise-cloud@latest//rest/reference/teams#check-team-permissions-for-a-repository) endpoint. + **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Check team permissions for a repository](https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository) endpoint. You can also get information about the specified repository, including what permissions the team grants on it, by passing the following custom [media type](https://docs.github.com/enterprise-cloud@latest//rest/overview/media-types/) via the `Accept` header: tags: @@ -41904,7 +41955,7 @@ paths: put: summary: Add or update team repository permissions (Legacy) description: |- - **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new "[Add or update team repository permissions](https://docs.github.com/enterprise-cloud@latest//rest/reference/teams#add-or-update-team-repository-permissions)" endpoint. + **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new "[Add or update team repository permissions](https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions)" endpoint. To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a `422 Unprocessable Entity` status if you attempt to add a repository to a team that is not owned by the organization. @@ -41959,7 +42010,7 @@ paths: delete: summary: Remove a repository from a team (Legacy) description: |- - **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove a repository from a team](https://docs.github.com/enterprise-cloud@latest//rest/reference/teams#remove-a-repository-from-a-team) endpoint. + **Deprecation Notice:** This endpoint route is deprecated and will be removed from the Teams API. We recommend migrating your existing code to use the new [Remove a repository from a team](https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team) endpoint. If the authenticated user is an organization owner or a team maintainer, they can remove any repositories from the team. To remove a repository from a team as an organization member, the authenticated user must have admin access to the repository and must be able to see the team. NOTE: This does not delete the repository, it just removes it from the team. tags: @@ -42767,7 +42818,7 @@ paths: type: string description: Value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get the public key for - the authenticated user](https://docs.github.com/enterprise-cloud@latest//rest/reference/codespaces#get-the-public-key-for-the-authenticated-user) + the authenticated user](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-public-key-for-the-authenticated-user) endpoint. pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: @@ -46638,7 +46689,7 @@ paths: The `email` key in the following response is the publicly visible email address from your GitHub Enterprise Cloud [profile page](https://github.com/settings/profile). When setting up your profile, you can select a primary email address to be “public” which provides an email entry for this endpoint. If you do not set a public email address for `email`, then it will have a value of `null`. You only see publicly visible email addresses when authenticated with GitHub Enterprise Cloud. For more information, see [Authentication](https://docs.github.com/enterprise-cloud@latest//rest/overview/resources-in-the-rest-api#authentication). - The Emails API enables you to list all of your email addresses, and toggle a primary email to be visible publicly. For more information, see "[Emails API](https://docs.github.com/enterprise-cloud@latest//rest/reference/users#emails)". + The Emails API enables you to list all of your email addresses, and toggle a primary email to be visible publicly. For more information, see "[Emails API](https://docs.github.com/enterprise-cloud@latest//rest/users/emails)". tags: - users operationId: users/get-by-username @@ -51651,7 +51702,7 @@ webhooks: summary: |- This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: Someone installed a GitHub App on a user or organization account. operationId: installation/created externalDocs: @@ -51713,7 +51764,7 @@ webhooks: summary: |- This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: Someone uninstalled a GitHub App from their user or organization account. operationId: installation/deleted @@ -51776,7 +51827,7 @@ webhooks: summary: |- This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: Someone granted new permissions to a GitHub App. operationId: installation/new-permissions-accepted externalDocs: @@ -51838,7 +51889,7 @@ webhooks: summary: |- This event occurs when there is activity relating to which repositories a GitHub App installation can access. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: A GitHub App installation was granted access to one or more repositories. operationId: installation-repositories/added externalDocs: @@ -51900,7 +51951,7 @@ webhooks: summary: |- This event occurs when there is activity relating to which repositories a GitHub App installation can access. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: Access to one or more repositories was revoked for a GitHub App installation. operationId: installation-repositories/removed @@ -51963,7 +52014,7 @@ webhooks: summary: |- This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: Someone blocked access by a GitHub App to their user or organization account. operationId: installation/suspend @@ -52028,8 +52079,8 @@ webhooks: apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) - or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" - in the REST API documentation. + or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in + the REST API documentation. description: Somebody renamed the user or organization account that a GitHub App is installed on. operationId: installation-target/renamed @@ -52092,7 +52143,7 @@ webhooks: summary: |- This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event. - For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/reference/apps)" in the REST API documentation. + For more information about GitHub Apps, see "[About apps](https://docs.github.com/enterprise-cloud@latest//developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/enterprise-cloud@latest//graphql/reference/objects#app) or "[Apps](https://docs.github.com/enterprise-cloud@latest//rest/apps)" in the REST API documentation. description: A GitHub App that was blocked from accessing a user or organization account was given access the account again. operationId: installation/unsuspend @@ -54403,6 +54454,8 @@ webhooks: **Note**: The pull request merge queue feature is currently in limited private beta and subject to change. description: A pull request was added to a merge queue. operationId: merge-queue-entry/created + tags: + - merge-queue externalDocs: url: https://docs.github.com/enterprise-cloud@latest//developers/webhooks-and-events/webhooks/webhook-events-and-payloads#merge-queue-entry parameters: @@ -59629,7 +59682,7 @@ webhooks: push: post: summary: |- - This event occurs when a commit or tag is pushed. + This event occurs when a commit or tag is pushed, or when a repository is cloned. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. @@ -64126,8 +64179,9 @@ components: - string - 'null' format: date-time - description: The date and time of when the advisory was published in the - National Vulnerability Database, in ISO 8601 format. + description: |- + The date and time when the advisory was published in the National Vulnerability Database, in ISO 8601 format. + This field is only populated when the advisory is imported from the National Vulnerability Database. readOnly: true withdrawn_at: type: