@octokit/types

  • Version 14.1.0
  • Published
  • 265 kB
  • 1 dependency
  • MIT license

Install

npm i @octokit/types
yarn add @octokit/types
pnpm add @octokit/types

Overview

Shared TypeScript definitions for Octokit projects

Index

Variables

Interfaces

Type Aliases

Variables

variable VERSION

const VERSION: string;

    Interfaces

    interface AuthInterface

    interface AuthInterface<AuthOptions extends any[], Authentication extends any> {}
    • Interface to implement complex authentication strategies for Octokit. An object Implementing the AuthInterface can directly be passed as the auth option in the Octokit constructor.

      For the official implementations of the most common authentication strategies, see https://github.com/octokit/auth.js

    property hook

    hook: {
    /**
    * Sends a request using the passed `request` instance
    *
    * @param {object} endpoint Must set `method` and `url`. Plus URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
    */
    <T = any>(request: RequestInterface, options: EndpointOptions): Promise<
    OctokitResponse<T>
    >;
    /**
    * Sends a request using the passed `request` instance
    *
    * @param {string} route Request method + URL. Example: `'GET /orgs/{org}'`
    * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
    */
    <T = any>(
    request: RequestInterface,
    route: Route,
    parameters?: RequestParameters
    ): Promise<OctokitResponse<T>>;
    };

      call signature

      (...args: AuthOptions): Promise<Authentication>;

        interface EndpointDefaults

        interface EndpointDefaults extends RequestParameters {}
        • The .endpoint() method is guaranteed to set all keys defined by RequestParameters as well as the method property.

        property baseUrl

        baseUrl: Url;

          property headers

          headers: RequestHeaders & {
          accept: string;
          'user-agent': string;
          };

            property mediaType

            mediaType: {
            format: string;
            previews?: string[];
            };

              property method

              method: RequestMethod;

                property url

                url?: Url;

                  interface EndpointInterface

                  interface EndpointInterface<D extends object = object> {}

                    property defaults

                    defaults: <O extends RequestParameters = RequestParameters>(
                    newDefaults: O
                    ) => EndpointInterface<D & O>;
                    • Returns a new endpoint interface with new defaults

                    property DEFAULTS

                    DEFAULTS: D & EndpointDefaults;
                    • Object with current default route and parameters

                    property merge

                    merge: {
                    /**
                    * Merges current endpoint defaults with passed route and parameters,
                    * without transforming them into request options.
                    *
                    * @param {string} route Request method + URL. Example: `'GET /orgs/{org}'`
                    * @param {object} [parameters] URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
                    *
                    */
                    <
                    R extends Route,
                    P extends RequestParameters = R extends EndpointKeys
                    ? Endpoints[R]['parameters'] & RequestParameters
                    : RequestParameters
                    >(
                    route: EndpointKeys | R,
                    parameters?: P
                    ): D &
                    (R extends EndpointKeys
                    ? Endpoints[R]['request'] & Endpoints[R]['parameters']
                    : EndpointDefaults) &
                    P;
                    /**
                    * Merges current endpoint defaults with passed route and parameters,
                    * without transforming them into request options.
                    *
                    * @param {object} endpoint Must set `method` and `url`. Plus URL, query or body parameters, as well as `headers`, `mediaType.{format|previews}`, `request`, or `baseUrl`.
                    */
                    <P extends RequestParameters = RequestParameters>(
                    options: P
                    ): EndpointDefaults & D & P;
                    /**
                    * Returns current default options.
                    *
                    * @deprecated use endpoint.DEFAULTS instead
                    */
                    (): D & EndpointDefaults;
                    };

                      property parse

                      parse: <O extends EndpointDefaults = EndpointDefaults>(
                      options: O
                      ) => RequestOptions & Pick<O, keyof RequestOptions>;
                      • Stateless method to turn endpoint options into request options. Calling endpoint(options) is the same as calling endpoint.parse(endpoint.merge(options)).

                        Parameter options

                        method, url. Plus URL, query or body parameters, as well as headers, mediaType.{format|previews}, request, or baseUrl.

                      call signature

                      <O extends RequestParameters = RequestParameters>(
                      options: O & {
                      method?: string;
                      } & ('url' extends keyof D
                      ? {
                      url?: string;
                      }
                      : {
                      url: string;
                      })
                      ): RequestOptions & Pick<D & O, keyof RequestOptions>;
                      • Transforms a GitHub REST API endpoint into generic request options

                        Parameter endpoint

                        Must set url unless it's set defaults. Plus URL, query or body parameters, as well as headers, mediaType.{format|previews}, request, or baseUrl.

                      call signature

                      <
                      R extends Route,
                      P extends RequestParameters = R extends EndpointKeys
                      ? Endpoints[R]['parameters'] & RequestParameters
                      : RequestParameters
                      >(
                      route: EndpointKeys | R,
                      parameters?: P
                      ): (R extends EndpointKeys ? Endpoints[R]['request'] : RequestOptions) &
                      Pick<P, keyof RequestOptions>;
                      • Transforms a GitHub REST API endpoint into generic request options

                        Parameter route

                        Request method + URL. Example: 'GET /orgs/{org}'

                        Parameter parameters

                        URL, query or body parameters, as well as headers, mediaType.{format|previews}, request, or baseUrl.

                      interface EndpointOptions

                      interface EndpointOptions extends RequestParameters {}

                        property method

                        method: RequestMethod;

                          property url

                          url: Url;

                            interface Endpoints

                            interface Endpoints {}

                              property "DELETE /app/installations/{installation_id}"

                              'DELETE /app/installations/{installation_id}': Operation<
                              '/app/installations/{installation_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#delete-an-installation-for-the-authenticated-app

                              property "DELETE /app/installations/{installation_id}/suspended"

                              'DELETE /app/installations/{installation_id}/suspended': Operation<
                              '/app/installations/{installation_id}/suspended',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#unsuspend-an-app-installation

                              property "DELETE /applications/{client_id}/grant"

                              'DELETE /applications/{client_id}/grant': Operation<
                              '/applications/{client_id}/grant',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/oauth-applications#delete-an-app-authorization

                              property "DELETE /applications/{client_id}/token"

                              'DELETE /applications/{client_id}/token': Operation<
                              '/applications/{client_id}/token',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/oauth-applications#delete-an-app-token

                              property "DELETE /enterprises/{enterprise}/code-security/configurations/{configuration_id}"

                              'DELETE /enterprises/{enterprise}/code-security/configurations/{configuration_id}': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/{configuration_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise

                              property "DELETE /gists/{gist_id}"

                              'DELETE /gists/{gist_id}': Operation<'/gists/{gist_id}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#delete-a-gist

                              property "DELETE /gists/{gist_id}/comments/{comment_id}"

                              'DELETE /gists/{gist_id}/comments/{comment_id}': Operation<
                              '/gists/{gist_id}/comments/{comment_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/gists/comments#delete-a-gist-comment

                              property "DELETE /gists/{gist_id}/star"

                              'DELETE /gists/{gist_id}/star': Operation<'/gists/{gist_id}/star', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#unstar-a-gist

                              property "DELETE /installation/token"

                              'DELETE /installation/token': Operation<'/installation/token', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/apps/installations#revoke-an-installation-access-token

                              property "DELETE /notifications/threads/{thread_id}"

                              'DELETE /notifications/threads/{thread_id}': Operation<
                              '/notifications/threads/{thread_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done

                              property "DELETE /notifications/threads/{thread_id}/subscription"

                              'DELETE /notifications/threads/{thread_id}/subscription': Operation<
                              '/notifications/threads/{thread_id}/subscription',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription

                              property "DELETE /orgs/{org}"

                              'DELETE /orgs/{org}': Operation<'/orgs/{org}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#delete-an-organization

                              property "DELETE /orgs/{org}/actions/hosted-runners/{hosted_runner_id}"

                              'DELETE /orgs/{org}/actions/hosted-runners/{hosted_runner_id}': Operation<
                              '/orgs/{org}/actions/hosted-runners/{hosted_runner_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization

                              property "DELETE /orgs/{org}/actions/permissions/repositories/{repository_id}"

                              'DELETE /orgs/{org}/actions/permissions/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/permissions/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization

                              property "DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}"

                              'DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization

                              property "DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}"

                              'DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization

                              property "DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}"

                              'DELETE /orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization

                              property "DELETE /orgs/{org}/actions/runners/{runner_id}"

                              'DELETE /orgs/{org}/actions/runners/{runner_id}': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization

                              property "DELETE /orgs/{org}/actions/runners/{runner_id}/labels"

                              'DELETE /orgs/{org}/actions/runners/{runner_id}/labels': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}/labels',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization

                              property "DELETE /orgs/{org}/actions/runners/{runner_id}/labels/{name}"

                              'DELETE /orgs/{org}/actions/runners/{runner_id}/labels/{name}': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}/labels/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization

                              property "DELETE /orgs/{org}/actions/secrets/{secret_name}"

                              'DELETE /orgs/{org}/actions/secrets/{secret_name}': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#delete-an-organization-secret

                              property "DELETE /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}"

                              'DELETE /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret

                              property "DELETE /orgs/{org}/actions/variables/{name}"

                              'DELETE /orgs/{org}/actions/variables/{name}': Operation<
                              '/orgs/{org}/actions/variables/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#delete-an-organization-variable

                              property "DELETE /orgs/{org}/actions/variables/{name}/repositories/{repository_id}"

                              'DELETE /orgs/{org}/actions/variables/{name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/variables/{name}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable

                              property "DELETE /orgs/{org}/blocks/{username}"

                              'DELETE /orgs/{org}/blocks/{username}': Operation<
                              '/orgs/{org}/blocks/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization

                              property "DELETE /orgs/{org}/campaigns/{campaign_number}"

                              'DELETE /orgs/{org}/campaigns/{campaign_number}': Operation<
                              '/orgs/{org}/campaigns/{campaign_number}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization

                              property "DELETE /orgs/{org}/code-security/configurations/{configuration_id}"

                              'DELETE /orgs/{org}/code-security/configurations/{configuration_id}': Operation<
                              '/orgs/{org}/code-security/configurations/{configuration_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration

                              property "DELETE /orgs/{org}/code-security/configurations/detach"

                              'DELETE /orgs/{org}/code-security/configurations/detach': Operation<
                              '/orgs/{org}/code-security/configurations/detach',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories

                              property "DELETE /orgs/{org}/codespaces/access/selected_users"

                              'DELETE /orgs/{org}/codespaces/access/selected_users': Operation<
                              '/orgs/{org}/codespaces/access/selected_users',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization

                              property "DELETE /orgs/{org}/codespaces/secrets/{secret_name}"

                              'DELETE /orgs/{org}/codespaces/secrets/{secret_name}': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret

                              property "DELETE /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}"

                              'DELETE /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret

                              property "DELETE /orgs/{org}/copilot/billing/selected_teams"

                              'DELETE /orgs/{org}/copilot/billing/selected_teams': Operation<
                              '/orgs/{org}/copilot/billing/selected_teams',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization

                              property "DELETE /orgs/{org}/copilot/billing/selected_users"

                              'DELETE /orgs/{org}/copilot/billing/selected_users': Operation<
                              '/orgs/{org}/copilot/billing/selected_users',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization

                              property "DELETE /orgs/{org}/dependabot/secrets/{secret_name}"

                              'DELETE /orgs/{org}/dependabot/secrets/{secret_name}': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret

                              property "DELETE /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}"

                              'DELETE /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret

                              property "DELETE /orgs/{org}/hooks/{hook_id}"

                              'DELETE /orgs/{org}/hooks/{hook_id}': Operation<
                              '/orgs/{org}/hooks/{hook_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook

                              property "DELETE /orgs/{org}/interaction-limits"

                              'DELETE /orgs/{org}/interaction-limits': Operation<
                              '/orgs/{org}/interaction-limits',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization

                              property "DELETE /orgs/{org}/invitations/{invitation_id}"

                              'DELETE /orgs/{org}/invitations/{invitation_id}': Operation<
                              '/orgs/{org}/invitations/{invitation_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation

                              property "DELETE /orgs/{org}/issue-types/{issue_type_id}"

                              'DELETE /orgs/{org}/issue-types/{issue_type_id}': Operation<
                              '/orgs/{org}/issue-types/{issue_type_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization

                              property "DELETE /orgs/{org}/members/{username}"

                              'DELETE /orgs/{org}/members/{username}': Operation<
                              '/orgs/{org}/members/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#remove-an-organization-member

                              property "DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}"

                              'DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}': Operation<
                              '/orgs/{org}/members/{username}/codespaces/{codespace_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization

                              property "DELETE /orgs/{org}/memberships/{username}"

                              'DELETE /orgs/{org}/memberships/{username}': Operation<
                              '/orgs/{org}/memberships/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user

                              property "DELETE /orgs/{org}/migrations/{migration_id}/archive"

                              'DELETE /orgs/{org}/migrations/{migration_id}/archive': Operation<
                              '/orgs/{org}/migrations/{migration_id}/archive',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive

                              property "DELETE /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock"

                              'DELETE /orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock': Operation<
                              '/orgs/{org}/migrations/{migration_id}/repos/{repo_name}/lock',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository

                              property "DELETE /orgs/{org}/organization-roles/teams/{team_slug}"

                              'DELETE /orgs/{org}/organization-roles/teams/{team_slug}': Operation<
                              '/orgs/{org}/organization-roles/teams/{team_slug}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team

                              property "DELETE /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}"

                              'DELETE /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}': Operation<
                              '/orgs/{org}/organization-roles/teams/{team_slug}/{role_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team

                              property "DELETE /orgs/{org}/organization-roles/users/{username}"

                              'DELETE /orgs/{org}/organization-roles/users/{username}': Operation<
                              '/orgs/{org}/organization-roles/users/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user

                              property "DELETE /orgs/{org}/organization-roles/users/{username}/{role_id}"

                              'DELETE /orgs/{org}/organization-roles/users/{username}/{role_id}': Operation<
                              '/orgs/{org}/organization-roles/users/{username}/{role_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user

                              property "DELETE /orgs/{org}/outside_collaborators/{username}"

                              'DELETE /orgs/{org}/outside_collaborators/{username}': Operation<
                              '/orgs/{org}/outside_collaborators/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization

                              property "DELETE /orgs/{org}/packages/{package_type}/{package_name}"

                              'DELETE /orgs/{org}/packages/{package_type}/{package_name}': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization

                              property "DELETE /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}"

                              'DELETE /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization

                              property "DELETE /orgs/{org}/private-registries/{secret_name}"

                              'DELETE /orgs/{org}/private-registries/{secret_name}': Operation<
                              '/orgs/{org}/private-registries/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization

                              property "DELETE /orgs/{org}/properties/schema/{custom_property_name}"

                              'DELETE /orgs/{org}/properties/schema/{custom_property_name}': Operation<
                              '/orgs/{org}/properties/schema/{custom_property_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization

                              property "DELETE /orgs/{org}/public_members/{username}"

                              'DELETE /orgs/{org}/public_members/{username}': Operation<
                              '/orgs/{org}/public_members/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user

                              property "DELETE /orgs/{org}/rulesets/{ruleset_id}"

                              'DELETE /orgs/{org}/rulesets/{ruleset_id}': Operation<
                              '/orgs/{org}/rulesets/{ruleset_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#delete-an-organization-repository-ruleset

                              property "DELETE /orgs/{org}/security-managers/teams/{team_slug}"

                              'DELETE /orgs/{org}/security-managers/teams/{team_slug}': Operation<
                              '/orgs/{org}/security-managers/teams/{team_slug}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team

                              property "DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}"

                              'DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}': Operation<
                              '/orgs/{org}/settings/network-configurations/{network_configuration_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization

                              property "DELETE /orgs/{org}/teams/{team_slug}"

                              'DELETE /orgs/{org}/teams/{team_slug}': Operation<
                              '/orgs/{org}/teams/{team_slug}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#delete-a-team

                              property "DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}"

                              'DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#delete-a-discussion

                              property "DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}"

                              'DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment

                              property "DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}"

                              'DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction

                              property "DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}"

                              'DELETE /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction

                              property "DELETE /orgs/{org}/teams/{team_slug}/memberships/{username}"

                              'DELETE /orgs/{org}/teams/{team_slug}/memberships/{username}': Operation<
                              '/orgs/{org}/teams/{team_slug}/memberships/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user

                              property "DELETE /orgs/{org}/teams/{team_slug}/projects/{project_id}"

                              'DELETE /orgs/{org}/teams/{team_slug}/projects/{project_id}': Operation<
                              '/orgs/{org}/teams/{team_slug}/projects/{project_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team

                              property "DELETE /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}"

                              'DELETE /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}': Operation<
                              '/orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team

                              property "DELETE /projects/{project_id}"

                              'DELETE /projects/{project_id}': Operation<'/projects/{project_id}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#delete-a-project

                              property "DELETE /projects/{project_id}/collaborators/{username}"

                              'DELETE /projects/{project_id}/collaborators/{username}': Operation<
                              '/projects/{project_id}/collaborators/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator

                              property "DELETE /projects/columns/{column_id}"

                              'DELETE /projects/columns/{column_id}': Operation<
                              '/projects/columns/{column_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/columns#delete-a-project-column

                              property "DELETE /projects/columns/cards/{card_id}"

                              'DELETE /projects/columns/cards/{card_id}': Operation<
                              '/projects/columns/cards/{card_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/cards#delete-a-project-card

                              property "DELETE /repos/{owner}/{repo}"

                              'DELETE /repos/{owner}/{repo}': Operation<'/repos/{owner}/{repo}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#delete-a-repository

                              property "DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"

                              'DELETE /repos/{owner}/{repo}/actions/artifacts/{artifact_id}': Operation<
                              '/repos/{owner}/{repo}/actions/artifacts/{artifact_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/artifacts#delete-an-artifact

                              property "DELETE /repos/{owner}/{repo}/actions/caches{?key,ref}"

                              'DELETE /repos/{owner}/{repo}/actions/caches{?key,ref}': Operation<
                              '/repos/{owner}/{repo}/actions/caches',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key

                              property "DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}"

                              'DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}': Operation<
                              '/repos/{owner}/{repo}/actions/caches/{cache_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id

                              property "DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}"

                              'DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository

                              property "DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"

                              'DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}/labels',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository

                              property "DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}"

                              'DELETE /repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}/labels/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository

                              property "DELETE /repos/{owner}/{repo}/actions/runs/{run_id}"

                              'DELETE /repos/{owner}/{repo}/actions/runs/{run_id}': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run

                              property "DELETE /repos/{owner}/{repo}/actions/runs/{run_id}/logs"

                              'DELETE /repos/{owner}/{repo}/actions/runs/{run_id}/logs': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/logs',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs

                              property "DELETE /repos/{owner}/{repo}/actions/secrets/{secret_name}"

                              'DELETE /repos/{owner}/{repo}/actions/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/actions/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#delete-a-repository-secret

                              property "DELETE /repos/{owner}/{repo}/actions/variables/{name}"

                              'DELETE /repos/{owner}/{repo}/actions/variables/{name}': Operation<
                              '/repos/{owner}/{repo}/actions/variables/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#delete-a-repository-variable

                              'DELETE /repos/{owner}/{repo}/autolinks/{autolink_id}': Operation<
                              '/repos/{owner}/{repo}/autolinks/{autolink_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository

                              property "DELETE /repos/{owner}/{repo}/automated-security-fixes"

                              'DELETE /repos/{owner}/{repo}/automated-security-fixes': Operation<
                              '/repos/{owner}/{repo}/automated-security-fixes',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#delete-branch-protection

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions

                              property "DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users"

                              'DELETE /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions

                              property "DELETE /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}{?confirm_delete}"

                              'DELETE /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}{?confirm_delete}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository

                              property "DELETE /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}"

                              'DELETE /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/codeql/databases/{language}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database

                              property "DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}"

                              'DELETE /repos/{owner}/{repo}/codespaces/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/codespaces/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret

                              property "DELETE /repos/{owner}/{repo}/collaborators/{username}"

                              'DELETE /repos/{owner}/{repo}/collaborators/{username}': Operation<
                              '/repos/{owner}/{repo}/collaborators/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator

                              property "DELETE /repos/{owner}/{repo}/comments/{comment_id}"

                              'DELETE /repos/{owner}/{repo}/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/comments/{comment_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/comments#delete-a-commit-comment

                              property "DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}"

                              'DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}': Operation<
                              '/repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction

                              property "DELETE /repos/{owner}/{repo}/contents/{path}"

                              'DELETE /repos/{owner}/{repo}/contents/{path}': Operation<
                              '/repos/{owner}/{repo}/contents/{path}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#delete-a-file

                              property "DELETE /repos/{owner}/{repo}/dependabot/secrets/{secret_name}"

                              'DELETE /repos/{owner}/{repo}/dependabot/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/dependabot/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret

                              property "DELETE /repos/{owner}/{repo}/deployments/{deployment_id}"

                              'DELETE /repos/{owner}/{repo}/deployments/{deployment_id}': Operation<
                              '/repos/{owner}/{repo}/deployments/{deployment_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/deployments#delete-a-deployment

                              property "DELETE /repos/{owner}/{repo}/environments/{environment_name}"

                              'DELETE /repos/{owner}/{repo}/environments/{environment_name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/environments#delete-an-environment

                              property "DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"

                              'DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment

                              property "DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}"

                              'DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy

                              property "DELETE /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"

                              'DELETE /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#delete-an-environment-secret

                              property "DELETE /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}"

                              'DELETE /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/variables/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#delete-an-environment-variable

                              property "DELETE /repos/{owner}/{repo}/git/refs/{ref}"

                              'DELETE /repos/{owner}/{repo}/git/refs/{ref}': Operation<
                              '/repos/{owner}/{repo}/git/refs/{ref}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/refs#delete-a-reference

                              property "DELETE /repos/{owner}/{repo}/hooks/{hook_id}"

                              'DELETE /repos/{owner}/{repo}/hooks/{hook_id}': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook

                              property "DELETE /repos/{owner}/{repo}/import"

                              'DELETE /repos/{owner}/{repo}/import': Operation<
                              '/repos/{owner}/{repo}/import',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#cancel-an-import

                              property "DELETE /repos/{owner}/{repo}/interaction-limits"

                              'DELETE /repos/{owner}/{repo}/interaction-limits': Operation<
                              '/repos/{owner}/{repo}/interaction-limits',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository

                              property "DELETE /repos/{owner}/{repo}/invitations/{invitation_id}"

                              'DELETE /repos/{owner}/{repo}/invitations/{invitation_id}': Operation<
                              '/repos/{owner}/{repo}/invitations/{invitation_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation

                              property "DELETE /repos/{owner}/{repo}/issues/{issue_number}/assignees"

                              'DELETE /repos/{owner}/{repo}/issues/{issue_number}/assignees': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/assignees',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/issues#remove-assignees-from-an-issue

                              property "DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels"

                              'DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/labels',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue

                              property "DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels/{name}"

                              'DELETE /repos/{owner}/{repo}/issues/{issue_number}/labels/{name}': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/labels/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue

                              property "DELETE /repos/{owner}/{repo}/issues/{issue_number}/lock"

                              'DELETE /repos/{owner}/{repo}/issues/{issue_number}/lock': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/lock',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#unlock-an-issue

                              property "DELETE /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}"

                              'DELETE /repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction

                              property "DELETE /repos/{owner}/{repo}/issues/{issue_number}/sub_issue"

                              'DELETE /repos/{owner}/{repo}/issues/{issue_number}/sub_issue': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/sub_issue',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/sub-issues#remove-sub-issue

                              property "DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}"

                              'DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/issues/comments/{comment_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/comments#delete-an-issue-comment

                              property "DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}"

                              'DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}': Operation<
                              '/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction

                              property "DELETE /repos/{owner}/{repo}/keys/{key_id}"

                              'DELETE /repos/{owner}/{repo}/keys/{key_id}': Operation<
                              '/repos/{owner}/{repo}/keys/{key_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key

                              property "DELETE /repos/{owner}/{repo}/labels/{name}"

                              'DELETE /repos/{owner}/{repo}/labels/{name}': Operation<
                              '/repos/{owner}/{repo}/labels/{name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#delete-a-label

                              property "DELETE /repos/{owner}/{repo}/milestones/{milestone_number}"

                              'DELETE /repos/{owner}/{repo}/milestones/{milestone_number}': Operation<
                              '/repos/{owner}/{repo}/milestones/{milestone_number}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/milestones#delete-a-milestone

                              property "DELETE /repos/{owner}/{repo}/pages"

                              'DELETE /repos/{owner}/{repo}/pages': Operation<
                              '/repos/{owner}/{repo}/pages',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site

                              property "DELETE /repos/{owner}/{repo}/private-vulnerability-reporting"

                              'DELETE /repos/{owner}/{repo}/private-vulnerability-reporting': Operation<
                              '/repos/{owner}/{repo}/private-vulnerability-reporting',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository

                              property "DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"

                              'DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request

                              property "DELETE /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}"

                              'DELETE /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request

                              property "DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}"

                              'DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/comments/{comment_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request

                              property "DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}"

                              'DELETE /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction

                              property "DELETE /repos/{owner}/{repo}/releases/{release_id}"

                              'DELETE /repos/{owner}/{repo}/releases/{release_id}': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#delete-a-release

                              property "DELETE /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}"

                              'DELETE /repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}/reactions/{reaction_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction

                              property "DELETE /repos/{owner}/{repo}/releases/assets/{asset_id}"

                              'DELETE /repos/{owner}/{repo}/releases/assets/{asset_id}': Operation<
                              '/repos/{owner}/{repo}/releases/assets/{asset_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/assets#delete-a-release-asset

                              property "DELETE /repos/{owner}/{repo}/rulesets/{ruleset_id}"

                              'DELETE /repos/{owner}/{repo}/rulesets/{ruleset_id}': Operation<
                              '/repos/{owner}/{repo}/rulesets/{ruleset_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset

                              property "DELETE /repos/{owner}/{repo}/subscription"

                              'DELETE /repos/{owner}/{repo}/subscription': Operation<
                              '/repos/{owner}/{repo}/subscription',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/watching#delete-a-repository-subscription

                              property "DELETE /repos/{owner}/{repo}/tags/protection/{tag_protection_id}"

                              'DELETE /repos/{owner}/{repo}/tags/protection/{tag_protection_id}': Operation<
                              '/repos/{owner}/{repo}/tags/protection/{tag_protection_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository

                              property "DELETE /repos/{owner}/{repo}/vulnerability-alerts"

                              'DELETE /repos/{owner}/{repo}/vulnerability-alerts': Operation<
                              '/repos/{owner}/{repo}/vulnerability-alerts',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts

                              property "DELETE /teams/{team_id}"

                              'DELETE /teams/{team_id}': Operation<'/teams/{team_id}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#delete-a-team-legacy

                              property "DELETE /teams/{team_id}/discussions/{discussion_number}"

                              'DELETE /teams/{team_id}/discussions/{discussion_number}': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy

                              property "DELETE /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}"

                              'DELETE /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy

                              property "DELETE /teams/{team_id}/members/{username}"

                              'DELETE /teams/{team_id}/members/{username}': Operation<
                              '/teams/{team_id}/members/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#remove-team-member-legacy

                              property "DELETE /teams/{team_id}/memberships/{username}"

                              'DELETE /teams/{team_id}/memberships/{username}': Operation<
                              '/teams/{team_id}/memberships/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy

                              property "DELETE /teams/{team_id}/projects/{project_id}"

                              'DELETE /teams/{team_id}/projects/{project_id}': Operation<
                              '/teams/{team_id}/projects/{project_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy

                              property "DELETE /teams/{team_id}/repos/{owner}/{repo}"

                              'DELETE /teams/{team_id}/repos/{owner}/{repo}': Operation<
                              '/teams/{team_id}/repos/{owner}/{repo}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy

                              property "DELETE /user/blocks/{username}"

                              'DELETE /user/blocks/{username}': Operation<'/user/blocks/{username}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/users/blocking#unblock-a-user

                              property "DELETE /user/codespaces/{codespace_name}"

                              'DELETE /user/codespaces/{codespace_name}': Operation<
                              '/user/codespaces/{codespace_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user

                              property "DELETE /user/codespaces/secrets/{secret_name}"

                              'DELETE /user/codespaces/secrets/{secret_name}': Operation<
                              '/user/codespaces/secrets/{secret_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user

                              property "DELETE /user/codespaces/secrets/{secret_name}/repositories/{repository_id}"

                              'DELETE /user/codespaces/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/user/codespaces/secrets/{secret_name}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret

                              property "DELETE /user/emails"

                              'DELETE /user/emails': Operation<'/user/emails', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/users/emails#delete-an-email-address-for-the-authenticated-user

                              property "DELETE /user/following/{username}"

                              'DELETE /user/following/{username}': Operation<
                              '/user/following/{username}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/followers#unfollow-a-user

                              property "DELETE /user/gpg_keys/{gpg_key_id}"

                              'DELETE /user/gpg_keys/{gpg_key_id}': Operation<
                              '/user/gpg_keys/{gpg_key_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user

                              property "DELETE /user/installations/{installation_id}/repositories/{repository_id}"

                              'DELETE /user/installations/{installation_id}/repositories/{repository_id}': Operation<
                              '/user/installations/{installation_id}/repositories/{repository_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation

                              property "DELETE /user/interaction-limits"

                              'DELETE /user/interaction-limits': Operation<
                              '/user/interaction-limits',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/user#remove-interaction-restrictions-from-your-public-repositories

                              property "DELETE /user/keys/{key_id}"

                              'DELETE /user/keys/{key_id}': Operation<'/user/keys/{key_id}', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user

                              property "DELETE /user/migrations/{migration_id}/archive"

                              'DELETE /user/migrations/{migration_id}/archive': Operation<
                              '/user/migrations/{migration_id}/archive',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive

                              property "DELETE /user/migrations/{migration_id}/repos/{repo_name}/lock"

                              'DELETE /user/migrations/{migration_id}/repos/{repo_name}/lock': Operation<
                              '/user/migrations/{migration_id}/repos/{repo_name}/lock',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#unlock-a-user-repository

                              property "DELETE /user/packages/{package_type}/{package_name}"

                              'DELETE /user/packages/{package_type}/{package_name}': Operation<
                              '/user/packages/{package_type}/{package_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user

                              property "DELETE /user/packages/{package_type}/{package_name}/versions/{package_version_id}"

                              'DELETE /user/packages/{package_type}/{package_name}/versions/{package_version_id}': Operation<
                              '/user/packages/{package_type}/{package_name}/versions/{package_version_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user

                              property "DELETE /user/repository_invitations/{invitation_id}"

                              'DELETE /user/repository_invitations/{invitation_id}': Operation<
                              '/user/repository_invitations/{invitation_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation

                              property "DELETE /user/social_accounts"

                              'DELETE /user/social_accounts': Operation<'/user/social_accounts', 'delete'>;
                              • See Also

                                • https://docs.github.com/rest/users/social-accounts#delete-social-accounts-for-the-authenticated-user

                              property "DELETE /user/ssh_signing_keys/{ssh_signing_key_id}"

                              'DELETE /user/ssh_signing_keys/{ssh_signing_key_id}': Operation<
                              '/user/ssh_signing_keys/{ssh_signing_key_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user

                              property "DELETE /user/starred/{owner}/{repo}"

                              'DELETE /user/starred/{owner}/{repo}': Operation<
                              '/user/starred/{owner}/{repo}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user

                              property "DELETE /users/{username}/packages/{package_type}/{package_name}"

                              'DELETE /users/{username}/packages/{package_type}/{package_name}': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user

                              property "DELETE /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}"

                              'DELETE /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}',
                              'delete'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user

                              property "GET /"

                              'GET /': Operation<'/', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/meta/meta#github-api-root

                              property "GET /advisories"

                              'GET /advisories': Operation<'/advisories', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/global-advisories#list-global-security-advisories

                              property "GET /advisories/{ghsa_id}"

                              'GET /advisories/{ghsa_id}': Operation<'/advisories/{ghsa_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory

                              property "GET /app"

                              'GET /app': Operation<'/app', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#get-the-authenticated-app

                              property "GET /app/hook/config"

                              'GET /app/hook/config': Operation<'/app/hook/config', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/webhooks#get-a-webhook-configuration-for-an-app

                              property "GET /app/hook/deliveries"

                              'GET /app/hook/deliveries': Operation<'/app/hook/deliveries', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/webhooks#list-deliveries-for-an-app-webhook

                              property "GET /app/hook/deliveries/{delivery_id}"

                              'GET /app/hook/deliveries/{delivery_id}': Operation<
                              '/app/hook/deliveries/{delivery_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/webhooks#get-a-delivery-for-an-app-webhook

                              property "GET /app/installation-requests"

                              'GET /app/installation-requests': Operation<'/app/installation-requests', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#list-installation-requests-for-the-authenticated-app

                              property "GET /app/installations"

                              'GET /app/installations': Operation<'/app/installations', 'get'>;
                              • See Also

                                • https://docs.github.com/enterprise-server@3.9/rest/apps/apps#list-installations-for-the-authenticated-app

                              property "GET /app/installations/{installation_id}"

                              'GET /app/installations/{installation_id}': Operation<
                              '/app/installations/{installation_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#get-an-installation-for-the-authenticated-app

                              property "GET /apps/{app_slug}"

                              'GET /apps/{app_slug}': Operation<'/apps/{app_slug}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#get-an-app

                              property "GET /assignments/{assignment_id}"

                              'GET /assignments/{assignment_id}': Operation<
                              '/assignments/{assignment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/classroom/classroom#get-an-assignment

                              property "GET /assignments/{assignment_id}/accepted_assignments"

                              'GET /assignments/{assignment_id}/accepted_assignments': Operation<
                              '/assignments/{assignment_id}/accepted_assignments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/classroom/classroom#list-accepted-assignments-for-an-assignment

                              property "GET /assignments/{assignment_id}/grades"

                              'GET /assignments/{assignment_id}/grades': Operation<
                              '/assignments/{assignment_id}/grades',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/classroom/classroom#get-assignment-grades

                              property "GET /classrooms"

                              'GET /classrooms': Operation<'/classrooms', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/classroom/classroom#list-classrooms

                              property "GET /classrooms/{classroom_id}"

                              'GET /classrooms/{classroom_id}': Operation<'/classrooms/{classroom_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/classroom/classroom#get-a-classroom

                              property "GET /classrooms/{classroom_id}/assignments"

                              'GET /classrooms/{classroom_id}/assignments': Operation<
                              '/classrooms/{classroom_id}/assignments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/classroom/classroom#list-assignments-for-a-classroom

                              property "GET /codes_of_conduct"

                              'GET /codes_of_conduct': Operation<'/codes_of_conduct', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-all-codes-of-conduct

                              property "GET /codes_of_conduct/{key}"

                              'GET /codes_of_conduct/{key}': Operation<'/codes_of_conduct/{key}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-a-code-of-conduct

                              property "GET /emojis"

                              'GET /emojis': Operation<'/emojis', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/emojis/emojis#get-emojis

                              property "GET /enterprises/{enterprise}/code-security/configurations"

                              'GET /enterprises/{enterprise}/code-security/configurations': Operation<
                              '/enterprises/{enterprise}/code-security/configurations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-enterprise

                              property "GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}"

                              'GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/{configuration_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise

                              property "GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories"

                              'GET /enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/{configuration_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration

                              property "GET /enterprises/{enterprise}/code-security/configurations/defaults"

                              'GET /enterprises/{enterprise}/code-security/configurations/defaults': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/defaults',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations-for-an-enterprise

                              property "GET /enterprises/{enterprise}/dependabot/alerts"

                              'GET /enterprises/{enterprise}/dependabot/alerts': Operation<
                              '/enterprises/{enterprise}/dependabot/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise

                              property "GET /enterprises/{enterprise}/secret-scanning/alerts"

                              'GET /enterprises/{enterprise}/secret-scanning/alerts': Operation<
                              '/enterprises/{enterprise}/secret-scanning/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise

                              property "GET /events"

                              'GET /events': Operation<'/events', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-public-events

                              property "GET /feeds"

                              'GET /feeds': Operation<'/feeds', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/feeds#get-feeds

                              property "GET /gists"

                              'GET /gists': Operation<'/gists', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user

                              property "GET /gists/{gist_id}"

                              'GET /gists/{gist_id}': Operation<'/gists/{gist_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#get-a-gist

                              property "GET /gists/{gist_id}/{sha}"

                              'GET /gists/{gist_id}/{sha}': Operation<'/gists/{gist_id}/{sha}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#get-a-gist-revision

                              property "GET /gists/{gist_id}/comments"

                              'GET /gists/{gist_id}/comments': Operation<'/gists/{gist_id}/comments', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/comments#list-gist-comments

                              property "GET /gists/{gist_id}/comments/{comment_id}"

                              'GET /gists/{gist_id}/comments/{comment_id}': Operation<
                              '/gists/{gist_id}/comments/{comment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/gists/comments#get-a-gist-comment

                              property "GET /gists/{gist_id}/commits"

                              'GET /gists/{gist_id}/commits': Operation<'/gists/{gist_id}/commits', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#list-gist-commits

                              property "GET /gists/{gist_id}/forks"

                              'GET /gists/{gist_id}/forks': Operation<'/gists/{gist_id}/forks', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#list-gist-forks

                              property "GET /gists/{gist_id}/star"

                              'GET /gists/{gist_id}/star': Operation<'/gists/{gist_id}/star', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred

                              property "GET /gists/public"

                              'GET /gists/public': Operation<'/gists/public', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#list-public-gists

                              property "GET /gists/starred"

                              'GET /gists/starred': Operation<'/gists/starred', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#list-starred-gists

                              property "GET /gitignore/templates"

                              'GET /gitignore/templates': Operation<'/gitignore/templates', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gitignore/gitignore#get-all-gitignore-templates

                              property "GET /gitignore/templates/{name}"

                              'GET /gitignore/templates/{name}': Operation<
                              '/gitignore/templates/{name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/gitignore/gitignore#get-a-gitignore-template

                              property "GET /installation/repositories"

                              'GET /installation/repositories': Operation<'/installation/repositories', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/installations#list-repositories-accessible-to-the-app-installation

                              property "GET /issues"

                              'GET /issues': Operation<'/issues', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#list-issues-assigned-to-the-authenticated-user

                              property "GET /licenses"

                              'GET /licenses': Operation<'/licenses', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/licenses/licenses#get-all-commonly-used-licenses

                              property "GET /licenses/{license}"

                              'GET /licenses/{license}': Operation<'/licenses/{license}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/licenses/licenses#get-a-license

                              property "GET /marketplace_listing/accounts/{account_id}"

                              'GET /marketplace_listing/accounts/{account_id}': Operation<
                              '/marketplace_listing/accounts/{account_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account

                              property "GET /marketplace_listing/plans"

                              'GET /marketplace_listing/plans': Operation<'/marketplace_listing/plans', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#list-plans

                              property "GET /marketplace_listing/plans/{plan_id}/accounts"

                              'GET /marketplace_listing/plans/{plan_id}/accounts': Operation<
                              '/marketplace_listing/plans/{plan_id}/accounts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan

                              property "GET /marketplace_listing/stubbed/accounts/{account_id}"

                              'GET /marketplace_listing/stubbed/accounts/{account_id}': Operation<
                              '/marketplace_listing/stubbed/accounts/{account_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed

                              property "GET /marketplace_listing/stubbed/plans"

                              'GET /marketplace_listing/stubbed/plans': Operation<
                              '/marketplace_listing/stubbed/plans',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#list-plans-stubbed

                              property "GET /marketplace_listing/stubbed/plans/{plan_id}/accounts"

                              'GET /marketplace_listing/stubbed/plans/{plan_id}/accounts': Operation<
                              '/marketplace_listing/stubbed/plans/{plan_id}/accounts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed

                              property "GET /meta"

                              'GET /meta': Operation<'/meta', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/meta/meta#get-apiname-meta-information

                              property "GET /networks/{owner}/{repo}/events"

                              'GET /networks/{owner}/{repo}/events': Operation<
                              '/networks/{owner}/{repo}/events',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories

                              property "GET /notifications"

                              'GET /notifications': Operation<'/notifications', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user

                              property "GET /notifications/threads/{thread_id}"

                              'GET /notifications/threads/{thread_id}': Operation<
                              '/notifications/threads/{thread_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#get-a-thread

                              property "GET /notifications/threads/{thread_id}/subscription"

                              'GET /notifications/threads/{thread_id}/subscription': Operation<
                              '/notifications/threads/{thread_id}/subscription',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user

                              property "GET /octocat"

                              'GET /octocat': Operation<'/octocat', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/meta/meta#get-octocat

                              property "GET /organizations"

                              'GET /organizations': Operation<'/organizations', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#list-organizations

                              property "GET /organizations/{org}/settings/billing/usage"

                              'GET /organizations/{org}/settings/billing/usage': Operation<
                              '/organizations/{org}/settings/billing/usage',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization

                              property "GET /orgs/{org_id}/codespaces"

                              'GET /orgs/{org_id}/codespaces': Operation<'/orgs/{org}/codespaces', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#list-codespaces-for-the-organization

                                Deprecated

                                "org_id" is now "org"

                              property "GET /orgs/{org}"

                              'GET /orgs/{org}': Operation<'/orgs/{org}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#get-an-organization

                              property "GET /orgs/{org}/actions/cache/usage-by-repository"

                              'GET /orgs/{org}/actions/cache/usage-by-repository': Operation<
                              '/orgs/{org}/actions/cache/usage-by-repository',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization

                              property "GET /orgs/{org}/actions/cache/usage"

                              'GET /orgs/{org}/actions/cache/usage': Operation<
                              '/orgs/{org}/actions/cache/usage',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners"

                              'GET /orgs/{org}/actions/hosted-runners': Operation<
                              '/orgs/{org}/actions/hosted-runners',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners/{hosted_runner_id}"

                              'GET /orgs/{org}/actions/hosted-runners/{hosted_runner_id}': Operation<
                              '/orgs/{org}/actions/hosted-runners/{hosted_runner_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners/images/github-owned"

                              'GET /orgs/{org}/actions/hosted-runners/images/github-owned': Operation<
                              '/orgs/{org}/actions/hosted-runners/images/github-owned',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners/images/partner"

                              'GET /orgs/{org}/actions/hosted-runners/images/partner': Operation<
                              '/orgs/{org}/actions/hosted-runners/images/partner',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners/limits"

                              'GET /orgs/{org}/actions/hosted-runners/limits': Operation<
                              '/orgs/{org}/actions/hosted-runners/limits',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners/machine-sizes"

                              'GET /orgs/{org}/actions/hosted-runners/machine-sizes': Operation<
                              '/orgs/{org}/actions/hosted-runners/machine-sizes',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization

                              property "GET /orgs/{org}/actions/hosted-runners/platforms"

                              'GET /orgs/{org}/actions/hosted-runners/platforms': Operation<
                              '/orgs/{org}/actions/hosted-runners/platforms',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization

                              property "GET /orgs/{org}/actions/oidc/customization/sub"

                              'GET /orgs/{org}/actions/oidc/customization/sub': Operation<
                              '/orgs/{org}/actions/oidc/customization/sub',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization

                              property "GET /orgs/{org}/actions/permissions"

                              'GET /orgs/{org}/actions/permissions': Operation<
                              '/orgs/{org}/actions/permissions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization

                              property "GET /orgs/{org}/actions/permissions/repositories"

                              'GET /orgs/{org}/actions/permissions/repositories': Operation<
                              '/orgs/{org}/actions/permissions/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization

                              property "GET /orgs/{org}/actions/permissions/selected-actions"

                              'GET /orgs/{org}/actions/permissions/selected-actions': Operation<
                              '/orgs/{org}/actions/permissions/selected-actions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization

                              property "GET /orgs/{org}/actions/permissions/workflow"

                              'GET /orgs/{org}/actions/permissions/workflow': Operation<
                              '/orgs/{org}/actions/permissions/workflow',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization

                              property "GET /orgs/{org}/actions/runner-groups"

                              'GET /orgs/{org}/actions/runner-groups': Operation<
                              '/orgs/{org}/actions/runner-groups',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization

                              property "GET /orgs/{org}/actions/runner-groups/{runner_group_id}"

                              'GET /orgs/{org}/actions/runner-groups/{runner_group_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization

                              property "GET /orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners"

                              'GET /orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization

                              property "GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories"

                              'GET /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization

                              property "GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners"

                              'GET /orgs/{org}/actions/runner-groups/{runner_group_id}/runners': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/runners',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization

                              property "GET /orgs/{org}/actions/runners"

                              'GET /orgs/{org}/actions/runners': Operation<
                              '/orgs/{org}/actions/runners',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#list-self-hosted-runners-for-an-organization

                              property "GET /orgs/{org}/actions/runners/{runner_id}"

                              'GET /orgs/{org}/actions/runners/{runner_id}': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization

                              property "GET /orgs/{org}/actions/runners/{runner_id}/labels"

                              'GET /orgs/{org}/actions/runners/{runner_id}/labels': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}/labels',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization

                              property "GET /orgs/{org}/actions/runners/downloads"

                              'GET /orgs/{org}/actions/runners/downloads': Operation<
                              '/orgs/{org}/actions/runners/downloads',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization

                              property "GET /orgs/{org}/actions/secrets"

                              'GET /orgs/{org}/actions/secrets': Operation<
                              '/orgs/{org}/actions/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#list-organization-secrets

                              property "GET /orgs/{org}/actions/secrets/{secret_name}"

                              'GET /orgs/{org}/actions/secrets/{secret_name}': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#get-an-organization-secret

                              property "GET /orgs/{org}/actions/secrets/{secret_name}/repositories"

                              'GET /orgs/{org}/actions/secrets/{secret_name}/repositories': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret

                              property "GET /orgs/{org}/actions/secrets/public-key"

                              'GET /orgs/{org}/actions/secrets/public-key': Operation<
                              '/orgs/{org}/actions/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#get-an-organization-public-key

                              property "GET /orgs/{org}/actions/variables"

                              'GET /orgs/{org}/actions/variables': Operation<
                              '/orgs/{org}/actions/variables',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#list-organization-variables

                              property "GET /orgs/{org}/actions/variables/{name}"

                              'GET /orgs/{org}/actions/variables/{name}': Operation<
                              '/orgs/{org}/actions/variables/{name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#get-an-organization-variable

                              property "GET /orgs/{org}/actions/variables/{name}/repositories"

                              'GET /orgs/{org}/actions/variables/{name}/repositories': Operation<
                              '/orgs/{org}/actions/variables/{name}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable

                              property "GET /orgs/{org}/attestations/{subject_digest}"

                              'GET /orgs/{org}/attestations/{subject_digest}': Operation<
                              '/orgs/{org}/attestations/{subject_digest}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#list-attestations

                              property "GET /orgs/{org}/blocks"

                              'GET /orgs/{org}/blocks': Operation<'/orgs/{org}/blocks', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization

                              property "GET /orgs/{org}/blocks/{username}"

                              'GET /orgs/{org}/blocks/{username}': Operation<
                              '/orgs/{org}/blocks/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization

                              property "GET /orgs/{org}/campaigns"

                              'GET /orgs/{org}/campaigns': Operation<'/orgs/{org}/campaigns', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization

                              property "GET /orgs/{org}/campaigns/{campaign_number}"

                              'GET /orgs/{org}/campaigns/{campaign_number}': Operation<
                              '/orgs/{org}/campaigns/{campaign_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization

                              property "GET /orgs/{org}/code-scanning/alerts"

                              'GET /orgs/{org}/code-scanning/alerts': Operation<
                              '/orgs/{org}/code-scanning/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization

                              property "GET /orgs/{org}/code-security/configurations"

                              'GET /orgs/{org}/code-security/configurations': Operation<
                              '/orgs/{org}/code-security/configurations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization

                              property "GET /orgs/{org}/code-security/configurations/{configuration_id}"

                              'GET /orgs/{org}/code-security/configurations/{configuration_id}': Operation<
                              '/orgs/{org}/code-security/configurations/{configuration_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration

                              property "GET /orgs/{org}/code-security/configurations/{configuration_id}/repositories"

                              'GET /orgs/{org}/code-security/configurations/{configuration_id}/repositories': Operation<
                              '/orgs/{org}/code-security/configurations/{configuration_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration

                              property "GET /orgs/{org}/code-security/configurations/defaults"

                              'GET /orgs/{org}/code-security/configurations/defaults': Operation<
                              '/orgs/{org}/code-security/configurations/defaults',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations

                              property "GET /orgs/{org}/codespaces"

                              'GET /orgs/{org}/codespaces': Operation<'/orgs/{org}/codespaces', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#list-codespaces-for-the-organization

                              property "GET /orgs/{org}/codespaces/secrets"

                              'GET /orgs/{org}/codespaces/secrets': Operation<
                              '/orgs/{org}/codespaces/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets

                              property "GET /orgs/{org}/codespaces/secrets/{secret_name}"

                              'GET /orgs/{org}/codespaces/secrets/{secret_name}': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret

                              property "GET /orgs/{org}/codespaces/secrets/{secret_name}/repositories"

                              'GET /orgs/{org}/codespaces/secrets/{secret_name}/repositories': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret

                              property "GET /orgs/{org}/codespaces/secrets/public-key"

                              'GET /orgs/{org}/codespaces/secrets/public-key': Operation<
                              '/orgs/{org}/codespaces/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key

                              property "GET /orgs/{org}/copilot/billing"

                              'GET /orgs/{org}/copilot/billing': Operation<
                              '/orgs/{org}/copilot/billing',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization

                              property "GET /orgs/{org}/copilot/billing/seats"

                              'GET /orgs/{org}/copilot/billing/seats': Operation<
                              '/orgs/{org}/copilot/billing/seats',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization

                              property "GET /orgs/{org}/copilot/metrics"

                              'GET /orgs/{org}/copilot/metrics': Operation<
                              '/orgs/{org}/copilot/metrics',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization

                              property "GET /orgs/{org}/dependabot/alerts"

                              'GET /orgs/{org}/dependabot/alerts': Operation<
                              '/orgs/{org}/dependabot/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization

                              property "GET /orgs/{org}/dependabot/secrets"

                              'GET /orgs/{org}/dependabot/secrets': Operation<
                              '/orgs/{org}/dependabot/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#list-organization-secrets

                              property "GET /orgs/{org}/dependabot/secrets/{secret_name}"

                              'GET /orgs/{org}/dependabot/secrets/{secret_name}': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret

                              property "GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories"

                              'GET /orgs/{org}/dependabot/secrets/{secret_name}/repositories': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret

                              property "GET /orgs/{org}/dependabot/secrets/public-key"

                              'GET /orgs/{org}/dependabot/secrets/public-key': Operation<
                              '/orgs/{org}/dependabot/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key

                              property "GET /orgs/{org}/docker/conflicts"

                              'GET /orgs/{org}/docker/conflicts': Operation<
                              '/orgs/{org}/docker/conflicts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization

                              property "GET /orgs/{org}/events"

                              'GET /orgs/{org}/events': Operation<'/orgs/{org}/events', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-public-organization-events

                              property "GET /orgs/{org}/failed_invitations"

                              'GET /orgs/{org}/failed_invitations': Operation<
                              '/orgs/{org}/failed_invitations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#list-failed-organization-invitations

                              property "GET /orgs/{org}/hooks"

                              'GET /orgs/{org}/hooks': Operation<'/orgs/{org}/hooks', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks

                              property "GET /orgs/{org}/hooks/{hook_id}"

                              'GET /orgs/{org}/hooks/{hook_id}': Operation<
                              '/orgs/{org}/hooks/{hook_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook

                              property "GET /orgs/{org}/hooks/{hook_id}/config"

                              'GET /orgs/{org}/hooks/{hook_id}/config': Operation<
                              '/orgs/{org}/hooks/{hook_id}/config',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization

                              property "GET /orgs/{org}/hooks/{hook_id}/deliveries"

                              'GET /orgs/{org}/hooks/{hook_id}/deliveries': Operation<
                              '/orgs/{org}/hooks/{hook_id}/deliveries',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook

                              property "GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}"

                              'GET /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}': Operation<
                              '/orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook

                              property "GET /orgs/{org}/insights/api/route-stats/{actor_type}/{actor_id}"

                              'GET /orgs/{org}/insights/api/route-stats/{actor_type}/{actor_id}': Operation<
                              '/orgs/{org}/insights/api/route-stats/{actor_type}/{actor_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor

                              property "GET /orgs/{org}/insights/api/subject-stats"

                              'GET /orgs/{org}/insights/api/subject-stats': Operation<
                              '/orgs/{org}/insights/api/subject-stats',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-subject-stats

                              property "GET /orgs/{org}/insights/api/summary-stats"

                              'GET /orgs/{org}/insights/api/summary-stats': Operation<
                              '/orgs/{org}/insights/api/summary-stats',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-summary-stats

                              property "GET /orgs/{org}/insights/api/summary-stats/{actor_type}/{actor_id}"

                              'GET /orgs/{org}/insights/api/summary-stats/{actor_type}/{actor_id}': Operation<
                              '/orgs/{org}/insights/api/summary-stats/{actor_type}/{actor_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor

                              property "GET /orgs/{org}/insights/api/summary-stats/users/{user_id}"

                              'GET /orgs/{org}/insights/api/summary-stats/users/{user_id}': Operation<
                              '/orgs/{org}/insights/api/summary-stats/users/{user_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user

                              property "GET /orgs/{org}/insights/api/time-stats"

                              'GET /orgs/{org}/insights/api/time-stats': Operation<
                              '/orgs/{org}/insights/api/time-stats',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-time-stats

                              property "GET /orgs/{org}/insights/api/time-stats/{actor_type}/{actor_id}"

                              'GET /orgs/{org}/insights/api/time-stats/{actor_type}/{actor_id}': Operation<
                              '/orgs/{org}/insights/api/time-stats/{actor_type}/{actor_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor

                              property "GET /orgs/{org}/insights/api/time-stats/users/{user_id}"

                              'GET /orgs/{org}/insights/api/time-stats/users/{user_id}': Operation<
                              '/orgs/{org}/insights/api/time-stats/users/{user_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user

                              property "GET /orgs/{org}/insights/api/user-stats/{user_id}"

                              'GET /orgs/{org}/insights/api/user-stats/{user_id}': Operation<
                              '/orgs/{org}/insights/api/user-stats/{user_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/api-insights#get-user-stats

                              property "GET /orgs/{org}/installation"

                              'GET /orgs/{org}/installation': Operation<'/orgs/{org}/installation', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app

                              property "GET /orgs/{org}/installations"

                              'GET /orgs/{org}/installations': Operation<'/orgs/{org}/installations', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization

                              property "GET /orgs/{org}/interaction-limits"

                              'GET /orgs/{org}/interaction-limits': Operation<
                              '/orgs/{org}/interaction-limits',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization

                              property "GET /orgs/{org}/invitations"

                              'GET /orgs/{org}/invitations': Operation<'/orgs/{org}/invitations', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#list-pending-organization-invitations

                              property "GET /orgs/{org}/invitations/{invitation_id}/teams"

                              'GET /orgs/{org}/invitations/{invitation_id}/teams': Operation<
                              '/orgs/{org}/invitations/{invitation_id}/teams',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#list-organization-invitation-teams

                              property "GET /orgs/{org}/issue-types"

                              'GET /orgs/{org}/issue-types': Operation<'/orgs/{org}/issue-types', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization

                              property "GET /orgs/{org}/issues"

                              'GET /orgs/{org}/issues': Operation<'/orgs/{org}/issues', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user

                              property "GET /orgs/{org}/members"

                              'GET /orgs/{org}/members': Operation<'/orgs/{org}/members', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#list-organization-members

                              property "GET /orgs/{org}/members/{username}"

                              'GET /orgs/{org}/members/{username}': Operation<
                              '/orgs/{org}/members/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user

                              property "GET /orgs/{org}/members/{username}/codespaces"

                              'GET /orgs/{org}/members/{username}/codespaces': Operation<
                              '/orgs/{org}/members/{username}/codespaces',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#list-codespaces-for-a-user-in-organization

                              property "GET /orgs/{org}/members/{username}/copilot"

                              'GET /orgs/{org}/members/{username}/copilot': Operation<
                              '/orgs/{org}/members/{username}/copilot',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user

                              property "GET /orgs/{org}/memberships/{username}"

                              'GET /orgs/{org}/memberships/{username}': Operation<
                              '/orgs/{org}/memberships/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user

                              property "GET /orgs/{org}/migrations"

                              'GET /orgs/{org}/migrations': Operation<'/orgs/{org}/migrations', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#list-organization-migrations

                              property "GET /orgs/{org}/migrations/{migration_id}"

                              'GET /orgs/{org}/migrations/{migration_id}': Operation<
                              '/orgs/{org}/migrations/{migration_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status

                              property "GET /orgs/{org}/migrations/{migration_id}/archive"

                              'GET /orgs/{org}/migrations/{migration_id}/archive': Operation<
                              '/orgs/{org}/migrations/{migration_id}/archive',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive

                              property "GET /orgs/{org}/migrations/{migration_id}/repositories"

                              'GET /orgs/{org}/migrations/{migration_id}/repositories': Operation<
                              '/orgs/{org}/migrations/{migration_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration

                              property "GET /orgs/{org}/organization-fine-grained-permissions"

                              'GET /orgs/{org}/organization-fine-grained-permissions': Operation<
                              '/orgs/{org}/organization-fine-grained-permissions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization

                              property "GET /orgs/{org}/organization-roles"

                              'GET /orgs/{org}/organization-roles': Operation<
                              '/orgs/{org}/organization-roles',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization

                              property "GET /orgs/{org}/organization-roles/{role_id}"

                              'GET /orgs/{org}/organization-roles/{role_id}': Operation<
                              '/orgs/{org}/organization-roles/{role_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role

                              property "GET /orgs/{org}/organization-roles/{role_id}/teams"

                              'GET /orgs/{org}/organization-roles/{role_id}/teams': Operation<
                              '/orgs/{org}/organization-roles/{role_id}/teams',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role

                              property "GET /orgs/{org}/organization-roles/{role_id}/users"

                              'GET /orgs/{org}/organization-roles/{role_id}/users': Operation<
                              '/orgs/{org}/organization-roles/{role_id}/users',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role

                              property "GET /orgs/{org}/outside_collaborators"

                              'GET /orgs/{org}/outside_collaborators': Operation<
                              '/orgs/{org}/outside_collaborators',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization

                              property "GET /orgs/{org}/packages"

                              'GET /orgs/{org}/packages': Operation<'/orgs/{org}/packages', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#list-packages-for-an-organization

                              property "GET /orgs/{org}/packages/{package_type}/{package_name}"

                              'GET /orgs/{org}/packages/{package_type}/{package_name}': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization

                              property "GET /orgs/{org}/packages/{package_type}/{package_name}/versions"

                              'GET /orgs/{org}/packages/{package_type}/{package_name}/versions': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}/versions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization

                              property "GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}"

                              'GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization

                              property "GET /orgs/{org}/personal-access-token-requests"

                              'GET /orgs/{org}/personal-access-token-requests': Operation<
                              '/orgs/{org}/personal-access-token-requests',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens

                              property "GET /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories"

                              'GET /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories': Operation<
                              '/orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token

                              property "GET /orgs/{org}/personal-access-tokens"

                              'GET /orgs/{org}/personal-access-tokens': Operation<
                              '/orgs/{org}/personal-access-tokens',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources

                              property "GET /orgs/{org}/personal-access-tokens/{pat_id}/repositories"

                              'GET /orgs/{org}/personal-access-tokens/{pat_id}/repositories': Operation<
                              '/orgs/{org}/personal-access-tokens/{pat_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to

                              property "GET /orgs/{org}/private-registries"

                              'GET /orgs/{org}/private-registries': Operation<
                              '/orgs/{org}/private-registries',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization

                              property "GET /orgs/{org}/private-registries/{secret_name}"

                              'GET /orgs/{org}/private-registries/{secret_name}': Operation<
                              '/orgs/{org}/private-registries/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization

                              property "GET /orgs/{org}/private-registries/public-key"

                              'GET /orgs/{org}/private-registries/public-key': Operation<
                              '/orgs/{org}/private-registries/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization

                              property "GET /orgs/{org}/projects"

                              'GET /orgs/{org}/projects': Operation<'/orgs/{org}/projects', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#list-organization-projects

                              property "GET /orgs/{org}/properties/schema"

                              'GET /orgs/{org}/properties/schema': Operation<
                              '/orgs/{org}/properties/schema',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization

                              property "GET /orgs/{org}/properties/schema/{custom_property_name}"

                              'GET /orgs/{org}/properties/schema/{custom_property_name}': Operation<
                              '/orgs/{org}/properties/schema/{custom_property_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization

                              property "GET /orgs/{org}/properties/values"

                              'GET /orgs/{org}/properties/values': Operation<
                              '/orgs/{org}/properties/values',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories

                              property "GET /orgs/{org}/public_members"

                              'GET /orgs/{org}/public_members': Operation<'/orgs/{org}/public_members', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#list-public-organization-members

                              property "GET /orgs/{org}/public_members/{username}"

                              'GET /orgs/{org}/public_members/{username}': Operation<
                              '/orgs/{org}/public_members/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user

                              property "GET /orgs/{org}/repos"

                              'GET /orgs/{org}/repos': Operation<'/orgs/{org}/repos', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-organization-repositories

                              property "GET /orgs/{org}/rulesets"

                              'GET /orgs/{org}/rulesets': Operation<'/orgs/{org}/rulesets', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#get-all-organization-repository-rulesets

                              property "GET /orgs/{org}/rulesets/{ruleset_id}"

                              'GET /orgs/{org}/rulesets/{ruleset_id}': Operation<
                              '/orgs/{org}/rulesets/{ruleset_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#get-an-organization-repository-ruleset

                              property "GET /orgs/{org}/rulesets/{ruleset_id}/history"

                              'GET /orgs/{org}/rulesets/{ruleset_id}/history': Operation<
                              '/orgs/{org}/rulesets/{ruleset_id}/history',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history

                              property "GET /orgs/{org}/rulesets/{ruleset_id}/history/{version_id}"

                              'GET /orgs/{org}/rulesets/{ruleset_id}/history/{version_id}': Operation<
                              '/orgs/{org}/rulesets/{ruleset_id}/history/{version_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version

                              property "GET /orgs/{org}/rulesets/rule-suites"

                              'GET /orgs/{org}/rulesets/rule-suites': Operation<
                              '/orgs/{org}/rulesets/rule-suites',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites

                              property "GET /orgs/{org}/rulesets/rule-suites/{rule_suite_id}"

                              'GET /orgs/{org}/rulesets/rule-suites/{rule_suite_id}': Operation<
                              '/orgs/{org}/rulesets/rule-suites/{rule_suite_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite

                              property "GET /orgs/{org}/secret-scanning/alerts"

                              'GET /orgs/{org}/secret-scanning/alerts': Operation<
                              '/orgs/{org}/secret-scanning/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization

                              property "GET /orgs/{org}/security-advisories"

                              'GET /orgs/{org}/security-advisories': Operation<
                              '/orgs/{org}/security-advisories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization

                              property "GET /orgs/{org}/security-managers"

                              'GET /orgs/{org}/security-managers': Operation<
                              '/orgs/{org}/security-managers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams

                              property "GET /orgs/{org}/settings/billing/actions"

                              'GET /orgs/{org}/settings/billing/actions': Operation<
                              '/orgs/{org}/settings/billing/actions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/billing#get-github-actions-billing-for-an-organization

                              property "GET /orgs/{org}/settings/billing/packages"

                              'GET /orgs/{org}/settings/billing/packages': Operation<
                              '/orgs/{org}/settings/billing/packages',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/billing#get-github-packages-billing-for-an-organization

                              property "GET /orgs/{org}/settings/billing/shared-storage"

                              'GET /orgs/{org}/settings/billing/shared-storage': Operation<
                              '/orgs/{org}/settings/billing/shared-storage',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/billing#get-shared-storage-billing-for-an-organization

                              property "GET /orgs/{org}/settings/network-configurations"

                              'GET /orgs/{org}/settings/network-configurations': Operation<
                              '/orgs/{org}/settings/network-configurations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization

                              property "GET /orgs/{org}/settings/network-configurations/{network_configuration_id}"

                              'GET /orgs/{org}/settings/network-configurations/{network_configuration_id}': Operation<
                              '/orgs/{org}/settings/network-configurations/{network_configuration_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization

                              property "GET /orgs/{org}/settings/network-settings/{network_settings_id}"

                              'GET /orgs/{org}/settings/network-settings/{network_settings_id}': Operation<
                              '/orgs/{org}/settings/network-settings/{network_settings_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization

                              property "GET /orgs/{org}/team/{team_slug}/copilot/metrics"

                              'GET /orgs/{org}/team/{team_slug}/copilot/metrics': Operation<
                              '/orgs/{org}/team/{team_slug}/copilot/metrics',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team

                              property "GET /orgs/{org}/teams"

                              'GET /orgs/{org}/teams': Operation<'/orgs/{org}/teams', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-teams

                              property "GET /orgs/{org}/teams/{team_slug}"

                              'GET /orgs/{org}/teams/{team_slug}': Operation<
                              '/orgs/{org}/teams/{team_slug}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#get-a-team-by-name

                              property "GET /orgs/{org}/teams/{team_slug}/discussions"

                              'GET /orgs/{org}/teams/{team_slug}/discussions': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#list-discussions

                              property "GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}"

                              'GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#get-a-discussion

                              property "GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments"

                              'GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments

                              property "GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}"

                              'GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment

                              property "GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions"

                              'GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment

                              property "GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions"

                              'GET /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion

                              property "GET /orgs/{org}/teams/{team_slug}/invitations"

                              'GET /orgs/{org}/teams/{team_slug}/invitations': Operation<
                              '/orgs/{org}/teams/{team_slug}/invitations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#list-pending-team-invitations

                              property "GET /orgs/{org}/teams/{team_slug}/members"

                              'GET /orgs/{org}/teams/{team_slug}/members': Operation<
                              '/orgs/{org}/teams/{team_slug}/members',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#list-team-members

                              property "GET /orgs/{org}/teams/{team_slug}/memberships/{username}"

                              'GET /orgs/{org}/teams/{team_slug}/memberships/{username}': Operation<
                              '/orgs/{org}/teams/{team_slug}/memberships/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#get-team-membership-for-a-user

                              property "GET /orgs/{org}/teams/{team_slug}/projects"

                              'GET /orgs/{org}/teams/{team_slug}/projects': Operation<
                              '/orgs/{org}/teams/{team_slug}/projects',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-team-projects

                              property "GET /orgs/{org}/teams/{team_slug}/projects/{project_id}"

                              'GET /orgs/{org}/teams/{team_slug}/projects/{project_id}': Operation<
                              '/orgs/{org}/teams/{team_slug}/projects/{project_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project

                              property "GET /orgs/{org}/teams/{team_slug}/repos"

                              'GET /orgs/{org}/teams/{team_slug}/repos': Operation<
                              '/orgs/{org}/teams/{team_slug}/repos',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-team-repositories

                              property "GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}"

                              'GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}': Operation<
                              '/orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository

                              property "GET /orgs/{org}/teams/{team_slug}/teams"

                              'GET /orgs/{org}/teams/{team_slug}/teams': Operation<
                              '/orgs/{org}/teams/{team_slug}/teams',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-child-teams

                              property "GET /projects/{project_id}"

                              'GET /projects/{project_id}': Operation<'/projects/{project_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#get-a-project

                              property "GET /projects/{project_id}/collaborators"

                              'GET /projects/{project_id}/collaborators': Operation<
                              '/projects/{project_id}/collaborators',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/collaborators#list-project-collaborators

                              property "GET /projects/{project_id}/collaborators/{username}/permission"

                              'GET /projects/{project_id}/collaborators/{username}/permission': Operation<
                              '/projects/{project_id}/collaborators/{username}/permission',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user

                              property "GET /projects/{project_id}/columns"

                              'GET /projects/{project_id}/columns': Operation<
                              '/projects/{project_id}/columns',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/columns#list-project-columns

                              property "GET /projects/columns/{column_id}"

                              'GET /projects/columns/{column_id}': Operation<
                              '/projects/columns/{column_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/columns#get-a-project-column

                              property "GET /projects/columns/{column_id}/cards"

                              'GET /projects/columns/{column_id}/cards': Operation<
                              '/projects/columns/{column_id}/cards',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/cards#list-project-cards

                              property "GET /projects/columns/cards/{card_id}"

                              'GET /projects/columns/cards/{card_id}': Operation<
                              '/projects/columns/cards/{card_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/cards#get-a-project-card

                              property "GET /rate_limit"

                              'GET /rate_limit': Operation<'/rate_limit', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/rate-limit/rate-limit#get-rate-limit-status-for-the-authenticated-user

                              property "GET /repos/{owner}/{repo}"

                              'GET /repos/{owner}/{repo}': Operation<'/repos/{owner}/{repo}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#get-a-repository

                              property "GET /repos/{owner}/{repo}/actions/artifacts"

                              'GET /repos/{owner}/{repo}/actions/artifacts': Operation<
                              '/repos/{owner}/{repo}/actions/artifacts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"

                              'GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}': Operation<
                              '/repos/{owner}/{repo}/actions/artifacts/{artifact_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/artifacts#get-an-artifact

                              property "GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}"

                              'GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}': Operation<
                              '/repos/{owner}/{repo}/actions/artifacts/{artifact_id}/{archive_format}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/artifacts#download-an-artifact

                              property "GET /repos/{owner}/{repo}/actions/cache/usage"

                              'GET /repos/{owner}/{repo}/actions/cache/usage': Operation<
                              '/repos/{owner}/{repo}/actions/cache/usage',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/caches"

                              'GET /repos/{owner}/{repo}/actions/caches': Operation<
                              '/repos/{owner}/{repo}/actions/caches',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/jobs/{job_id}"

                              'GET /repos/{owner}/{repo}/actions/jobs/{job_id}': Operation<
                              '/repos/{owner}/{repo}/actions/jobs/{job_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run

                              property "GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs"

                              'GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs': Operation<
                              '/repos/{owner}/{repo}/actions/jobs/{job_id}/logs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run

                              property "GET /repos/{owner}/{repo}/actions/oidc/customization/sub"

                              'GET /repos/{owner}/{repo}/actions/oidc/customization/sub': Operation<
                              '/repos/{owner}/{repo}/actions/oidc/customization/sub',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/organization-secrets"

                              'GET /repos/{owner}/{repo}/actions/organization-secrets': Operation<
                              '/repos/{owner}/{repo}/actions/organization-secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets

                              property "GET /repos/{owner}/{repo}/actions/organization-variables"

                              'GET /repos/{owner}/{repo}/actions/organization-variables': Operation<
                              '/repos/{owner}/{repo}/actions/organization-variables',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#list-repository-organization-variables

                              property "GET /repos/{owner}/{repo}/actions/permissions"

                              'GET /repos/{owner}/{repo}/actions/permissions': Operation<
                              '/repos/{owner}/{repo}/actions/permissions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/permissions/access"

                              'GET /repos/{owner}/{repo}/actions/permissions/access': Operation<
                              '/repos/{owner}/{repo}/actions/permissions/access',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository

                              property "GET /repos/{owner}/{repo}/actions/permissions/selected-actions"

                              'GET /repos/{owner}/{repo}/actions/permissions/selected-actions': Operation<
                              '/repos/{owner}/{repo}/actions/permissions/selected-actions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/permissions/workflow"

                              'GET /repos/{owner}/{repo}/actions/permissions/workflow': Operation<
                              '/repos/{owner}/{repo}/actions/permissions/workflow',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/runners"

                              'GET /repos/{owner}/{repo}/actions/runners': Operation<
                              '/repos/{owner}/{repo}/actions/runners',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#list-self-hosted-runners-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/runners/{runner_id}"

                              'GET /repos/{owner}/{repo}/actions/runners/{runner_id}': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"

                              'GET /repos/{owner}/{repo}/actions/runners/{runner_id}/labels': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}/labels',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/runners/downloads"

                              'GET /repos/{owner}/{repo}/actions/runners/downloads': Operation<
                              '/repos/{owner}/{repo}/actions/runners/downloads',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/runs"

                              'GET /repos/{owner}/{repo}/actions/runs': Operation<
                              '/repos/{owner}/{repo}/actions/runs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/approvals',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/artifacts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/logs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/jobs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/logs"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/logs': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/logs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run

                              property "GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing"

                              'GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/timing',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage

                              property "GET /repos/{owner}/{repo}/actions/secrets"

                              'GET /repos/{owner}/{repo}/actions/secrets': Operation<
                              '/repos/{owner}/{repo}/actions/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#list-repository-secrets

                              property "GET /repos/{owner}/{repo}/actions/secrets/{secret_name}"

                              'GET /repos/{owner}/{repo}/actions/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/actions/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#get-a-repository-secret

                              property "GET /repos/{owner}/{repo}/actions/secrets/public-key"

                              'GET /repos/{owner}/{repo}/actions/secrets/public-key': Operation<
                              '/repos/{owner}/{repo}/actions/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#get-a-repository-public-key

                              property "GET /repos/{owner}/{repo}/actions/variables"

                              'GET /repos/{owner}/{repo}/actions/variables': Operation<
                              '/repos/{owner}/{repo}/actions/variables',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#list-repository-variables

                              property "GET /repos/{owner}/{repo}/actions/variables/{name}"

                              'GET /repos/{owner}/{repo}/actions/variables/{name}': Operation<
                              '/repos/{owner}/{repo}/actions/variables/{name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#get-a-repository-variable

                              property "GET /repos/{owner}/{repo}/actions/workflows"

                              'GET /repos/{owner}/{repo}/actions/workflows': Operation<
                              '/repos/{owner}/{repo}/actions/workflows',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflows#list-repository-workflows

                              property "GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}"

                              'GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}': Operation<
                              '/repos/{owner}/{repo}/actions/workflows/{workflow_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflows#get-a-workflow

                              property "GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs"

                              'GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs': Operation<
                              '/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow

                              property "GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing"

                              'GET /repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing': Operation<
                              '/repos/{owner}/{repo}/actions/workflows/{workflow_id}/timing',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflows#get-workflow-usage

                              property "GET /repos/{owner}/{repo}/activity"

                              'GET /repos/{owner}/{repo}/activity': Operation<
                              '/repos/{owner}/{repo}/activity',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repository-activities

                              property "GET /repos/{owner}/{repo}/assignees"

                              'GET /repos/{owner}/{repo}/assignees': Operation<
                              '/repos/{owner}/{repo}/assignees',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/assignees#list-assignees

                              property "GET /repos/{owner}/{repo}/assignees/{assignee}"

                              'GET /repos/{owner}/{repo}/assignees/{assignee}': Operation<
                              '/repos/{owner}/{repo}/assignees/{assignee}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned

                              property "GET /repos/{owner}/{repo}/attestations/{subject_digest}"

                              'GET /repos/{owner}/{repo}/attestations/{subject_digest}': Operation<
                              '/repos/{owner}/{repo}/attestations/{subject_digest}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-attestations

                              property "GET /repos/{owner}/{repo}/autolinks"

                              'GET /repos/{owner}/{repo}/autolinks': Operation<
                              '/repos/{owner}/{repo}/autolinks',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository

                              'GET /repos/{owner}/{repo}/autolinks/{autolink_id}': Operation<
                              '/repos/{owner}/{repo}/autolinks/{autolink_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository

                              property "GET /repos/{owner}/{repo}/automated-security-fixes"

                              'GET /repos/{owner}/{repo}/automated-security-fixes': Operation<
                              '/repos/{owner}/{repo}/automated-security-fixes',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository

                              property "GET /repos/{owner}/{repo}/branches"

                              'GET /repos/{owner}/{repo}/branches': Operation<
                              '/repos/{owner}/{repo}/branches',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branches#list-branches

                              property "GET /repos/{owner}/{repo}/branches/{branch}"

                              'GET /repos/{owner}/{repo}/branches/{branch}': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branches#get-a-branch

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-branch-protection

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-access-restrictions

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch

                              property "GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users"

                              'GET /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch

                              property "GET /repos/{owner}/{repo}/check-runs/{check_run_id}"

                              'GET /repos/{owner}/{repo}/check-runs/{check_run_id}': Operation<
                              '/repos/{owner}/{repo}/check-runs/{check_run_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/runs#get-a-check-run

                              property "GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations"

                              'GET /repos/{owner}/{repo}/check-runs/{check_run_id}/annotations': Operation<
                              '/repos/{owner}/{repo}/check-runs/{check_run_id}/annotations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/runs#list-check-run-annotations

                              property "GET /repos/{owner}/{repo}/check-suites/{check_suite_id}"

                              'GET /repos/{owner}/{repo}/check-suites/{check_suite_id}': Operation<
                              '/repos/{owner}/{repo}/check-suites/{check_suite_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/suites#get-a-check-suite

                              property "GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs"

                              'GET /repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs': Operation<
                              '/repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite

                              property "GET /repos/{owner}/{repo}/code-scanning/alerts"

                              'GET /repos/{owner}/{repo}/code-scanning/alerts': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/code-scanning#list-code-scanning-alerts-for-a-repository

                              property "GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_id}"

                              'GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_id}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert

                                Deprecated

                                "alert_id" is now "alert_number"

                              property "GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}"

                              'GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert

                              property "GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix"

                              'GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert

                              property "GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances"

                              'GET /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert

                              property "GET /repos/{owner}/{repo}/code-scanning/analyses"

                              'GET /repos/{owner}/{repo}/code-scanning/analyses': Operation<
                              '/repos/{owner}/{repo}/code-scanning/analyses',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository

                              property "GET /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}"

                              'GET /repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/analyses/{analysis_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository

                              property "GET /repos/{owner}/{repo}/code-scanning/codeql/databases"

                              'GET /repos/{owner}/{repo}/code-scanning/codeql/databases': Operation<
                              '/repos/{owner}/{repo}/code-scanning/codeql/databases',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository

                              property "GET /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}"

                              'GET /repos/{owner}/{repo}/code-scanning/codeql/databases/{language}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/codeql/databases/{language}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository

                              property "GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}"

                              'GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis

                              property "GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}/repos/{repo_owner}/{repo_name}"

                              'GET /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}/repos/{repo_owner}/{repo_name}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/codeql/variant-analyses/{codeql_variant_analysis_id}/repos/{repo_owner}/{repo_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis

                              property "GET /repos/{owner}/{repo}/code-scanning/default-setup"

                              'GET /repos/{owner}/{repo}/code-scanning/default-setup': Operation<
                              '/repos/{owner}/{repo}/code-scanning/default-setup',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration

                              property "GET /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}"

                              'GET /repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload

                              property "GET /repos/{owner}/{repo}/code-security-configuration"

                              'GET /repos/{owner}/{repo}/code-security-configuration': Operation<
                              '/repos/{owner}/{repo}/code-security-configuration',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository

                              property "GET /repos/{owner}/{repo}/codeowners/errors"

                              'GET /repos/{owner}/{repo}/codeowners/errors': Operation<
                              '/repos/{owner}/{repo}/codeowners/errors',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-codeowners-errors

                              property "GET /repos/{owner}/{repo}/codespaces"

                              'GET /repos/{owner}/{repo}/codespaces': Operation<
                              '/repos/{owner}/{repo}/codespaces',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#list-codespaces-in-a-repository-for-the-authenticated-user

                              property "GET /repos/{owner}/{repo}/codespaces/devcontainers"

                              'GET /repos/{owner}/{repo}/codespaces/devcontainers': Operation<
                              '/repos/{owner}/{repo}/codespaces/devcontainers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#list-devcontainer-configurations-in-a-repository-for-the-authenticated-user

                              property "GET /repos/{owner}/{repo}/codespaces/machines"

                              'GET /repos/{owner}/{repo}/codespaces/machines': Operation<
                              '/repos/{owner}/{repo}/codespaces/machines',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository

                              property "GET /repos/{owner}/{repo}/codespaces/new"

                              'GET /repos/{owner}/{repo}/codespaces/new': Operation<
                              '/repos/{owner}/{repo}/codespaces/new',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace

                              property "GET /repos/{owner}/{repo}/codespaces/permissions_check"

                              'GET /repos/{owner}/{repo}/codespaces/permissions_check': Operation<
                              '/repos/{owner}/{repo}/codespaces/permissions_check',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user

                              property "GET /repos/{owner}/{repo}/codespaces/secrets"

                              'GET /repos/{owner}/{repo}/codespaces/secrets': Operation<
                              '/repos/{owner}/{repo}/codespaces/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets

                              property "GET /repos/{owner}/{repo}/codespaces/secrets/{secret_name}"

                              'GET /repos/{owner}/{repo}/codespaces/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/codespaces/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret

                              property "GET /repos/{owner}/{repo}/codespaces/secrets/public-key"

                              'GET /repos/{owner}/{repo}/codespaces/secrets/public-key': Operation<
                              '/repos/{owner}/{repo}/codespaces/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key

                              property "GET /repos/{owner}/{repo}/collaborators"

                              'GET /repos/{owner}/{repo}/collaborators': Operation<
                              '/repos/{owner}/{repo}/collaborators',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators

                              property "GET /repos/{owner}/{repo}/collaborators/{username}"

                              'GET /repos/{owner}/{repo}/collaborators/{username}': Operation<
                              '/repos/{owner}/{repo}/collaborators/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator

                              property "GET /repos/{owner}/{repo}/collaborators/{username}/permission"

                              'GET /repos/{owner}/{repo}/collaborators/{username}/permission': Operation<
                              '/repos/{owner}/{repo}/collaborators/{username}/permission',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user

                              property "GET /repos/{owner}/{repo}/comments"

                              'GET /repos/{owner}/{repo}/comments': Operation<
                              '/repos/{owner}/{repo}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository

                              property "GET /repos/{owner}/{repo}/comments/{comment_id}"

                              'GET /repos/{owner}/{repo}/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/comments/{comment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/comments#get-a-commit-comment

                              property "GET /repos/{owner}/{repo}/comments/{comment_id}/reactions"

                              'GET /repos/{owner}/{repo}/comments/{comment_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/comments/{comment_id}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment

                              property "GET /repos/{owner}/{repo}/commits"

                              'GET /repos/{owner}/{repo}/commits': Operation<
                              '/repos/{owner}/{repo}/commits',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/commits#list-commits

                              property "GET /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head"

                              'GET /repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head': Operation<
                              '/repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/commits#list-branches-for-head-commit

                              property "GET /repos/{owner}/{repo}/commits/{commit_sha}/comments"

                              'GET /repos/{owner}/{repo}/commits/{commit_sha}/comments': Operation<
                              '/repos/{owner}/{repo}/commits/{commit_sha}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/comments#list-commit-comments

                              property "GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls"

                              'GET /repos/{owner}/{repo}/commits/{commit_sha}/pulls': Operation<
                              '/repos/{owner}/{repo}/commits/{commit_sha}/pulls',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit

                              property "GET /repos/{owner}/{repo}/commits/{ref}"

                              'GET /repos/{owner}/{repo}/commits/{ref}': Operation<
                              '/repos/{owner}/{repo}/commits/{ref}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/commits#get-a-commit

                              property "GET /repos/{owner}/{repo}/commits/{ref}/check-runs"

                              'GET /repos/{owner}/{repo}/commits/{ref}/check-runs': Operation<
                              '/repos/{owner}/{repo}/commits/{ref}/check-runs',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference

                              property "GET /repos/{owner}/{repo}/commits/{ref}/check-suites"

                              'GET /repos/{owner}/{repo}/commits/{ref}/check-suites': Operation<
                              '/repos/{owner}/{repo}/commits/{ref}/check-suites',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference

                              property "GET /repos/{owner}/{repo}/commits/{ref}/status"

                              'GET /repos/{owner}/{repo}/commits/{ref}/status': Operation<
                              '/repos/{owner}/{repo}/commits/{ref}/status',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference

                              property "GET /repos/{owner}/{repo}/commits/{ref}/statuses"

                              'GET /repos/{owner}/{repo}/commits/{ref}/statuses': Operation<
                              '/repos/{owner}/{repo}/commits/{ref}/statuses',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference

                              property "GET /repos/{owner}/{repo}/community/profile"

                              'GET /repos/{owner}/{repo}/community/profile': Operation<
                              '/repos/{owner}/{repo}/community/profile',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/community#get-community-profile-metrics

                              property "GET /repos/{owner}/{repo}/compare/{base}...{head}"

                              'GET /repos/{owner}/{repo}/compare/{base}...{head}': Operation<
                              '/repos/{owner}/{repo}/compare/{base}...{head}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/repos#compare-two-commits

                              property "GET /repos/{owner}/{repo}/compare/{basehead}"

                              'GET /repos/{owner}/{repo}/compare/{basehead}': Operation<
                              '/repos/{owner}/{repo}/compare/{basehead}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/commits#compare-two-commits

                              property "GET /repos/{owner}/{repo}/contents/{path}"

                              'GET /repos/{owner}/{repo}/contents/{path}': Operation<
                              '/repos/{owner}/{repo}/contents/{path}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#get-repository-content

                              property "GET /repos/{owner}/{repo}/contributors"

                              'GET /repos/{owner}/{repo}/contributors': Operation<
                              '/repos/{owner}/{repo}/contributors',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repository-contributors

                              property "GET /repos/{owner}/{repo}/dependabot/alerts"

                              'GET /repos/{owner}/{repo}/dependabot/alerts': Operation<
                              '/repos/{owner}/{repo}/dependabot/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository

                              property "GET /repos/{owner}/{repo}/dependabot/alerts/{alert_number}"

                              'GET /repos/{owner}/{repo}/dependabot/alerts/{alert_number}': Operation<
                              '/repos/{owner}/{repo}/dependabot/alerts/{alert_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert

                              property "GET /repos/{owner}/{repo}/dependabot/secrets"

                              'GET /repos/{owner}/{repo}/dependabot/secrets': Operation<
                              '/repos/{owner}/{repo}/dependabot/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#list-repository-secrets

                              property "GET /repos/{owner}/{repo}/dependabot/secrets/{secret_name}"

                              'GET /repos/{owner}/{repo}/dependabot/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/dependabot/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret

                              property "GET /repos/{owner}/{repo}/dependabot/secrets/public-key"

                              'GET /repos/{owner}/{repo}/dependabot/secrets/public-key': Operation<
                              '/repos/{owner}/{repo}/dependabot/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key

                              property "GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}"

                              'GET /repos/{owner}/{repo}/dependency-graph/compare/{basehead}': Operation<
                              '/repos/{owner}/{repo}/dependency-graph/compare/{basehead}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits

                              property "GET /repos/{owner}/{repo}/dependency-graph/sbom"

                              'GET /repos/{owner}/{repo}/dependency-graph/sbom': Operation<
                              '/repos/{owner}/{repo}/dependency-graph/sbom',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository

                              property "GET /repos/{owner}/{repo}/deployments"

                              'GET /repos/{owner}/{repo}/deployments': Operation<
                              '/repos/{owner}/{repo}/deployments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/deployments#list-deployments

                              property "GET /repos/{owner}/{repo}/deployments/{deployment_id}"

                              'GET /repos/{owner}/{repo}/deployments/{deployment_id}': Operation<
                              '/repos/{owner}/{repo}/deployments/{deployment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/deployments#get-a-deployment

                              property "GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses"

                              'GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses': Operation<
                              '/repos/{owner}/{repo}/deployments/{deployment_id}/statuses',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/statuses#list-deployment-statuses

                              property "GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}"

                              'GET /repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}': Operation<
                              '/repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/statuses#get-a-deployment-status

                              property "GET /repos/{owner}/{repo}/environments"

                              'GET /repos/{owner}/{repo}/environments': Operation<
                              '/repos/{owner}/{repo}/environments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/environments#list-environments

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/environments#get-an-environment

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/apps',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/secrets"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/secrets': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/secrets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#list-environment-secrets

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#get-an-environment-secret

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#get-an-environment-public-key

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/variables"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/variables': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/variables',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#list-environment-variables

                              property "GET /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}"

                              'GET /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/variables/{name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#get-an-environment-variable

                              property "GET /repos/{owner}/{repo}/events"

                              'GET /repos/{owner}/{repo}/events': Operation<
                              '/repos/{owner}/{repo}/events',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-repository-events

                              property "GET /repos/{owner}/{repo}/forks"

                              'GET /repos/{owner}/{repo}/forks': Operation<
                              '/repos/{owner}/{repo}/forks',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/forks#list-forks

                              property "GET /repos/{owner}/{repo}/git/blobs/{file_sha}"

                              'GET /repos/{owner}/{repo}/git/blobs/{file_sha}': Operation<
                              '/repos/{owner}/{repo}/git/blobs/{file_sha}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/blobs#get-a-blob

                              property "GET /repos/{owner}/{repo}/git/commits/{commit_sha}"

                              'GET /repos/{owner}/{repo}/git/commits/{commit_sha}': Operation<
                              '/repos/{owner}/{repo}/git/commits/{commit_sha}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/commits#get-a-commit-object

                              property "GET /repos/{owner}/{repo}/git/matching-refs/{ref}"

                              'GET /repos/{owner}/{repo}/git/matching-refs/{ref}': Operation<
                              '/repos/{owner}/{repo}/git/matching-refs/{ref}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/refs#list-matching-references

                              property "GET /repos/{owner}/{repo}/git/ref/{ref}"

                              'GET /repos/{owner}/{repo}/git/ref/{ref}': Operation<
                              '/repos/{owner}/{repo}/git/ref/{ref}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/refs#get-a-reference

                              property "GET /repos/{owner}/{repo}/git/tags/{tag_sha}"

                              'GET /repos/{owner}/{repo}/git/tags/{tag_sha}': Operation<
                              '/repos/{owner}/{repo}/git/tags/{tag_sha}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/tags#get-a-tag

                              property "GET /repos/{owner}/{repo}/git/trees/{tree_sha}"

                              'GET /repos/{owner}/{repo}/git/trees/{tree_sha}': Operation<
                              '/repos/{owner}/{repo}/git/trees/{tree_sha}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/trees#get-a-tree

                              property "GET /repos/{owner}/{repo}/hooks"

                              'GET /repos/{owner}/{repo}/hooks': Operation<
                              '/repos/{owner}/{repo}/hooks',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#list-repository-webhooks

                              property "GET /repos/{owner}/{repo}/hooks/{hook_id}"

                              'GET /repos/{owner}/{repo}/hooks/{hook_id}': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook

                              property "GET /repos/{owner}/{repo}/hooks/{hook_id}/config"

                              'GET /repos/{owner}/{repo}/hooks/{hook_id}/config': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/config',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository

                              property "GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries"

                              'GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/deliveries',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook

                              property "GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}"

                              'GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook

                              property "GET /repos/{owner}/{repo}/import"

                              'GET /repos/{owner}/{repo}/import': Operation<
                              '/repos/{owner}/{repo}/import',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#get-an-import-status

                              property "GET /repos/{owner}/{repo}/import/authors"

                              'GET /repos/{owner}/{repo}/import/authors': Operation<
                              '/repos/{owner}/{repo}/import/authors',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#get-commit-authors

                              property "GET /repos/{owner}/{repo}/import/large_files"

                              'GET /repos/{owner}/{repo}/import/large_files': Operation<
                              '/repos/{owner}/{repo}/import/large_files',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#get-large-files

                              property "GET /repos/{owner}/{repo}/installation"

                              'GET /repos/{owner}/{repo}/installation': Operation<
                              '/repos/{owner}/{repo}/installation',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app

                              property "GET /repos/{owner}/{repo}/interaction-limits"

                              'GET /repos/{owner}/{repo}/interaction-limits': Operation<
                              '/repos/{owner}/{repo}/interaction-limits',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository

                              property "GET /repos/{owner}/{repo}/invitations"

                              'GET /repos/{owner}/{repo}/invitations': Operation<
                              '/repos/{owner}/{repo}/invitations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/invitations#list-repository-invitations

                              property "GET /repos/{owner}/{repo}/issues"

                              'GET /repos/{owner}/{repo}/issues': Operation<
                              '/repos/{owner}/{repo}/issues',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#list-repository-issues

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#get-an-issue

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee}"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee}': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/assignees/{assignee}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/comments"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/comments': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/comments#list-issue-comments

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/events"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/events': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/events',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/events#list-issue-events

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/labels"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/labels': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/labels',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#list-labels-for-an-issue

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/reactions"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/reactions': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/sub_issues"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/sub_issues': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/sub_issues',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/sub-issues#list-sub-issues

                              property "GET /repos/{owner}/{repo}/issues/{issue_number}/timeline"

                              'GET /repos/{owner}/{repo}/issues/{issue_number}/timeline': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/timeline',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue

                              property "GET /repos/{owner}/{repo}/issues/comments"

                              'GET /repos/{owner}/{repo}/issues/comments': Operation<
                              '/repos/{owner}/{repo}/issues/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository

                              property "GET /repos/{owner}/{repo}/issues/comments/{comment_id}"

                              'GET /repos/{owner}/{repo}/issues/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/issues/comments/{comment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/comments#get-an-issue-comment

                              property "GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions"

                              'GET /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment

                              property "GET /repos/{owner}/{repo}/issues/events"

                              'GET /repos/{owner}/{repo}/issues/events': Operation<
                              '/repos/{owner}/{repo}/issues/events',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository

                              property "GET /repos/{owner}/{repo}/issues/events/{event_id}"

                              'GET /repos/{owner}/{repo}/issues/events/{event_id}': Operation<
                              '/repos/{owner}/{repo}/issues/events/{event_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/events#get-an-issue-event

                              property "GET /repos/{owner}/{repo}/keys"

                              'GET /repos/{owner}/{repo}/keys': Operation<'/repos/{owner}/{repo}/keys', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys

                              property "GET /repos/{owner}/{repo}/keys/{key_id}"

                              'GET /repos/{owner}/{repo}/keys/{key_id}': Operation<
                              '/repos/{owner}/{repo}/keys/{key_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key

                              property "GET /repos/{owner}/{repo}/labels"

                              'GET /repos/{owner}/{repo}/labels': Operation<
                              '/repos/{owner}/{repo}/labels',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#list-labels-for-a-repository

                              property "GET /repos/{owner}/{repo}/labels/{name}"

                              'GET /repos/{owner}/{repo}/labels/{name}': Operation<
                              '/repos/{owner}/{repo}/labels/{name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#get-a-label

                              property "GET /repos/{owner}/{repo}/languages"

                              'GET /repos/{owner}/{repo}/languages': Operation<
                              '/repos/{owner}/{repo}/languages',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repository-languages

                              property "GET /repos/{owner}/{repo}/license"

                              'GET /repos/{owner}/{repo}/license': Operation<
                              '/repos/{owner}/{repo}/license',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository

                              property "GET /repos/{owner}/{repo}/milestones"

                              'GET /repos/{owner}/{repo}/milestones': Operation<
                              '/repos/{owner}/{repo}/milestones',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/milestones#list-milestones

                              property "GET /repos/{owner}/{repo}/milestones/{milestone_number}"

                              'GET /repos/{owner}/{repo}/milestones/{milestone_number}': Operation<
                              '/repos/{owner}/{repo}/milestones/{milestone_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/milestones#get-a-milestone

                              property "GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels"

                              'GET /repos/{owner}/{repo}/milestones/{milestone_number}/labels': Operation<
                              '/repos/{owner}/{repo}/milestones/{milestone_number}/labels',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone

                              property "GET /repos/{owner}/{repo}/notifications"

                              'GET /repos/{owner}/{repo}/notifications': Operation<
                              '/repos/{owner}/{repo}/notifications',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user

                              property "GET /repos/{owner}/{repo}/pages"

                              'GET /repos/{owner}/{repo}/pages': Operation<
                              '/repos/{owner}/{repo}/pages',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site

                              property "GET /repos/{owner}/{repo}/pages/builds"

                              'GET /repos/{owner}/{repo}/pages/builds': Operation<
                              '/repos/{owner}/{repo}/pages/builds',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#list-apiname-pages-builds

                              property "GET /repos/{owner}/{repo}/pages/builds/{build_id}"

                              'GET /repos/{owner}/{repo}/pages/builds/{build_id}': Operation<
                              '/repos/{owner}/{repo}/pages/builds/{build_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#get-apiname-pages-build

                              property "GET /repos/{owner}/{repo}/pages/builds/latest"

                              'GET /repos/{owner}/{repo}/pages/builds/latest': Operation<
                              '/repos/{owner}/{repo}/pages/builds/latest',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#get-latest-pages-build

                              property "GET /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}"

                              'GET /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}': Operation<
                              '/repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment

                              property "GET /repos/{owner}/{repo}/pages/health"

                              'GET /repos/{owner}/{repo}/pages/health': Operation<
                              '/repos/{owner}/{repo}/pages/health',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages

                              property "GET /repos/{owner}/{repo}/private-vulnerability-reporting"

                              'GET /repos/{owner}/{repo}/private-vulnerability-reporting': Operation<
                              '/repos/{owner}/{repo}/private-vulnerability-reporting',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository

                              property "GET /repos/{owner}/{repo}/projects"

                              'GET /repos/{owner}/{repo}/projects': Operation<
                              '/repos/{owner}/{repo}/projects',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#list-repository-projects

                              property "GET /repos/{owner}/{repo}/properties/values"

                              'GET /repos/{owner}/{repo}/properties/values': Operation<
                              '/repos/{owner}/{repo}/properties/values',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository

                              property "GET /repos/{owner}/{repo}/pulls"

                              'GET /repos/{owner}/{repo}/pulls': Operation<
                              '/repos/{owner}/{repo}/pulls',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#list-pull-requests

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#get-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/comments"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/comments': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/commits"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/commits': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/commits',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/files"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/files': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/files',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#list-pull-requests-files

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/merge"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/merge': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/merge',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments"

                              'GET /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review

                              property "GET /repos/{owner}/{repo}/pulls/comments"

                              'GET /repos/{owner}/{repo}/pulls/comments': Operation<
                              '/repos/{owner}/{repo}/pulls/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository

                              property "GET /repos/{owner}/{repo}/pulls/comments/{comment_id}"

                              'GET /repos/{owner}/{repo}/pulls/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/comments/{comment_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request

                              property "GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions"

                              'GET /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment

                              property "GET /repos/{owner}/{repo}/readme"

                              'GET /repos/{owner}/{repo}/readme': Operation<
                              '/repos/{owner}/{repo}/readme',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#get-a-repository-readme

                              property "GET /repos/{owner}/{repo}/readme/{dir}"

                              'GET /repos/{owner}/{repo}/readme/{dir}': Operation<
                              '/repos/{owner}/{repo}/readme/{dir}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory

                              property "GET /repos/{owner}/{repo}/releases"

                              'GET /repos/{owner}/{repo}/releases': Operation<
                              '/repos/{owner}/{repo}/releases',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#list-releases

                              property "GET /repos/{owner}/{repo}/releases/{release_id}"

                              'GET /repos/{owner}/{repo}/releases/{release_id}': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#get-a-release

                              property "GET /repos/{owner}/{repo}/releases/{release_id}/assets"

                              'GET /repos/{owner}/{repo}/releases/{release_id}/assets': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}/assets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/assets#list-release-assets

                              property "GET /repos/{owner}/{repo}/releases/{release_id}/reactions"

                              'GET /repos/{owner}/{repo}/releases/{release_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release

                              property "GET /repos/{owner}/{repo}/releases/assets/{asset_id}"

                              'GET /repos/{owner}/{repo}/releases/assets/{asset_id}': Operation<
                              '/repos/{owner}/{repo}/releases/assets/{asset_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/assets#get-a-release-asset

                              property "GET /repos/{owner}/{repo}/releases/latest"

                              'GET /repos/{owner}/{repo}/releases/latest': Operation<
                              '/repos/{owner}/{repo}/releases/latest',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#get-the-latest-release

                              property "GET /repos/{owner}/{repo}/releases/tags/{tag}"

                              'GET /repos/{owner}/{repo}/releases/tags/{tag}': Operation<
                              '/repos/{owner}/{repo}/releases/tags/{tag}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name

                              property "GET /repos/{owner}/{repo}/rules/branches/{branch}"

                              'GET /repos/{owner}/{repo}/rules/branches/{branch}': Operation<
                              '/repos/{owner}/{repo}/rules/branches/{branch}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#get-rules-for-a-branch

                              property "GET /repos/{owner}/{repo}/rulesets"

                              'GET /repos/{owner}/{repo}/rulesets': Operation<
                              '/repos/{owner}/{repo}/rulesets',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#get-all-repository-rulesets

                              property "GET /repos/{owner}/{repo}/rulesets/{ruleset_id}"

                              'GET /repos/{owner}/{repo}/rulesets/{ruleset_id}': Operation<
                              '/repos/{owner}/{repo}/rulesets/{ruleset_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#get-a-repository-ruleset

                              property "GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history"

                              'GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history': Operation<
                              '/repos/{owner}/{repo}/rulesets/{ruleset_id}/history',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#get-repository-ruleset-history

                              property "GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history/{version_id}"

                              'GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history/{version_id}': Operation<
                              '/repos/{owner}/{repo}/rulesets/{ruleset_id}/history/{version_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#get-repository-ruleset-version

                              property "GET /repos/{owner}/{repo}/rulesets/rule-suites"

                              'GET /repos/{owner}/{repo}/rulesets/rule-suites': Operation<
                              '/repos/{owner}/{repo}/rulesets/rule-suites',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites

                              property "GET /repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id}"

                              'GET /repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id}': Operation<
                              '/repos/{owner}/{repo}/rulesets/rule-suites/{rule_suite_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite

                              property "GET /repos/{owner}/{repo}/secret-scanning/alerts"

                              'GET /repos/{owner}/{repo}/secret-scanning/alerts': Operation<
                              '/repos/{owner}/{repo}/secret-scanning/alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository

                              property "GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}"

                              'GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}': Operation<
                              '/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert

                              property "GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations"

                              'GET /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations': Operation<
                              '/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}/locations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert

                              property "GET /repos/{owner}/{repo}/secret-scanning/scan-history"

                              'GET /repos/{owner}/{repo}/secret-scanning/scan-history': Operation<
                              '/repos/{owner}/{repo}/secret-scanning/scan-history',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository

                              property "GET /repos/{owner}/{repo}/security-advisories"

                              'GET /repos/{owner}/{repo}/security-advisories': Operation<
                              '/repos/{owner}/{repo}/security-advisories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories

                              property "GET /repos/{owner}/{repo}/security-advisories/{ghsa_id}"

                              'GET /repos/{owner}/{repo}/security-advisories/{ghsa_id}': Operation<
                              '/repos/{owner}/{repo}/security-advisories/{ghsa_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory

                              property "GET /repos/{owner}/{repo}/stargazers"

                              'GET /repos/{owner}/{repo}/stargazers': Operation<
                              '/repos/{owner}/{repo}/stargazers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/starring#list-stargazers

                              property "GET /repos/{owner}/{repo}/stats/code_frequency"

                              'GET /repos/{owner}/{repo}/stats/code_frequency': Operation<
                              '/repos/{owner}/{repo}/stats/code_frequency',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity

                              property "GET /repos/{owner}/{repo}/stats/commit_activity"

                              'GET /repos/{owner}/{repo}/stats/commit_activity': Operation<
                              '/repos/{owner}/{repo}/stats/commit_activity',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity

                              property "GET /repos/{owner}/{repo}/stats/contributors"

                              'GET /repos/{owner}/{repo}/stats/contributors': Operation<
                              '/repos/{owner}/{repo}/stats/contributors',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity

                              property "GET /repos/{owner}/{repo}/stats/participation"

                              'GET /repos/{owner}/{repo}/stats/participation': Operation<
                              '/repos/{owner}/{repo}/stats/participation',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count

                              property "GET /repos/{owner}/{repo}/stats/punch_card"

                              'GET /repos/{owner}/{repo}/stats/punch_card': Operation<
                              '/repos/{owner}/{repo}/stats/punch_card',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day

                              property "GET /repos/{owner}/{repo}/subscribers"

                              'GET /repos/{owner}/{repo}/subscribers': Operation<
                              '/repos/{owner}/{repo}/subscribers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/watching#list-watchers

                              property "GET /repos/{owner}/{repo}/subscription"

                              'GET /repos/{owner}/{repo}/subscription': Operation<
                              '/repos/{owner}/{repo}/subscription',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/watching#get-a-repository-subscription

                              property "GET /repos/{owner}/{repo}/tags"

                              'GET /repos/{owner}/{repo}/tags': Operation<'/repos/{owner}/{repo}/tags', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repository-tags

                              property "GET /repos/{owner}/{repo}/tags/protection"

                              'GET /repos/{owner}/{repo}/tags/protection': Operation<
                              '/repos/{owner}/{repo}/tags/protection',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository

                              property "GET /repos/{owner}/{repo}/tarball/{ref}"

                              'GET /repos/{owner}/{repo}/tarball/{ref}': Operation<
                              '/repos/{owner}/{repo}/tarball/{ref}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar

                              property "GET /repos/{owner}/{repo}/teams"

                              'GET /repos/{owner}/{repo}/teams': Operation<
                              '/repos/{owner}/{repo}/teams',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repository-teams

                              property "GET /repos/{owner}/{repo}/topics"

                              'GET /repos/{owner}/{repo}/topics': Operation<
                              '/repos/{owner}/{repo}/topics',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#get-all-repository-topics

                              property "GET /repos/{owner}/{repo}/traffic/clones"

                              'GET /repos/{owner}/{repo}/traffic/clones': Operation<
                              '/repos/{owner}/{repo}/traffic/clones',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/traffic#get-repository-clones

                              property "GET /repos/{owner}/{repo}/traffic/popular/paths"

                              'GET /repos/{owner}/{repo}/traffic/popular/paths': Operation<
                              '/repos/{owner}/{repo}/traffic/popular/paths',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/traffic#get-top-referral-paths

                              property "GET /repos/{owner}/{repo}/traffic/popular/referrers"

                              'GET /repos/{owner}/{repo}/traffic/popular/referrers': Operation<
                              '/repos/{owner}/{repo}/traffic/popular/referrers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/traffic#get-top-referral-sources

                              property "GET /repos/{owner}/{repo}/traffic/views"

                              'GET /repos/{owner}/{repo}/traffic/views': Operation<
                              '/repos/{owner}/{repo}/traffic/views',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/metrics/traffic#get-page-views

                              property "GET /repos/{owner}/{repo}/vulnerability-alerts"

                              'GET /repos/{owner}/{repo}/vulnerability-alerts': Operation<
                              '/repos/{owner}/{repo}/vulnerability-alerts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository

                              property "GET /repos/{owner}/{repo}/zipball/{ref}"

                              'GET /repos/{owner}/{repo}/zipball/{ref}': Operation<
                              '/repos/{owner}/{repo}/zipball/{ref}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip

                              property "GET /repositories"

                              'GET /repositories': Operation<'/repositories', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-public-repositories

                              property "GET /search/code"

                              'GET /search/code': Operation<'/search/code', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-code

                              property "GET /search/commits"

                              'GET /search/commits': Operation<'/search/commits', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-commits

                              property "GET /search/issues"

                              'GET /search/issues': Operation<'/search/issues', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-issues-and-pull-requests

                              property "GET /search/labels"

                              'GET /search/labels': Operation<'/search/labels', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-labels

                              property "GET /search/repositories"

                              'GET /search/repositories': Operation<'/search/repositories', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-repositories

                              property "GET /search/topics"

                              'GET /search/topics': Operation<'/search/topics', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-topics

                              property "GET /search/users"

                              'GET /search/users': Operation<'/search/users', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/search/search#search-users

                              property "GET /teams/{team_id}"

                              'GET /teams/{team_id}': Operation<'/teams/{team_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#get-a-team-legacy

                              property "GET /teams/{team_id}/discussions"

                              'GET /teams/{team_id}/discussions': Operation<
                              '/teams/{team_id}/discussions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#list-discussions-legacy

                              property "GET /teams/{team_id}/discussions/{discussion_number}"

                              'GET /teams/{team_id}/discussions/{discussion_number}': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy

                              property "GET /teams/{team_id}/discussions/{discussion_number}/comments"

                              'GET /teams/{team_id}/discussions/{discussion_number}/comments': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy

                              property "GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}"

                              'GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy

                              property "GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions"

                              'GET /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy

                              property "GET /teams/{team_id}/discussions/{discussion_number}/reactions"

                              'GET /teams/{team_id}/discussions/{discussion_number}/reactions': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/reactions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy

                              property "GET /teams/{team_id}/invitations"

                              'GET /teams/{team_id}/invitations': Operation<
                              '/teams/{team_id}/invitations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy

                              property "GET /teams/{team_id}/members"

                              'GET /teams/{team_id}/members': Operation<'/teams/{team_id}/members', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/members#list-team-members-legacy

                              property "GET /teams/{team_id}/members/{username}"

                              'GET /teams/{team_id}/members/{username}': Operation<
                              '/teams/{team_id}/members/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#get-team-member-legacy

                              property "GET /teams/{team_id}/memberships/{username}"

                              'GET /teams/{team_id}/memberships/{username}': Operation<
                              '/teams/{team_id}/memberships/{username}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy

                              property "GET /teams/{team_id}/projects"

                              'GET /teams/{team_id}/projects': Operation<'/teams/{team_id}/projects', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-team-projects-legacy

                              property "GET /teams/{team_id}/projects/{project_id}"

                              'GET /teams/{team_id}/projects/{project_id}': Operation<
                              '/teams/{team_id}/projects/{project_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy

                              property "GET /teams/{team_id}/repos"

                              'GET /teams/{team_id}/repos': Operation<'/teams/{team_id}/repos', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-team-repositories-legacy

                              property "GET /teams/{team_id}/repos/{owner}/{repo}"

                              'GET /teams/{team_id}/repos/{owner}/{repo}': Operation<
                              '/teams/{team_id}/repos/{owner}/{repo}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy

                              property "GET /teams/{team_id}/teams"

                              'GET /teams/{team_id}/teams': Operation<'/teams/{team_id}/teams', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-child-teams-legacy

                              property "GET /user"

                              'GET /user': Operation<'/user', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/users#get-the-authenticated-user

                              property "GET /user/{account_id}"

                              'GET /user/{account_id}': Operation<'/user/{account_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/users#get-a-user-using-their-id

                              property "GET /user/blocks"

                              'GET /user/blocks': Operation<'/user/blocks', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/blocking#list-users-blocked-by-the-authenticated-user

                              property "GET /user/blocks/{username}"

                              'GET /user/blocks/{username}': Operation<'/user/blocks/{username}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user

                              property "GET /user/codespaces"

                              'GET /user/codespaces': Operation<'/user/codespaces', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#list-codespaces-for-the-authenticated-user

                              property "GET /user/codespaces/{codespace_name}"

                              'GET /user/codespaces/{codespace_name}': Operation<
                              '/user/codespaces/{codespace_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user

                              property "GET /user/codespaces/{codespace_name}/exports/{export_id}"

                              'GET /user/codespaces/{codespace_name}/exports/{export_id}': Operation<
                              '/user/codespaces/{codespace_name}/exports/{export_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export

                              property "GET /user/codespaces/{codespace_name}/machines"

                              'GET /user/codespaces/{codespace_name}/machines': Operation<
                              '/user/codespaces/{codespace_name}/machines',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace

                              property "GET /user/codespaces/secrets"

                              'GET /user/codespaces/secrets': Operation<'/user/codespaces/secrets', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#list-secrets-for-the-authenticated-user

                              property "GET /user/codespaces/secrets/{secret_name}"

                              'GET /user/codespaces/secrets/{secret_name}': Operation<
                              '/user/codespaces/secrets/{secret_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user

                              property "GET /user/codespaces/secrets/{secret_name}/repositories"

                              'GET /user/codespaces/secrets/{secret_name}/repositories': Operation<
                              '/user/codespaces/secrets/{secret_name}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret

                              property "GET /user/codespaces/secrets/public-key"

                              'GET /user/codespaces/secrets/public-key': Operation<
                              '/user/codespaces/secrets/public-key',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#get-public-key-for-the-authenticated-user

                              property "GET /user/docker/conflicts"

                              'GET /user/docker/conflicts': Operation<'/user/docker/conflicts', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-authenticated-user

                              property "GET /user/emails"

                              'GET /user/emails': Operation<'/user/emails', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/emails#list-email-addresses-for-the-authenticated-user

                              property "GET /user/followers"

                              'GET /user/followers': Operation<'/user/followers', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/followers#list-followers-of-the-authenticated-user

                              property "GET /user/following"

                              'GET /user/following': Operation<'/user/following', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/followers#list-the-people-the-authenticated-user-follows

                              property "GET /user/following/{username}"

                              'GET /user/following/{username}': Operation<'/user/following/{username}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user

                              property "GET /user/gpg_keys"

                              'GET /user/gpg_keys': Operation<'/user/gpg_keys', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-the-authenticated-user

                              property "GET /user/gpg_keys/{gpg_key_id}"

                              'GET /user/gpg_keys/{gpg_key_id}': Operation<
                              '/user/gpg_keys/{gpg_key_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user

                              property "GET /user/installations"

                              'GET /user/installations': Operation<'/user/installations', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/apps/installations#list-app-installations-accessible-to-the-user-access-token

                              property "GET /user/installations/{installation_id}/repositories"

                              'GET /user/installations/{installation_id}/repositories': Operation<
                              '/user/installations/{installation_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/installations#list-repositories-accessible-to-the-user-access-token

                              property "GET /user/interaction-limits"

                              'GET /user/interaction-limits': Operation<'/user/interaction-limits', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/interactions/user#get-interaction-restrictions-for-your-public-repositories

                              property "GET /user/issues"

                              'GET /user/issues': Operation<'/user/issues', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#list-user-account-issues-assigned-to-the-authenticated-user

                              property "GET /user/keys"

                              'GET /user/keys': Operation<'/user/keys', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/keys#list-public-ssh-keys-for-the-authenticated-user

                              property "GET /user/keys/{key_id}"

                              'GET /user/keys/{key_id}': Operation<'/user/keys/{key_id}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user

                              property "GET /user/marketplace_purchases"

                              'GET /user/marketplace_purchases': Operation<
                              '/user/marketplace_purchases',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#list-subscriptions-for-the-authenticated-user

                              property "GET /user/marketplace_purchases/stubbed"

                              'GET /user/marketplace_purchases/stubbed': Operation<
                              '/user/marketplace_purchases/stubbed',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/marketplace#list-subscriptions-for-the-authenticated-user-stubbed

                              property "GET /user/memberships/orgs"

                              'GET /user/memberships/orgs': Operation<'/user/memberships/orgs', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#list-organization-memberships-for-the-authenticated-user

                              property "GET /user/memberships/orgs/{org}"

                              'GET /user/memberships/orgs/{org}': Operation<
                              '/user/memberships/orgs/{org}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user

                              property "GET /user/migrations"

                              'GET /user/migrations': Operation<'/user/migrations', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#list-user-migrations

                              property "GET /user/migrations/{migration_id}"

                              'GET /user/migrations/{migration_id}': Operation<
                              '/user/migrations/{migration_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#get-a-user-migration-status

                              property "GET /user/migrations/{migration_id}/archive"

                              'GET /user/migrations/{migration_id}/archive': Operation<
                              '/user/migrations/{migration_id}/archive',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#download-a-user-migration-archive

                              property "GET /user/migrations/{migration_id}/repositories"

                              'GET /user/migrations/{migration_id}/repositories': Operation<
                              '/user/migrations/{migration_id}/repositories',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration

                              property "GET /user/orgs"

                              'GET /user/orgs': Operation<'/user/orgs', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#list-organizations-for-the-authenticated-user

                              property "GET /user/packages"

                              'GET /user/packages': Operation<'/user/packages', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#list-packages-for-the-authenticated-users-namespace

                              property "GET /user/packages/{package_type}/{package_name}"

                              'GET /user/packages/{package_type}/{package_name}': Operation<
                              '/user/packages/{package_type}/{package_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user

                              property "GET /user/packages/{package_type}/{package_name}/versions"

                              'GET /user/packages/{package_type}/{package_name}/versions': Operation<
                              '/user/packages/{package_type}/{package_name}/versions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user

                              property "GET /user/packages/{package_type}/{package_name}/versions/{package_version_id}"

                              'GET /user/packages/{package_type}/{package_name}/versions/{package_version_id}': Operation<
                              '/user/packages/{package_type}/{package_name}/versions/{package_version_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user

                              property "GET /user/public_emails"

                              'GET /user/public_emails': Operation<'/user/public_emails', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/emails#list-public-email-addresses-for-the-authenticated-user

                              property "GET /user/repos"

                              'GET /user/repos': Operation<'/user/repos', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repositories-for-the-authenticated-user

                              property "GET /user/repository_invitations"

                              'GET /user/repository_invitations': Operation<
                              '/user/repository_invitations',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/invitations#list-repository-invitations-for-the-authenticated-user

                              property "GET /user/social_accounts"

                              'GET /user/social_accounts': Operation<'/user/social_accounts', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-the-authenticated-user

                              property "GET /user/ssh_signing_keys"

                              'GET /user/ssh_signing_keys': Operation<'/user/ssh_signing_keys', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-the-authenticated-user

                              property "GET /user/ssh_signing_keys/{ssh_signing_key_id}"

                              'GET /user/ssh_signing_keys/{ssh_signing_key_id}': Operation<
                              '/user/ssh_signing_keys/{ssh_signing_key_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user

                              property "GET /user/starred"

                              'GET /user/starred': Operation<'/user/starred', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user

                              property "GET /user/starred/{owner}/{repo}"

                              'GET /user/starred/{owner}/{repo}': Operation<
                              '/user/starred/{owner}/{repo}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user

                              property "GET /user/subscriptions"

                              'GET /user/subscriptions': Operation<'/user/subscriptions', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/watching#list-repositories-watched-by-the-authenticated-user

                              property "GET /user/teams"

                              'GET /user/teams': Operation<'/user/teams', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#list-teams-for-the-authenticated-user

                              property "GET /users"

                              'GET /users': Operation<'/users', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/users#list-users

                              property "GET /users/{username}"

                              'GET /users/{username}': Operation<'/users/{username}', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/users#get-a-user

                              property "GET /users/{username}/attestations/{subject_digest}"

                              'GET /users/{username}/attestations/{subject_digest}': Operation<
                              '/users/{username}/attestations/{subject_digest}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/attestations#list-attestations

                              property "GET /users/{username}/docker/conflicts"

                              'GET /users/{username}/docker/conflicts': Operation<
                              '/users/{username}/docker/conflicts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user

                              property "GET /users/{username}/events"

                              'GET /users/{username}/events': Operation<'/users/{username}/events', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user

                              property "GET /users/{username}/events/orgs/{org}"

                              'GET /users/{username}/events/orgs/{org}': Operation<
                              '/users/{username}/events/orgs/{org}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user

                              property "GET /users/{username}/events/public"

                              'GET /users/{username}/events/public': Operation<
                              '/users/{username}/events/public',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-public-events-for-a-user

                              property "GET /users/{username}/followers"

                              'GET /users/{username}/followers': Operation<
                              '/users/{username}/followers',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/followers#list-followers-of-a-user

                              property "GET /users/{username}/following"

                              'GET /users/{username}/following': Operation<
                              '/users/{username}/following',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/followers#list-the-people-a-user-follows

                              property "GET /users/{username}/following/{target_user}"

                              'GET /users/{username}/following/{target_user}': Operation<
                              '/users/{username}/following/{target_user}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user

                              property "GET /users/{username}/gists"

                              'GET /users/{username}/gists': Operation<'/users/{username}/gists', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#list-gists-for-a-user

                              property "GET /users/{username}/gpg_keys"

                              'GET /users/{username}/gpg_keys': Operation<'/users/{username}/gpg_keys', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user

                              property "GET /users/{username}/hovercard"

                              'GET /users/{username}/hovercard': Operation<
                              '/users/{username}/hovercard',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/users#get-contextual-information-for-a-user

                              property "GET /users/{username}/installation"

                              'GET /users/{username}/installation': Operation<
                              '/users/{username}/installation',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app

                              property "GET /users/{username}/keys"

                              'GET /users/{username}/keys': Operation<'/users/{username}/keys', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/users/keys#list-public-keys-for-a-user

                              property "GET /users/{username}/orgs"

                              'GET /users/{username}/orgs': Operation<'/users/{username}/orgs', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user

                              property "GET /users/{username}/packages"

                              'GET /users/{username}/packages': Operation<'/users/{username}/packages', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#list-packages-for-a-user

                              property "GET /users/{username}/packages/{package_type}/{package_name}"

                              'GET /users/{username}/packages/{package_type}/{package_name}': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-a-package-for-a-user

                              property "GET /users/{username}/packages/{package_type}/{package_name}/versions"

                              'GET /users/{username}/packages/{package_type}/{package_name}/versions': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}/versions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user

                              property "GET /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}"

                              'GET /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user

                              property "GET /users/{username}/projects"

                              'GET /users/{username}/projects': Operation<'/users/{username}/projects', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#list-user-projects

                              property "GET /users/{username}/received_events"

                              'GET /users/{username}/received_events': Operation<
                              '/users/{username}/received_events',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user

                              property "GET /users/{username}/received_events/public"

                              'GET /users/{username}/received_events/public': Operation<
                              '/users/{username}/received_events/public',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user

                              property "GET /users/{username}/repos"

                              'GET /users/{username}/repos': Operation<'/users/{username}/repos', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#list-repositories-for-a-user

                              property "GET /users/{username}/settings/billing/actions"

                              'GET /users/{username}/settings/billing/actions': Operation<
                              '/users/{username}/settings/billing/actions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/billing#get-github-actions-billing-for-a-user

                              property "GET /users/{username}/settings/billing/packages"

                              'GET /users/{username}/settings/billing/packages': Operation<
                              '/users/{username}/settings/billing/packages',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/billing#get-github-packages-billing-for-a-user

                              property "GET /users/{username}/settings/billing/shared-storage"

                              'GET /users/{username}/settings/billing/shared-storage': Operation<
                              '/users/{username}/settings/billing/shared-storage',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/billing#get-shared-storage-billing-for-a-user

                              property "GET /users/{username}/settings/billing/usage"

                              'GET /users/{username}/settings/billing/usage': Operation<
                              '/users/{username}/settings/billing/usage',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/billing/enhanced-billing#get-billing-usage-report-for-a-user

                              property "GET /users/{username}/social_accounts"

                              'GET /users/{username}/social_accounts': Operation<
                              '/users/{username}/social_accounts',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user

                              property "GET /users/{username}/ssh_signing_keys"

                              'GET /users/{username}/ssh_signing_keys': Operation<
                              '/users/{username}/ssh_signing_keys',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user

                              property "GET /users/{username}/starred"

                              'GET /users/{username}/starred': Operation<'/users/{username}/starred', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user

                              property "GET /users/{username}/subscriptions"

                              'GET /users/{username}/subscriptions': Operation<
                              '/users/{username}/subscriptions',
                              'get'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user

                              property "GET /versions"

                              'GET /versions': Operation<'/versions', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/meta/meta#get-all-api-versions

                              property "GET /zen"

                              'GET /zen': Operation<'/zen', 'get'>;
                              • See Also

                                • https://docs.github.com/rest/meta/meta#get-the-zen-of-github

                              property "PATCH /app/hook/config"

                              'PATCH /app/hook/config': Operation<'/app/hook/config', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/apps/webhooks#update-a-webhook-configuration-for-an-app

                              property "PATCH /applications/{client_id}/token"

                              'PATCH /applications/{client_id}/token': Operation<
                              '/applications/{client_id}/token',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/oauth-applications#reset-a-token

                              property "PATCH /enterprises/{enterprise}/code-security/configurations/{configuration_id}"

                              'PATCH /enterprises/{enterprise}/code-security/configurations/{configuration_id}': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/{configuration_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise

                              property "PATCH /gists/{gist_id}"

                              'PATCH /gists/{gist_id}': Operation<'/gists/{gist_id}', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/reference/gists/#update-a-gist

                              property "PATCH /gists/{gist_id}/comments/{comment_id}"

                              'PATCH /gists/{gist_id}/comments/{comment_id}': Operation<
                              '/gists/{gist_id}/comments/{comment_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/gists/comments#update-a-gist-comment

                              property "PATCH /notifications/threads/{thread_id}"

                              'PATCH /notifications/threads/{thread_id}': Operation<
                              '/notifications/threads/{thread_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read

                              property "PATCH /orgs/{org}"

                              'PATCH /orgs/{org}': Operation<'/orgs/{org}', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#update-an-organization

                              property "PATCH /orgs/{org}/actions/hosted-runners/{hosted_runner_id}"

                              'PATCH /orgs/{org}/actions/hosted-runners/{hosted_runner_id}': Operation<
                              '/orgs/{org}/actions/hosted-runners/{hosted_runner_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization

                              property "PATCH /orgs/{org}/actions/runner-groups/{runner_group_id}"

                              'PATCH /orgs/{org}/actions/runner-groups/{runner_group_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization

                              property "PATCH /orgs/{org}/actions/variables/{name}"

                              'PATCH /orgs/{org}/actions/variables/{name}': Operation<
                              '/orgs/{org}/actions/variables/{name}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#update-an-organization-variable

                              property "PATCH /orgs/{org}/campaigns/{campaign_number}"

                              'PATCH /orgs/{org}/campaigns/{campaign_number}': Operation<
                              '/orgs/{org}/campaigns/{campaign_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/campaigns/campaigns#update-a-campaign

                              property "PATCH /orgs/{org}/code-security/configurations/{configuration_id}"

                              'PATCH /orgs/{org}/code-security/configurations/{configuration_id}': Operation<
                              '/orgs/{org}/code-security/configurations/{configuration_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration

                              property "PATCH /orgs/{org}/hooks/{hook_id}"

                              'PATCH /orgs/{org}/hooks/{hook_id}': Operation<
                              '/orgs/{org}/hooks/{hook_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook

                              property "PATCH /orgs/{org}/hooks/{hook_id}/config"

                              'PATCH /orgs/{org}/hooks/{hook_id}/config': Operation<
                              '/orgs/{org}/hooks/{hook_id}/config',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization

                              property "PATCH /orgs/{org}/private-registries/{secret_name}"

                              'PATCH /orgs/{org}/private-registries/{secret_name}': Operation<
                              '/orgs/{org}/private-registries/{secret_name}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization

                              property "PATCH /orgs/{org}/properties/schema"

                              'PATCH /orgs/{org}/properties/schema': Operation<
                              '/orgs/{org}/properties/schema',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization

                              property "PATCH /orgs/{org}/properties/values"

                              'PATCH /orgs/{org}/properties/values': Operation<
                              '/orgs/{org}/properties/values',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories

                              property "PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}"

                              'PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}': Operation<
                              '/orgs/{org}/settings/network-configurations/{network_configuration_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization

                              property "PATCH /orgs/{org}/teams/{team_slug}"

                              'PATCH /orgs/{org}/teams/{team_slug}': Operation<
                              '/orgs/{org}/teams/{team_slug}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#update-a-team

                              property "PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}"

                              'PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#update-a-discussion

                              property "PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}"

                              'PATCH /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment

                              property "PATCH /projects/{project_id}"

                              'PATCH /projects/{project_id}': Operation<'/projects/{project_id}', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#update-a-project

                              property "PATCH /projects/columns/{column_id}"

                              'PATCH /projects/columns/{column_id}': Operation<
                              '/projects/columns/{column_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/columns#update-an-existing-project-column

                              property "PATCH /projects/columns/cards/{card_id}"

                              'PATCH /projects/columns/cards/{card_id}': Operation<
                              '/projects/columns/cards/{card_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/cards#update-an-existing-project-card

                              property "PATCH /repos/{owner}/{repo}"

                              'PATCH /repos/{owner}/{repo}': Operation<'/repos/{owner}/{repo}', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#update-a-repository

                              property "PATCH /repos/{owner}/{repo}/actions/variables/{name}"

                              'PATCH /repos/{owner}/{repo}/actions/variables/{name}': Operation<
                              '/repos/{owner}/{repo}/actions/variables/{name}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#update-a-repository-variable

                              property "PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews"

                              'PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection

                              property "PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks"

                              'PATCH /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#update-status-check-protection

                              property "PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}"

                              'PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}': Operation<
                              '/repos/{owner}/{repo}/check-runs/{check_run_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/runs#update-a-check-run

                              property "PATCH /repos/{owner}/{repo}/check-suites/preferences"

                              'PATCH /repos/{owner}/{repo}/check-suites/preferences': Operation<
                              '/repos/{owner}/{repo}/check-suites/preferences',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites

                              property "PATCH /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}"

                              'PATCH /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert

                              property "PATCH /repos/{owner}/{repo}/code-scanning/default-setup"

                              'PATCH /repos/{owner}/{repo}/code-scanning/default-setup': Operation<
                              '/repos/{owner}/{repo}/code-scanning/default-setup',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration

                              property "PATCH /repos/{owner}/{repo}/comments/{comment_id}"

                              'PATCH /repos/{owner}/{repo}/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/comments/{comment_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/comments#update-a-commit-comment

                              property "PATCH /repos/{owner}/{repo}/dependabot/alerts/{alert_number}"

                              'PATCH /repos/{owner}/{repo}/dependabot/alerts/{alert_number}': Operation<
                              '/repos/{owner}/{repo}/dependabot/alerts/{alert_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert

                              property "PATCH /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}"

                              'PATCH /repos/{owner}/{repo}/environments/{environment_name}/variables/{name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/variables/{name}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#update-an-environment-variable

                              property "PATCH /repos/{owner}/{repo}/git/refs/{ref}"

                              'PATCH /repos/{owner}/{repo}/git/refs/{ref}': Operation<
                              '/repos/{owner}/{repo}/git/refs/{ref}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/refs#update-a-reference

                              property "PATCH /repos/{owner}/{repo}/hooks/{hook_id}"

                              'PATCH /repos/{owner}/{repo}/hooks/{hook_id}': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook

                              property "PATCH /repos/{owner}/{repo}/hooks/{hook_id}/config"

                              'PATCH /repos/{owner}/{repo}/hooks/{hook_id}/config': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/config',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository

                              property "PATCH /repos/{owner}/{repo}/import"

                              'PATCH /repos/{owner}/{repo}/import': Operation<
                              '/repos/{owner}/{repo}/import',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#update-an-import

                              property "PATCH /repos/{owner}/{repo}/import/authors/{author_id}"

                              'PATCH /repos/{owner}/{repo}/import/authors/{author_id}': Operation<
                              '/repos/{owner}/{repo}/import/authors/{author_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#map-a-commit-author

                              property "PATCH /repos/{owner}/{repo}/import/lfs"

                              'PATCH /repos/{owner}/{repo}/import/lfs': Operation<
                              '/repos/{owner}/{repo}/import/lfs',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference

                              property "PATCH /repos/{owner}/{repo}/invitations/{invitation_id}"

                              'PATCH /repos/{owner}/{repo}/invitations/{invitation_id}': Operation<
                              '/repos/{owner}/{repo}/invitations/{invitation_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation

                              property "PATCH /repos/{owner}/{repo}/issues/{issue_number}"

                              'PATCH /repos/{owner}/{repo}/issues/{issue_number}': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#update-an-issue

                              property "PATCH /repos/{owner}/{repo}/issues/{issue_number}/sub_issues/priority"

                              'PATCH /repos/{owner}/{repo}/issues/{issue_number}/sub_issues/priority': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/sub_issues/priority',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue

                              property "PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}"

                              'PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/issues/comments/{comment_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/comments#update-an-issue-comment

                              property "PATCH /repos/{owner}/{repo}/labels/{name}"

                              'PATCH /repos/{owner}/{repo}/labels/{name}': Operation<
                              '/repos/{owner}/{repo}/labels/{name}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#update-a-label

                              property "PATCH /repos/{owner}/{repo}/milestones/{milestone_number}"

                              'PATCH /repos/{owner}/{repo}/milestones/{milestone_number}': Operation<
                              '/repos/{owner}/{repo}/milestones/{milestone_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/milestones#update-a-milestone

                              property "PATCH /repos/{owner}/{repo}/properties/values"

                              'PATCH /repos/{owner}/{repo}/properties/values': Operation<
                              '/repos/{owner}/{repo}/properties/values',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository

                              property "PATCH /repos/{owner}/{repo}/pulls/{pull_number}"

                              'PATCH /repos/{owner}/{repo}/pulls/{pull_number}': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#update-a-pull-request

                              property "PATCH /repos/{owner}/{repo}/pulls/comments/{comment_id}"

                              'PATCH /repos/{owner}/{repo}/pulls/comments/{comment_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/comments/{comment_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request

                              property "PATCH /repos/{owner}/{repo}/releases/{release_id}"

                              'PATCH /repos/{owner}/{repo}/releases/{release_id}': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#update-a-release

                              property "PATCH /repos/{owner}/{repo}/releases/assets/{asset_id}"

                              'PATCH /repos/{owner}/{repo}/releases/assets/{asset_id}': Operation<
                              '/repos/{owner}/{repo}/releases/assets/{asset_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/assets#update-a-release-asset

                              property "PATCH /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}"

                              'PATCH /repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}': Operation<
                              '/repos/{owner}/{repo}/secret-scanning/alerts/{alert_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert

                              property "PATCH /repos/{owner}/{repo}/security-advisories/{ghsa_id}"

                              'PATCH /repos/{owner}/{repo}/security-advisories/{ghsa_id}': Operation<
                              '/repos/{owner}/{repo}/security-advisories/{ghsa_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory

                              property "PATCH /teams/{team_id}"

                              'PATCH /teams/{team_id}': Operation<'/teams/{team_id}', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#update-a-team-legacy

                              property "PATCH /teams/{team_id}/discussions/{discussion_number}"

                              'PATCH /teams/{team_id}/discussions/{discussion_number}': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy

                              property "PATCH /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}"

                              'PATCH /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy

                              property "PATCH /user"

                              'PATCH /user': Operation<'/user', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/users/users#update-the-authenticated-user

                              property "PATCH /user/codespaces/{codespace_name}"

                              'PATCH /user/codespaces/{codespace_name}': Operation<
                              '/user/codespaces/{codespace_name}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user

                              property "PATCH /user/email/visibility"

                              'PATCH /user/email/visibility': Operation<'/user/email/visibility', 'patch'>;
                              • See Also

                                • https://docs.github.com/rest/users/emails#set-primary-email-visibility-for-the-authenticated-user

                              property "PATCH /user/memberships/orgs/{org}"

                              'PATCH /user/memberships/orgs/{org}': Operation<
                              '/user/memberships/orgs/{org}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user

                              property "PATCH /user/repository_invitations/{invitation_id}"

                              'PATCH /user/repository_invitations/{invitation_id}': Operation<
                              '/user/repository_invitations/{invitation_id}',
                              'patch'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation

                              property "POST {origin}/repos/{owner}/{repo}/releases/{release_id}/assets{?name,label}"

                              'POST {origin}/repos/{owner}/{repo}/releases/{release_id}/assets{?name,label}': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}/assets',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/assets#upload-a-release-asset

                              property "POST /app-manifests/{code}/conversions"

                              'POST /app-manifests/{code}/conversions': Operation<
                              '/app-manifests/{code}/conversions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#create-a-github-app-from-a-manifest

                              property "POST /app/hook/deliveries/{delivery_id}/attempts"

                              'POST /app/hook/deliveries/{delivery_id}/attempts': Operation<
                              '/app/hook/deliveries/{delivery_id}/attempts',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/webhooks#redeliver-a-delivery-for-an-app-webhook

                              property "POST /app/installations/{installation_id}/access_tokens"

                              'POST /app/installations/{installation_id}/access_tokens': Operation<
                              '/app/installations/{installation_id}/access_tokens',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#create-an-installation-access-token-for-an-app

                              property "POST /applications/{client_id}/token"

                              'POST /applications/{client_id}/token': Operation<
                              '/applications/{client_id}/token',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/oauth-applications#check-a-token

                              property "POST /applications/{client_id}/token/scoped"

                              'POST /applications/{client_id}/token/scoped': Operation<
                              '/applications/{client_id}/token/scoped',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#create-a-scoped-access-token

                              property "POST /credentials/revoke"

                              'POST /credentials/revoke': Operation<'/credentials/revoke', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/credentials/revoke#revoke-a-list-of-credentials

                              property "POST /enterprises/{enterprise}/code-security/configurations"

                              'POST /enterprises/{enterprise}/code-security/configurations': Operation<
                              '/enterprises/{enterprise}/code-security/configurations',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration-for-an-enterprise

                              property "POST /enterprises/{enterprise}/code-security/configurations/{configuration_id}/attach"

                              'POST /enterprises/{enterprise}/code-security/configurations/{configuration_id}/attach': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/{configuration_id}/attach',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories

                              property "POST /gists"

                              'POST /gists': Operation<'/gists', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#create-a-gist

                              property "POST /gists/{gist_id}/comments"

                              'POST /gists/{gist_id}/comments': Operation<'/gists/{gist_id}/comments', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/gists/comments#create-a-gist-comment

                              property "POST /gists/{gist_id}/forks"

                              'POST /gists/{gist_id}/forks': Operation<'/gists/{gist_id}/forks', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#fork-a-gist

                              property "POST /markdown"

                              'POST /markdown': Operation<'/markdown', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/markdown/markdown#render-a-markdown-document

                              property "POST /markdown/raw"

                              'POST /markdown/raw': Operation<'/markdown/raw', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/markdown/markdown#render-a-markdown-document-in-raw-mode

                              property "POST /orgs/{org}/{security_product}/{enablement}"

                              'POST /orgs/{org}/{security_product}/{enablement}': Operation<
                              '/orgs/{org}/{security_product}/{enablement}',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization

                              property "POST /orgs/{org}/actions/hosted-runners"

                              'POST /orgs/{org}/actions/hosted-runners': Operation<
                              '/orgs/{org}/actions/hosted-runners',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization

                              property "POST /orgs/{org}/actions/runner-groups"

                              'POST /orgs/{org}/actions/runner-groups': Operation<
                              '/orgs/{org}/actions/runner-groups',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization

                              property "POST /orgs/{org}/actions/runners/{runner_id}/labels"

                              'POST /orgs/{org}/actions/runners/{runner_id}/labels': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}/labels',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization

                              property "POST /orgs/{org}/actions/runners/generate-jitconfig"

                              'POST /orgs/{org}/actions/runners/generate-jitconfig': Operation<
                              '/orgs/{org}/actions/runners/generate-jitconfig',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization

                              property "POST /orgs/{org}/actions/runners/registration-token"

                              'POST /orgs/{org}/actions/runners/registration-token': Operation<
                              '/orgs/{org}/actions/runners/registration-token',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization

                              property "POST /orgs/{org}/actions/runners/remove-token"

                              'POST /orgs/{org}/actions/runners/remove-token': Operation<
                              '/orgs/{org}/actions/runners/remove-token',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization

                              property "POST /orgs/{org}/actions/variables"

                              'POST /orgs/{org}/actions/variables': Operation<
                              '/orgs/{org}/actions/variables',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#create-an-organization-variable

                              property "POST /orgs/{org}/campaigns"

                              'POST /orgs/{org}/campaigns': Operation<'/orgs/{org}/campaigns', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization

                              property "POST /orgs/{org}/code-security/configurations"

                              'POST /orgs/{org}/code-security/configurations': Operation<
                              '/orgs/{org}/code-security/configurations',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration

                              property "POST /orgs/{org}/code-security/configurations/{configuration_id}/attach"

                              'POST /orgs/{org}/code-security/configurations/{configuration_id}/attach': Operation<
                              '/orgs/{org}/code-security/configurations/{configuration_id}/attach',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories

                              property "POST /orgs/{org}/codespaces/access/selected_users"

                              'POST /orgs/{org}/codespaces/access/selected_users': Operation<
                              '/orgs/{org}/codespaces/access/selected_users',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization

                              property "POST /orgs/{org}/copilot/billing/selected_teams"

                              'POST /orgs/{org}/copilot/billing/selected_teams': Operation<
                              '/orgs/{org}/copilot/billing/selected_teams',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization

                              property "POST /orgs/{org}/copilot/billing/selected_users"

                              'POST /orgs/{org}/copilot/billing/selected_users': Operation<
                              '/orgs/{org}/copilot/billing/selected_users',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization

                              property "POST /orgs/{org}/hooks"

                              'POST /orgs/{org}/hooks': Operation<'/orgs/{org}/hooks', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook

                              property "POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts"

                              'POST /orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts': Operation<
                              '/orgs/{org}/hooks/{hook_id}/deliveries/{delivery_id}/attempts',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook

                              property "POST /orgs/{org}/hooks/{hook_id}/pings"

                              'POST /orgs/{org}/hooks/{hook_id}/pings': Operation<
                              '/orgs/{org}/hooks/{hook_id}/pings',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook

                              property "POST /orgs/{org}/invitations"

                              'POST /orgs/{org}/invitations': Operation<'/orgs/{org}/invitations', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#create-an-organization-invitation

                              property "POST /orgs/{org}/issue-types"

                              'POST /orgs/{org}/issue-types': Operation<'/orgs/{org}/issue-types', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization

                              property "POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop"

                              'POST /orgs/{org}/members/{username}/codespaces/{codespace_name}/stop': Operation<
                              '/orgs/{org}/members/{username}/codespaces/{codespace_name}/stop',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user

                              property "POST /orgs/{org}/migrations"

                              'POST /orgs/{org}/migrations': Operation<'/orgs/{org}/migrations', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/migrations/orgs#start-an-organization-migration

                              property "POST /orgs/{org}/packages/{package_type}/{package_name}/restore{?token}"

                              'POST /orgs/{org}/packages/{package_type}/{package_name}/restore{?token}': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}/restore',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization

                              property "POST /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"

                              'POST /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore': Operation<
                              '/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization

                              property "POST /orgs/{org}/personal-access-token-requests"

                              'POST /orgs/{org}/personal-access-token-requests': Operation<
                              '/orgs/{org}/personal-access-token-requests',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens

                              property "POST /orgs/{org}/personal-access-token-requests/{pat_request_id}"

                              'POST /orgs/{org}/personal-access-token-requests/{pat_request_id}': Operation<
                              '/orgs/{org}/personal-access-token-requests/{pat_request_id}',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token

                              property "POST /orgs/{org}/personal-access-tokens"

                              'POST /orgs/{org}/personal-access-tokens': Operation<
                              '/orgs/{org}/personal-access-tokens',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens

                              property "POST /orgs/{org}/personal-access-tokens/{pat_id}"

                              'POST /orgs/{org}/personal-access-tokens/{pat_id}': Operation<
                              '/orgs/{org}/personal-access-tokens/{pat_id}',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources

                              property "POST /orgs/{org}/private-registries"

                              'POST /orgs/{org}/private-registries': Operation<
                              '/orgs/{org}/private-registries',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization

                              property "POST /orgs/{org}/projects"

                              'POST /orgs/{org}/projects': Operation<'/orgs/{org}/projects', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#create-an-organization-project

                              property "POST /orgs/{org}/repos"

                              'POST /orgs/{org}/repos': Operation<'/orgs/{org}/repos', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#create-an-organization-repository

                              property "POST /orgs/{org}/rulesets"

                              'POST /orgs/{org}/rulesets': Operation<'/orgs/{org}/rulesets', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#create-an-organization-repository-ruleset

                              property "POST /orgs/{org}/settings/network-configurations"

                              'POST /orgs/{org}/settings/network-configurations': Operation<
                              '/orgs/{org}/settings/network-configurations',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization

                              property "POST /orgs/{org}/teams"

                              'POST /orgs/{org}/teams': Operation<'/orgs/{org}/teams', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#create-a-team

                              property "POST /orgs/{org}/teams/{team_slug}/discussions"

                              'POST /orgs/{org}/teams/{team_slug}/discussions': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#create-a-discussion

                              property "POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments"

                              'POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment

                              property "POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions"

                              'POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/comments/{comment_number}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment

                              property "POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions"

                              'POST /orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions': Operation<
                              '/orgs/{org}/teams/{team_slug}/discussions/{discussion_number}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion

                              property "POST /projects/{project_id}/columns"

                              'POST /projects/{project_id}/columns': Operation<
                              '/projects/{project_id}/columns',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/columns#create-a-project-column

                              property "POST /projects/columns/{column_id}/cards"

                              'POST /projects/columns/{column_id}/cards': Operation<
                              '/projects/columns/{column_id}/cards',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/cards#create-a-project-card

                              property "POST /projects/columns/{column_id}/moves"

                              'POST /projects/columns/{column_id}/moves': Operation<
                              '/projects/columns/{column_id}/moves',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/columns#move-a-project-column

                              property "POST /projects/columns/cards/{card_id}/moves"

                              'POST /projects/columns/cards/{card_id}/moves': Operation<
                              '/projects/columns/cards/{card_id}/moves',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/cards#move-a-project-card

                              property "POST /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun"

                              'POST /repos/{owner}/{repo}/actions/jobs/{job_id}/rerun': Operation<
                              '/repos/{owner}/{repo}/actions/jobs/{job_id}/rerun',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run

                              property "POST /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"

                              'POST /repos/{owner}/{repo}/actions/runners/{runner_id}/labels': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}/labels',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository

                              property "POST /repos/{owner}/{repo}/actions/runners/generate-jitconfig"

                              'POST /repos/{owner}/{repo}/actions/runners/generate-jitconfig': Operation<
                              '/repos/{owner}/{repo}/actions/runners/generate-jitconfig',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository

                              property "POST /repos/{owner}/{repo}/actions/runners/registration-token"

                              'POST /repos/{owner}/{repo}/actions/runners/registration-token': Operation<
                              '/repos/{owner}/{repo}/actions/runners/registration-token',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository

                              property "POST /repos/{owner}/{repo}/actions/runners/remove-token"

                              'POST /repos/{owner}/{repo}/actions/runners/remove-token': Operation<
                              '/repos/{owner}/{repo}/actions/runners/remove-token',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/approve',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/cancel',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/force-cancel',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/pending_deployments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run

                              property "POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun"

                              'POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun': Operation<
                              '/repos/{owner}/{repo}/actions/runs/{run_id}/rerun',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow

                              property "POST /repos/{owner}/{repo}/actions/variables"

                              'POST /repos/{owner}/{repo}/actions/variables': Operation<
                              '/repos/{owner}/{repo}/actions/variables',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#create-a-repository-variable

                              property "POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches"

                              'POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches': Operation<
                              '/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event

                              property "POST /repos/{owner}/{repo}/attestations"

                              'POST /repos/{owner}/{repo}/attestations': Operation<
                              '/repos/{owner}/{repo}/attestations',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#create-an-attestation

                              property "POST /repos/{owner}/{repo}/autolinks"

                              'POST /repos/{owner}/{repo}/autolinks': Operation<
                              '/repos/{owner}/{repo}/autolinks',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository

                              property "POST /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins"

                              'POST /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection

                              property "POST /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures"

                              'POST /repos/{owner}/{repo}/branches/{branch}/protection/required_signatures': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection

                              property "POST /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts"

                              'POST /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts

                              property "POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps"

                              'POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions

                              property "POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams"

                              'POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions

                              property "POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users"

                              'POST /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions

                              property "POST /repos/{owner}/{repo}/branches/{branch}/rename"

                              'POST /repos/{owner}/{repo}/branches/{branch}/rename': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/rename',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branches#rename-a-branch

                              property "POST /repos/{owner}/{repo}/check-runs"

                              'POST /repos/{owner}/{repo}/check-runs': Operation<
                              '/repos/{owner}/{repo}/check-runs',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/checks#create-a-check-run

                              property "POST /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest"

                              'POST /repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest': Operation<
                              '/repos/{owner}/{repo}/check-runs/{check_run_id}/rerequest',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/runs#rerequest-a-check-run

                              property "POST /repos/{owner}/{repo}/check-suites"

                              'POST /repos/{owner}/{repo}/check-suites': Operation<
                              '/repos/{owner}/{repo}/check-suites',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/suites#create-a-check-suite

                              property "POST /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest"

                              'POST /repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest': Operation<
                              '/repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/checks/suites#rerequest-a-check-suite

                              property "POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix"

                              'POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert

                              property "POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix/commits"

                              'POST /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix/commits': Operation<
                              '/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/autofix/commits',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert

                              property "POST /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses"

                              'POST /repos/{owner}/{repo}/code-scanning/codeql/variant-analyses': Operation<
                              '/repos/{owner}/{repo}/code-scanning/codeql/variant-analyses',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis

                              property "POST /repos/{owner}/{repo}/code-scanning/sarifs"

                              'POST /repos/{owner}/{repo}/code-scanning/sarifs': Operation<
                              '/repos/{owner}/{repo}/code-scanning/sarifs',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data

                              property "POST /repos/{owner}/{repo}/codespaces"

                              'POST /repos/{owner}/{repo}/codespaces': Operation<
                              '/repos/{owner}/{repo}/codespaces',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository

                              property "POST /repos/{owner}/{repo}/comments/{comment_id}/reactions"

                              'POST /repos/{owner}/{repo}/comments/{comment_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/comments/{comment_id}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment

                              property "POST /repos/{owner}/{repo}/commits/{commit_sha}/comments"

                              'POST /repos/{owner}/{repo}/commits/{commit_sha}/comments': Operation<
                              '/repos/{owner}/{repo}/commits/{commit_sha}/comments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/comments#create-a-commit-comment

                              property "POST /repos/{owner}/{repo}/dependency-graph/snapshots"

                              'POST /repos/{owner}/{repo}/dependency-graph/snapshots': Operation<
                              '/repos/{owner}/{repo}/dependency-graph/snapshots',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository

                              property "POST /repos/{owner}/{repo}/deployments"

                              'POST /repos/{owner}/{repo}/deployments': Operation<
                              '/repos/{owner}/{repo}/deployments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/deployments#create-a-deployment

                              property "POST /repos/{owner}/{repo}/deployments/{deployment_id}/statuses"

                              'POST /repos/{owner}/{repo}/deployments/{deployment_id}/statuses': Operation<
                              '/repos/{owner}/{repo}/deployments/{deployment_id}/statuses',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/statuses#create-a-deployment-status

                              property "POST /repos/{owner}/{repo}/dispatches"

                              'POST /repos/{owner}/{repo}/dispatches': Operation<
                              '/repos/{owner}/{repo}/dispatches',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event

                              property "POST /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules"

                              'POST /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment

                              property "POST /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies"

                              'POST /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy

                              property "POST /repos/{owner}/{repo}/environments/{environment_name}/variables"

                              'POST /repos/{owner}/{repo}/environments/{environment_name}/variables': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/variables',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#create-an-environment-variable

                              property "POST /repos/{owner}/{repo}/forks"

                              'POST /repos/{owner}/{repo}/forks': Operation<
                              '/repos/{owner}/{repo}/forks',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/forks#create-a-fork

                              property "POST /repos/{owner}/{repo}/git/blobs"

                              'POST /repos/{owner}/{repo}/git/blobs': Operation<
                              '/repos/{owner}/{repo}/git/blobs',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/blobs#create-a-blob

                              property "POST /repos/{owner}/{repo}/git/commits"

                              'POST /repos/{owner}/{repo}/git/commits': Operation<
                              '/repos/{owner}/{repo}/git/commits',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/commits#create-a-commit

                              property "POST /repos/{owner}/{repo}/git/refs"

                              'POST /repos/{owner}/{repo}/git/refs': Operation<
                              '/repos/{owner}/{repo}/git/refs',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/refs#create-a-reference

                              property "POST /repos/{owner}/{repo}/git/tags"

                              'POST /repos/{owner}/{repo}/git/tags': Operation<
                              '/repos/{owner}/{repo}/git/tags',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/tags#create-a-tag-object

                              property "POST /repos/{owner}/{repo}/git/trees"

                              'POST /repos/{owner}/{repo}/git/trees': Operation<
                              '/repos/{owner}/{repo}/git/trees',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/git/trees#create-a-tree

                              property "POST /repos/{owner}/{repo}/hooks"

                              'POST /repos/{owner}/{repo}/hooks': Operation<
                              '/repos/{owner}/{repo}/hooks',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook

                              property "POST /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts"

                              'POST /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}/attempts',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook

                              property "POST /repos/{owner}/{repo}/hooks/{hook_id}/pings"

                              'POST /repos/{owner}/{repo}/hooks/{hook_id}/pings': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/pings',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook

                              property "POST /repos/{owner}/{repo}/hooks/{hook_id}/tests"

                              'POST /repos/{owner}/{repo}/hooks/{hook_id}/tests': Operation<
                              '/repos/{owner}/{repo}/hooks/{hook_id}/tests',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook

                              property "POST /repos/{owner}/{repo}/issues"

                              'POST /repos/{owner}/{repo}/issues': Operation<
                              '/repos/{owner}/{repo}/issues',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#create-an-issue

                              property "POST /repos/{owner}/{repo}/issues/{issue_number}/assignees"

                              'POST /repos/{owner}/{repo}/issues/{issue_number}/assignees': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/assignees',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue

                              property "POST /repos/{owner}/{repo}/issues/{issue_number}/comments"

                              'POST /repos/{owner}/{repo}/issues/{issue_number}/comments': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/comments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/comments#create-an-issue-comment

                              property "POST /repos/{owner}/{repo}/issues/{issue_number}/labels"

                              'POST /repos/{owner}/{repo}/issues/{issue_number}/labels': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/labels',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#add-labels-to-an-issue

                              property "POST /repos/{owner}/{repo}/issues/{issue_number}/reactions"

                              'POST /repos/{owner}/{repo}/issues/{issue_number}/reactions': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue

                              property "POST /repos/{owner}/{repo}/issues/{issue_number}/sub_issues"

                              'POST /repos/{owner}/{repo}/issues/{issue_number}/sub_issues': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/sub_issues',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/sub-issues#add-sub-issue

                              property "POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions"

                              'POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment

                              property "POST /repos/{owner}/{repo}/keys"

                              'POST /repos/{owner}/{repo}/keys': Operation<
                              '/repos/{owner}/{repo}/keys',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key

                              property "POST /repos/{owner}/{repo}/labels"

                              'POST /repos/{owner}/{repo}/labels': Operation<
                              '/repos/{owner}/{repo}/labels',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#create-a-label

                              property "POST /repos/{owner}/{repo}/merge-upstream"

                              'POST /repos/{owner}/{repo}/merge-upstream': Operation<
                              '/repos/{owner}/{repo}/merge-upstream',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository

                              property "POST /repos/{owner}/{repo}/merges"

                              'POST /repos/{owner}/{repo}/merges': Operation<
                              '/repos/{owner}/{repo}/merges',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branches#merge-a-branch

                              property "POST /repos/{owner}/{repo}/milestones"

                              'POST /repos/{owner}/{repo}/milestones': Operation<
                              '/repos/{owner}/{repo}/milestones',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/milestones#create-a-milestone

                              property "POST /repos/{owner}/{repo}/pages"

                              'POST /repos/{owner}/{repo}/pages': Operation<
                              '/repos/{owner}/{repo}/pages',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site

                              property "POST /repos/{owner}/{repo}/pages/builds"

                              'POST /repos/{owner}/{repo}/pages/builds': Operation<
                              '/repos/{owner}/{repo}/pages/builds',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build

                              property "POST /repos/{owner}/{repo}/pages/deployments"

                              'POST /repos/{owner}/{repo}/pages/deployments': Operation<
                              '/repos/{owner}/{repo}/pages/deployments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment

                              property "POST /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel"

                              'POST /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel': Operation<
                              '/repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment

                              property "POST /repos/{owner}/{repo}/projects"

                              'POST /repos/{owner}/{repo}/projects': Operation<
                              '/repos/{owner}/{repo}/projects',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#create-a-repository-project

                              property "POST /repos/{owner}/{repo}/pulls"

                              'POST /repos/{owner}/{repo}/pulls': Operation<
                              '/repos/{owner}/{repo}/pulls',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#create-a-pull-request

                              property "POST /repos/{owner}/{repo}/pulls/{pull_number}/codespaces"

                              'POST /repos/{owner}/{repo}/pulls/{pull_number}/codespaces': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/codespaces',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request

                              property "POST /repos/{owner}/{repo}/pulls/{pull_number}/comments"

                              'POST /repos/{owner}/{repo}/pulls/{pull_number}/comments': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/comments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request

                              property "POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies"

                              'POST /repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment

                              property "POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers"

                              'POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/pulls#request-reviewers-for-a-pull-request

                              property "POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews"

                              'POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request

                              property "POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events"

                              'POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request

                              property "POST /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions"

                              'POST /repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment

                              property "POST /repos/{owner}/{repo}/releases"

                              'POST /repos/{owner}/{repo}/releases': Operation<
                              '/repos/{owner}/{repo}/releases',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#create-a-release

                              property "POST /repos/{owner}/{repo}/releases/{release_id}/reactions"

                              'POST /repos/{owner}/{repo}/releases/{release_id}/reactions': Operation<
                              '/repos/{owner}/{repo}/releases/{release_id}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release

                              property "POST /repos/{owner}/{repo}/releases/generate-notes"

                              'POST /repos/{owner}/{repo}/releases/generate-notes': Operation<
                              '/repos/{owner}/{repo}/releases/generate-notes',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release

                              property "POST /repos/{owner}/{repo}/rulesets"

                              'POST /repos/{owner}/{repo}/rulesets': Operation<
                              '/repos/{owner}/{repo}/rulesets',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#create-a-repository-ruleset

                              property "POST /repos/{owner}/{repo}/secret-scanning/push-protection-bypasses"

                              'POST /repos/{owner}/{repo}/secret-scanning/push-protection-bypasses': Operation<
                              '/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass

                              property "POST /repos/{owner}/{repo}/security-advisories"

                              'POST /repos/{owner}/{repo}/security-advisories': Operation<
                              '/repos/{owner}/{repo}/security-advisories',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory

                              property "POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve"

                              'POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve': Operation<
                              '/repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory

                              property "POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks"

                              'POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks': Operation<
                              '/repos/{owner}/{repo}/security-advisories/{ghsa_id}/forks',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork

                              property "POST /repos/{owner}/{repo}/security-advisories/reports"

                              'POST /repos/{owner}/{repo}/security-advisories/reports': Operation<
                              '/repos/{owner}/{repo}/security-advisories/reports',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability

                              property "POST /repos/{owner}/{repo}/statuses/{sha}"

                              'POST /repos/{owner}/{repo}/statuses/{sha}': Operation<
                              '/repos/{owner}/{repo}/statuses/{sha}',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/commits/statuses#create-a-commit-status

                              property "POST /repos/{owner}/{repo}/tags/protection"

                              'POST /repos/{owner}/{repo}/tags/protection': Operation<
                              '/repos/{owner}/{repo}/tags/protection',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository

                              property "POST /repos/{owner}/{repo}/transfer"

                              'POST /repos/{owner}/{repo}/transfer': Operation<
                              '/repos/{owner}/{repo}/transfer',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#transfer-a-repository

                              property "POST /repos/{template_owner}/{template_repo}/generate"

                              'POST /repos/{template_owner}/{template_repo}/generate': Operation<
                              '/repos/{template_owner}/{template_repo}/generate',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#create-a-repository-using-a-template

                              property "POST /teams/{team_id}/discussions"

                              'POST /teams/{team_id}/discussions': Operation<
                              '/teams/{team_id}/discussions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy

                              property "POST /teams/{team_id}/discussions/{discussion_number}/comments"

                              'POST /teams/{team_id}/discussions/{discussion_number}/comments': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy

                              property "POST /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions"

                              'POST /teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy

                              property "POST /teams/{team_id}/discussions/{discussion_number}/reactions"

                              'POST /teams/{team_id}/discussions/{discussion_number}/reactions': Operation<
                              '/teams/{team_id}/discussions/{discussion_number}/reactions',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy

                              property "POST /user/codespaces"

                              'POST /user/codespaces': Operation<'/user/codespaces', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-for-the-authenticated-user

                              property "POST /user/codespaces/{codespace_name}/exports"

                              'POST /user/codespaces/{codespace_name}/exports': Operation<
                              '/user/codespaces/{codespace_name}/exports',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user

                              property "POST /user/codespaces/{codespace_name}/publish"

                              'POST /user/codespaces/{codespace_name}/publish': Operation<
                              '/user/codespaces/{codespace_name}/publish',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace

                              property "POST /user/codespaces/{codespace_name}/start"

                              'POST /user/codespaces/{codespace_name}/start': Operation<
                              '/user/codespaces/{codespace_name}/start',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user

                              property "POST /user/codespaces/{codespace_name}/stop"

                              'POST /user/codespaces/{codespace_name}/stop': Operation<
                              '/user/codespaces/{codespace_name}/stop',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user

                              property "POST /user/emails"

                              'POST /user/emails': Operation<'/user/emails', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/users/emails#add-an-email-address-for-the-authenticated-user

                              property "POST /user/gpg_keys"

                              'POST /user/gpg_keys': Operation<'/user/gpg_keys', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/users/gpg-keys#create-a-gpg-key-for-the-authenticated-user

                              property "POST /user/keys"

                              'POST /user/keys': Operation<'/user/keys', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/users/keys#create-a-public-ssh-key-for-the-authenticated-user

                              property "POST /user/migrations"

                              'POST /user/migrations': Operation<'/user/migrations', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/migrations/users#start-a-user-migration

                              property "POST /user/packages/{package_type}/{package_name}/restore{?token}"

                              'POST /user/packages/{package_type}/{package_name}/restore{?token}': Operation<
                              '/user/packages/{package_type}/{package_name}/restore',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user

                              property "POST /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"

                              'POST /user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore': Operation<
                              '/user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user

                              property "POST /user/projects"

                              'POST /user/projects': Operation<'/user/projects', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/projects/projects#create-a-user-project

                              property "POST /user/repos"

                              'POST /user/repos': Operation<'/user/repos', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#create-a-repository-for-the-authenticated-user

                              property "POST /user/social_accounts"

                              'POST /user/social_accounts': Operation<'/user/social_accounts', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/users/social-accounts#add-social-accounts-for-the-authenticated-user

                              property "POST /user/ssh_signing_keys"

                              'POST /user/ssh_signing_keys': Operation<'/user/ssh_signing_keys', 'post'>;
                              • See Also

                                • https://docs.github.com/rest/users/ssh-signing-keys#create-a-ssh-signing-key-for-the-authenticated-user

                              property "POST /users/{username}/packages/{package_type}/{package_name}/restore{?token}"

                              'POST /users/{username}/packages/{package_type}/{package_name}/restore{?token}': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}/restore',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user

                              property "POST /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"

                              'POST /users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore': Operation<
                              '/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore',
                              'post'
                              >;
                              • See Also

                                • https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user

                              property "PUT /app/installations/{installation_id}/suspended"

                              'PUT /app/installations/{installation_id}/suspended': Operation<
                              '/app/installations/{installation_id}/suspended',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/apps#suspend-an-app-installation

                              property "PUT /enterprises/{enterprise}/code-security/configurations/{configuration_id}/defaults"

                              'PUT /enterprises/{enterprise}/code-security/configurations/{configuration_id}/defaults': Operation<
                              '/enterprises/{enterprise}/code-security/configurations/{configuration_id}/defaults',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise

                              property "PUT /gists/{gist_id}/star"

                              'PUT /gists/{gist_id}/star': Operation<'/gists/{gist_id}/star', 'put'>;
                              • See Also

                                • https://docs.github.com/rest/gists/gists#star-a-gist

                              property "PUT /notifications"

                              'PUT /notifications': Operation<'/notifications', 'put'>;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#mark-notifications-as-read

                              property "PUT /notifications/threads/{thread_id}/subscription"

                              'PUT /notifications/threads/{thread_id}/subscription': Operation<
                              '/notifications/threads/{thread_id}/subscription',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#set-a-thread-subscription

                              property "PUT /orgs/{org}/actions/oidc/customization/sub"

                              'PUT /orgs/{org}/actions/oidc/customization/sub': Operation<
                              '/orgs/{org}/actions/oidc/customization/sub',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization

                              property "PUT /orgs/{org}/actions/permissions"

                              'PUT /orgs/{org}/actions/permissions': Operation<
                              '/orgs/{org}/actions/permissions',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization

                              property "PUT /orgs/{org}/actions/permissions/repositories"

                              'PUT /orgs/{org}/actions/permissions/repositories': Operation<
                              '/orgs/{org}/actions/permissions/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization

                              property "PUT /orgs/{org}/actions/permissions/repositories/{repository_id}"

                              'PUT /orgs/{org}/actions/permissions/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/permissions/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization

                              property "PUT /orgs/{org}/actions/permissions/selected-actions"

                              'PUT /orgs/{org}/actions/permissions/selected-actions': Operation<
                              '/orgs/{org}/actions/permissions/selected-actions',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization

                              property "PUT /orgs/{org}/actions/permissions/workflow"

                              'PUT /orgs/{org}/actions/permissions/workflow': Operation<
                              '/orgs/{org}/actions/permissions/workflow',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization

                              property "PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories"

                              'PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization

                              property "PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}"

                              'PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization

                              property "PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/runners"

                              'PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/runners': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/runners',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization

                              property "PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}"

                              'PUT /orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}': Operation<
                              '/orgs/{org}/actions/runner-groups/{runner_group_id}/runners/{runner_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization

                              property "PUT /orgs/{org}/actions/runners/{runner_id}/labels"

                              'PUT /orgs/{org}/actions/runners/{runner_id}/labels': Operation<
                              '/orgs/{org}/actions/runners/{runner_id}/labels',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization

                              property "PUT /orgs/{org}/actions/secrets/{secret_name}"

                              'PUT /orgs/{org}/actions/secrets/{secret_name}': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/actions#create-or-update-an-organization-secret

                              property "PUT /orgs/{org}/actions/secrets/{secret_name}/repositories"

                              'PUT /orgs/{org}/actions/secrets/{secret_name}/repositories': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret

                              property "PUT /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}"

                              'PUT /orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret

                              property "PUT /orgs/{org}/actions/variables/{name}/repositories"

                              'PUT /orgs/{org}/actions/variables/{name}/repositories': Operation<
                              '/orgs/{org}/actions/variables/{name}/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable

                              property "PUT /orgs/{org}/actions/variables/{name}/repositories/{repository_id}"

                              'PUT /orgs/{org}/actions/variables/{name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/actions/variables/{name}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable

                              property "PUT /orgs/{org}/blocks/{username}"

                              'PUT /orgs/{org}/blocks/{username}': Operation<
                              '/orgs/{org}/blocks/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization

                              property "PUT /orgs/{org}/code-security/configurations/{configuration_id}/defaults"

                              'PUT /orgs/{org}/code-security/configurations/{configuration_id}/defaults': Operation<
                              '/orgs/{org}/code-security/configurations/{configuration_id}/defaults',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization

                              property "PUT /orgs/{org}/codespaces/access"

                              'PUT /orgs/{org}/codespaces/access': Operation<
                              '/orgs/{org}/codespaces/access',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces

                              property "PUT /orgs/{org}/codespaces/secrets/{secret_name}"

                              'PUT /orgs/{org}/codespaces/secrets/{secret_name}': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret

                              property "PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories"

                              'PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret

                              property "PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}"

                              'PUT /orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/codespaces/secrets/{secret_name}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret

                              property "PUT /orgs/{org}/dependabot/secrets/{secret_name}"

                              'PUT /orgs/{org}/dependabot/secrets/{secret_name}': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/reference/dependabot#create-or-update-an-organization-secret

                              property "PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories"

                              'PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret

                              property "PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}"

                              'PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret

                              property "PUT /orgs/{org}/interaction-limits"

                              'PUT /orgs/{org}/interaction-limits': Operation<
                              '/orgs/{org}/interaction-limits',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization

                              property "PUT /orgs/{org}/issue-types/{issue_type_id}"

                              'PUT /orgs/{org}/issue-types/{issue_type_id}': Operation<
                              '/orgs/{org}/issue-types/{issue_type_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization

                              property "PUT /orgs/{org}/memberships/{username}"

                              'PUT /orgs/{org}/memberships/{username}': Operation<
                              '/orgs/{org}/memberships/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user

                              property "PUT /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}"

                              'PUT /orgs/{org}/organization-roles/teams/{team_slug}/{role_id}': Operation<
                              '/orgs/{org}/organization-roles/teams/{team_slug}/{role_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team

                              property "PUT /orgs/{org}/organization-roles/users/{username}/{role_id}"

                              'PUT /orgs/{org}/organization-roles/users/{username}/{role_id}': Operation<
                              '/orgs/{org}/organization-roles/users/{username}/{role_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user

                              property "PUT /orgs/{org}/outside_collaborators/{username}"

                              'PUT /orgs/{org}/outside_collaborators/{username}': Operation<
                              '/orgs/{org}/outside_collaborators/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator

                              property "PUT /orgs/{org}/properties/schema/{custom_property_name}"

                              'PUT /orgs/{org}/properties/schema/{custom_property_name}': Operation<
                              '/orgs/{org}/properties/schema/{custom_property_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization

                              property "PUT /orgs/{org}/public_members/{username}"

                              'PUT /orgs/{org}/public_members/{username}': Operation<
                              '/orgs/{org}/public_members/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user

                              property "PUT /orgs/{org}/rulesets/{ruleset_id}"

                              'PUT /orgs/{org}/rulesets/{ruleset_id}': Operation<
                              '/orgs/{org}/rulesets/{ruleset_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/rules#update-an-organization-repository-ruleset

                              property "PUT /orgs/{org}/security-managers/teams/{team_slug}"

                              'PUT /orgs/{org}/security-managers/teams/{team_slug}': Operation<
                              '/orgs/{org}/security-managers/teams/{team_slug}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team

                              property "PUT /orgs/{org}/teams/{team_slug}/memberships/{username}"

                              'PUT /orgs/{org}/teams/{team_slug}/memberships/{username}': Operation<
                              '/orgs/{org}/teams/{team_slug}/memberships/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user

                              property "PUT /orgs/{org}/teams/{team_slug}/projects/{project_id}"

                              'PUT /orgs/{org}/teams/{team_slug}/projects/{project_id}': Operation<
                              '/orgs/{org}/teams/{team_slug}/projects/{project_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions

                              property "PUT /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}"

                              'PUT /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}': Operation<
                              '/orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions

                              property "PUT /projects/{project_id}/collaborators/{username}"

                              'PUT /projects/{project_id}/collaborators/{username}': Operation<
                              '/projects/{project_id}/collaborators/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/projects/collaborators#add-project-collaborator

                              property "PUT /repos/{owner}/{repo}/actions/oidc/customization/sub"

                              'PUT /repos/{owner}/{repo}/actions/oidc/customization/sub': Operation<
                              '/repos/{owner}/{repo}/actions/oidc/customization/sub',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository

                              property "PUT /repos/{owner}/{repo}/actions/permissions"

                              'PUT /repos/{owner}/{repo}/actions/permissions': Operation<
                              '/repos/{owner}/{repo}/actions/permissions',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository

                              property "PUT /repos/{owner}/{repo}/actions/permissions/access"

                              'PUT /repos/{owner}/{repo}/actions/permissions/access': Operation<
                              '/repos/{owner}/{repo}/actions/permissions/access',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository

                              property "PUT /repos/{owner}/{repo}/actions/permissions/selected-actions"

                              'PUT /repos/{owner}/{repo}/actions/permissions/selected-actions': Operation<
                              '/repos/{owner}/{repo}/actions/permissions/selected-actions',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository

                              property "PUT /repos/{owner}/{repo}/actions/permissions/workflow"

                              'PUT /repos/{owner}/{repo}/actions/permissions/workflow': Operation<
                              '/repos/{owner}/{repo}/actions/permissions/workflow',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository

                              property "PUT /repos/{owner}/{repo}/actions/runners/{runner_id}/labels"

                              'PUT /repos/{owner}/{repo}/actions/runners/{runner_id}/labels': Operation<
                              '/repos/{owner}/{repo}/actions/runners/{runner_id}/labels',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository

                              property "PUT /repos/{owner}/{repo}/actions/secrets/{secret_name}"

                              'PUT /repos/{owner}/{repo}/actions/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/actions/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret

                              property "PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable"

                              'PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable': Operation<
                              '/repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflows#disable-a-workflow

                              property "PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable"

                              'PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable': Operation<
                              '/repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/workflows#enable-a-workflow

                              property "PUT /repos/{owner}/{repo}/automated-security-fixes"

                              'PUT /repos/{owner}/{repo}/automated-security-fixes': Operation<
                              '/repos/{owner}/{repo}/automated-security-fixes',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates

                              property "PUT /repos/{owner}/{repo}/branches/{branch}/protection"

                              'PUT /repos/{owner}/{repo}/branches/{branch}/protection': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#update-branch-protection

                              property "PUT /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts"

                              'PUT /repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts

                              property "PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps"

                              'PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions

                              property "PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams"

                              'PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions

                              property "PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users"

                              'PUT /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users': Operation<
                              '/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions

                              property "PUT /repos/{owner}/{repo}/codespaces/secrets/{secret_name}"

                              'PUT /repos/{owner}/{repo}/codespaces/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/codespaces/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret

                              property "PUT /repos/{owner}/{repo}/collaborators/{username}"

                              'PUT /repos/{owner}/{repo}/collaborators/{username}': Operation<
                              '/repos/{owner}/{repo}/collaborators/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator

                              property "PUT /repos/{owner}/{repo}/contents/{path}"

                              'PUT /repos/{owner}/{repo}/contents/{path}': Operation<
                              '/repos/{owner}/{repo}/contents/{path}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/contents#create-or-update-file-contents

                              property "PUT /repos/{owner}/{repo}/dependabot/secrets/{secret_name}"

                              'PUT /repos/{owner}/{repo}/dependabot/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/dependabot/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret

                              property "PUT /repos/{owner}/{repo}/environments/{environment_name}"

                              'PUT /repos/{owner}/{repo}/environments/{environment_name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/environments#create-or-update-an-environment

                              property "PUT /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}"

                              'PUT /repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/deployment-branch-policies/{branch_policy_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy

                              property "PUT /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}"

                              'PUT /repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}': Operation<
                              '/repos/{owner}/{repo}/environments/{environment_name}/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret

                              property "PUT /repos/{owner}/{repo}/import"

                              'PUT /repos/{owner}/{repo}/import': Operation<
                              '/repos/{owner}/{repo}/import',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/migrations/source-imports#start-an-import

                              property "PUT /repos/{owner}/{repo}/interaction-limits"

                              'PUT /repos/{owner}/{repo}/interaction-limits': Operation<
                              '/repos/{owner}/{repo}/interaction-limits',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository

                              property "PUT /repos/{owner}/{repo}/issues/{issue_number}/labels"

                              'PUT /repos/{owner}/{repo}/issues/{issue_number}/labels': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/labels',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/labels#set-labels-for-an-issue

                              property "PUT /repos/{owner}/{repo}/issues/{issue_number}/lock"

                              'PUT /repos/{owner}/{repo}/issues/{issue_number}/lock': Operation<
                              '/repos/{owner}/{repo}/issues/{issue_number}/lock',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/issues/issues#lock-an-issue

                              property "PUT /repos/{owner}/{repo}/notifications"

                              'PUT /repos/{owner}/{repo}/notifications': Operation<
                              '/repos/{owner}/{repo}/notifications',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read

                              property "PUT /repos/{owner}/{repo}/pages"

                              'PUT /repos/{owner}/{repo}/pages': Operation<
                              '/repos/{owner}/{repo}/pages',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site

                              property "PUT /repos/{owner}/{repo}/private-vulnerability-reporting"

                              'PUT /repos/{owner}/{repo}/private-vulnerability-reporting': Operation<
                              '/repos/{owner}/{repo}/private-vulnerability-reporting',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository

                              property "PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge"

                              'PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/merge',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#merge-a-pull-request

                              property "PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}"

                              'PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request

                              property "PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals"

                              'PUT /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request

                              property "PUT /repos/{owner}/{repo}/pulls/{pull_number}/update-branch"

                              'PUT /repos/{owner}/{repo}/pulls/{pull_number}/update-branch': Operation<
                              '/repos/{owner}/{repo}/pulls/{pull_number}/update-branch',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch

                              property "PUT /repos/{owner}/{repo}/rulesets/{ruleset_id}"

                              'PUT /repos/{owner}/{repo}/rulesets/{ruleset_id}': Operation<
                              '/repos/{owner}/{repo}/rulesets/{ruleset_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/rules#update-a-repository-ruleset

                              property "PUT /repos/{owner}/{repo}/subscription"

                              'PUT /repos/{owner}/{repo}/subscription': Operation<
                              '/repos/{owner}/{repo}/subscription',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/watching#set-a-repository-subscription

                              property "PUT /repos/{owner}/{repo}/topics"

                              'PUT /repos/{owner}/{repo}/topics': Operation<
                              '/repos/{owner}/{repo}/topics',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#replace-all-repository-topics

                              property "PUT /repos/{owner}/{repo}/vulnerability-alerts"

                              'PUT /repos/{owner}/{repo}/vulnerability-alerts': Operation<
                              '/repos/{owner}/{repo}/vulnerability-alerts',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts

                              property "PUT /teams/{team_id}/members/{username}"

                              'PUT /teams/{team_id}/members/{username}': Operation<
                              '/teams/{team_id}/members/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#add-team-member-legacy

                              property "PUT /teams/{team_id}/memberships/{username}"

                              'PUT /teams/{team_id}/memberships/{username}': Operation<
                              '/teams/{team_id}/memberships/{username}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy

                              property "PUT /teams/{team_id}/projects/{project_id}"

                              'PUT /teams/{team_id}/projects/{project_id}': Operation<
                              '/teams/{team_id}/projects/{project_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy

                              property "PUT /teams/{team_id}/repos/{owner}/{repo}"

                              'PUT /teams/{team_id}/repos/{owner}/{repo}': Operation<
                              '/teams/{team_id}/repos/{owner}/{repo}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy

                              property "PUT /user/blocks/{username}"

                              'PUT /user/blocks/{username}': Operation<'/user/blocks/{username}', 'put'>;
                              • See Also

                                • https://docs.github.com/rest/users/blocking#block-a-user

                              property "PUT /user/codespaces/secrets/{secret_name}"

                              'PUT /user/codespaces/secrets/{secret_name}': Operation<
                              '/user/codespaces/secrets/{secret_name}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user

                              property "PUT /user/codespaces/secrets/{secret_name}/repositories"

                              'PUT /user/codespaces/secrets/{secret_name}/repositories': Operation<
                              '/user/codespaces/secrets/{secret_name}/repositories',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret

                              property "PUT /user/codespaces/secrets/{secret_name}/repositories/{repository_id}"

                              'PUT /user/codespaces/secrets/{secret_name}/repositories/{repository_id}': Operation<
                              '/user/codespaces/secrets/{secret_name}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret

                              property "PUT /user/following/{username}"

                              'PUT /user/following/{username}': Operation<'/user/following/{username}', 'put'>;
                              • See Also

                                • https://docs.github.com/rest/users/followers#follow-a-user

                              property "PUT /user/installations/{installation_id}/repositories/{repository_id}"

                              'PUT /user/installations/{installation_id}/repositories/{repository_id}': Operation<
                              '/user/installations/{installation_id}/repositories/{repository_id}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation

                              property "PUT /user/interaction-limits"

                              'PUT /user/interaction-limits': Operation<'/user/interaction-limits', 'put'>;
                              • See Also

                                • https://docs.github.com/rest/interactions/user#set-interaction-restrictions-for-your-public-repositories

                              property "PUT /user/starred/{owner}/{repo}"

                              'PUT /user/starred/{owner}/{repo}': Operation<
                              '/user/starred/{owner}/{repo}',
                              'put'
                              >;
                              • See Also

                                • https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user

                              interface OctokitResponse

                              interface OctokitResponse<T, S extends number = number> {}

                                property data

                                data: T;
                                • Response data as documented in the REST API reference documentation at https://docs.github.com/rest/reference

                                property headers

                                headers: ResponseHeaders;

                                  property status

                                  status: S;
                                  • http response code

                                  property url

                                  url: Url;
                                  • URL of response after all redirects

                                  interface RequestInterface

                                  interface RequestInterface<D extends object = object> {}

                                    property defaults

                                    defaults: <O extends RequestParameters = RequestParameters>(
                                    newDefaults: O
                                    ) => RequestInterface<D & O>;
                                    • Returns a new request with updated route and parameters

                                    property endpoint

                                    endpoint: EndpointInterface<D>;

                                    call signature

                                    <T = any, O extends RequestParameters = RequestParameters>(
                                    options: O & {
                                    method?: string;
                                    } & ('url' extends keyof D
                                    ? {
                                    url?: string;
                                    }
                                    : {
                                    url: string;
                                    })
                                    ): Promise<OctokitResponse<T>>;
                                    • Sends a request based on endpoint options

                                      Parameter endpoint

                                      Must set method and url. Plus URL, query or body parameters, as well as headers, mediaType.{format|previews}, request, or baseUrl.

                                    call signature

                                    <R extends Route>(
                                    route: EndpointKeys | R,
                                    options?: R extends EndpointKeys
                                    ? Endpoints[R]['parameters'] & RequestParameters
                                    : RequestParameters
                                    ): R extends EndpointKeys
                                    ? Promise<Endpoints[R]['response']>
                                    : Promise<OctokitResponse<any>>;
                                    • Sends a request based on endpoint options

                                      Parameter route

                                      Request method + URL. Example: 'GET /orgs/{org}'

                                      Parameter parameters

                                      URL, query or body parameters, as well as headers, mediaType.{format|previews}, request, or baseUrl.

                                    interface StrategyInterface

                                    interface StrategyInterface<
                                    StrategyOptions extends any[],
                                    AuthOptions extends any[],
                                    Authentication extends object
                                    > {}

                                      call signature

                                      (...args: StrategyOptions): AuthInterface<AuthOptions, Authentication>;

                                        Type Aliases

                                        type EndpointKeys

                                        type EndpointKeys = keyof Endpoints;

                                          type Fetch

                                          type Fetch = any;
                                          • Browser's fetch method (or compatible such as fetch-mock)

                                          type GetResponseDataTypeFromEndpointMethod

                                          type GetResponseDataTypeFromEndpointMethod<T extends AnyFunction> = Unwrap<
                                          ReturnType<T>
                                          >['data'];

                                            type GetResponseTypeFromEndpointMethod

                                            type GetResponseTypeFromEndpointMethod<T extends AnyFunction> = Unwrap<
                                            ReturnType<T>
                                            >;

                                              type RequestError

                                              type RequestError = {
                                              name: string;
                                              status: number;
                                              documentation_url: string;
                                              errors?: Array<{
                                              resource: string;
                                              code: string;
                                              field: string;
                                              message?: string;
                                              }>;
                                              };

                                                type RequestHeaders

                                                type RequestHeaders = {
                                                /**
                                                * Avoid setting `headers.accept`, use `mediaType.{format|previews}` option instead.
                                                */
                                                accept?: string;
                                                /**
                                                * Use `authorization` to send authenticated request, remember `token ` / `bearer ` prefixes. Example: `token 1234567890abcdef1234567890abcdef12345678`
                                                */
                                                authorization?: string;
                                                /**
                                                * `user-agent` is set do a default and can be overwritten as needed.
                                                */
                                                'user-agent'?: string;
                                                [header: string]: string | number | undefined;
                                                };

                                                  type RequestMethod

                                                  type RequestMethod = 'DELETE' | 'GET' | 'HEAD' | 'PATCH' | 'POST' | 'PUT';
                                                  • HTTP Verb supported by GitHub's REST API

                                                  type RequestOptions

                                                  type RequestOptions = {
                                                  method: RequestMethod;
                                                  url: Url;
                                                  headers: RequestHeaders;
                                                  body?: any;
                                                  request?: RequestRequestOptions;
                                                  };
                                                  • Generic request options as they are returned by the endpoint() method

                                                  type RequestParameters

                                                  type RequestParameters = {
                                                  /**
                                                  * Base URL to be used when a relative URL is passed, such as `/orgs/{org}`.
                                                  * If `baseUrl` is `https://enterprise.acme-inc.com/api/v3`, then the request
                                                  * will be sent to `https://enterprise.acme-inc.com/api/v3/orgs/{org}`.
                                                  */
                                                  baseUrl?: Url;
                                                  /**
                                                  * HTTP headers. Use lowercase keys.
                                                  */
                                                  headers?: RequestHeaders;
                                                  /**
                                                  * Media type options, see {@link https://developer.github.com/v3/media/|GitHub Developer Guide}
                                                  */
                                                  mediaType?: {
                                                  /**
                                                  * `json` by default. Can be `raw`, `text`, `html`, `full`, `diff`, `patch`, `sha`, `base64`. Depending on endpoint
                                                  */
                                                  format?: string;
                                                  /**
                                                  * Custom media type names of {@link https://docs.github.com/en/graphql/overview/schema-previews|GraphQL API Previews} without the `-preview` suffix.
                                                  * Example for single preview: `['squirrel-girl']`.
                                                  * Example for multiple previews: `['squirrel-girl', 'mister-fantastic']`.
                                                  */
                                                  previews?: string[];
                                                  };
                                                  /**
                                                  * The name of the operation to execute.
                                                  * Required only if multiple operations are present in the query document.
                                                  */
                                                  operationName?: string;
                                                  /**
                                                  * The GraphQL query string to be sent in the request.
                                                  * This is required and must contain a valid GraphQL document.
                                                  */
                                                  query?: string;
                                                  /**
                                                  * Pass custom meta information for the request. The `request` object will be returned as is.
                                                  */
                                                  request?: RequestRequestOptions;
                                                  /**
                                                  * Any additional parameter will be passed as follows
                                                  * 1. URL parameter if `':parameter'` or `{parameter}` is part of `url`
                                                  * 2. Query parameter if `method` is `'GET'` or `'HEAD'`
                                                  * 3. Request body if `parameter` is `'data'`
                                                  * 4. JSON in the request body in the form of `body[parameter]` unless `parameter` key is `'data'`
                                                  */
                                                  [parameter: string]: unknown;
                                                  };
                                                  • Parameters that can be passed into request(route, parameters) or endpoint(route, parameters) methods

                                                  type RequestRequestOptions

                                                  type RequestRequestOptions = {
                                                  /**
                                                  * Custom replacement for built-in fetch method. Useful for testing or request hooks.
                                                  */
                                                  fetch?: Fetch;
                                                  /**
                                                  * Use an `AbortController` instance to cancel a request. In node you can only cancel streamed requests.
                                                  */
                                                  signal?: AbortSignal;
                                                  /**
                                                  * If set to `false`, the response body will not be parsed and will be returned as a stream.
                                                  */
                                                  parseSuccessResponseBody?: boolean;
                                                  redirect?: 'follow' | 'error' | 'manual';
                                                  [option: string]: any;
                                                  };
                                                  • Octokit-specific request options which are ignored for the actual request, but can be used by Octokit or plugins to manipulate how the request is sent or how a response is handled

                                                  type ResponseHeaders

                                                  type ResponseHeaders = {
                                                  'cache-control'?: string;
                                                  'content-length'?: number;
                                                  'content-type'?: string;
                                                  date?: string;
                                                  etag?: string;
                                                  'last-modified'?: string;
                                                  link?: string;
                                                  location?: string;
                                                  server?: string;
                                                  status?: string;
                                                  vary?: string;
                                                  'x-accepted-github-permissions'?: string;
                                                  'x-github-mediatype'?: string;
                                                  'x-github-request-id'?: string;
                                                  'x-oauth-scopes'?: string;
                                                  'x-ratelimit-limit'?: string;
                                                  'x-ratelimit-remaining'?: string;
                                                  'x-ratelimit-reset'?: string;
                                                  [header: string]: string | number | undefined;
                                                  };

                                                    type Route

                                                    type Route = string;
                                                    • String consisting of an optional HTTP method and relative path or absolute URL. Examples: '/orgs/{org}', 'PUT /orgs/{org}', GET https://example.com/foo/bar

                                                    type Simplify

                                                    type Simplify<T> = {
                                                    [KeyType in keyof T]: T[KeyType];
                                                    } & {};
                                                    • (MIT OR CC0-1.0) https://github.com/sindresorhus/type-fest/blob/570e27f8fdaee37ef5d5e0fbf241e0212ff8fc1a/source/simplify.d.ts

                                                    type Url

                                                    type Url = string;
                                                    • Relative or absolute URL. Examples: '/orgs/{org}', https://example.com/foo/bar

                                                    Package Files (21)

                                                    Dependencies (1)

                                                    Dev Dependencies (10)

                                                    Peer Dependencies (0)

                                                    No peer dependencies.

                                                    Badge

                                                    To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

                                                    You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@octokit/types.

                                                    • Markdown
                                                      [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@octokit/types)
                                                    • HTML
                                                      <a href="https://www.jsdocs.io/package/@octokit/types"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>