@llamaduck/forgejo-ts 14.0.2-1 → 14.0.2-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.mts +6 -17
- package/dist/index.d.ts +6 -17
- package/dist/index.js +9 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -202,7 +202,7 @@ When Forgejo releases a new major version (e.g., v15), update this file to chang
|
|
|
202
202
|
|
|
203
203
|
## Contributing
|
|
204
204
|
|
|
205
|
-
Contributions are welcome! Please note that the `src
|
|
205
|
+
Contributions are welcome! Please note that the `src/` directory is auto-generated and should not be manually edited.
|
|
206
206
|
|
|
207
207
|
## License
|
|
208
208
|
|
package/dist/index.d.mts
CHANGED
|
@@ -200,10 +200,9 @@ interface Middleware<Req, Res, Err, Options> {
|
|
|
200
200
|
request: Interceptors<ReqInterceptor<Req, Options>>;
|
|
201
201
|
response: Interceptors<ResInterceptor<Res, Req, Options>>;
|
|
202
202
|
}
|
|
203
|
-
declare const createConfig: <T extends ClientOptions = ClientOptions>(override?: Config<Omit<ClientOptions, keyof T> & T>) => Config<Omit<ClientOptions, keyof T> & T>;
|
|
204
203
|
|
|
205
204
|
type ResponseStyle = 'data' | 'fields';
|
|
206
|
-
interface Config<T extends ClientOptions = ClientOptions> extends Omit<RequestInit, 'body' | 'headers' | 'method'>, Config$1 {
|
|
205
|
+
interface Config<T extends ClientOptions$1 = ClientOptions$1> extends Omit<RequestInit, 'body' | 'headers' | 'method'>, Config$1 {
|
|
207
206
|
/**
|
|
208
207
|
* Base URL for all requests made by this client.
|
|
209
208
|
*/
|
|
@@ -279,7 +278,7 @@ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boole
|
|
|
279
278
|
request: Request;
|
|
280
279
|
response: Response;
|
|
281
280
|
}>;
|
|
282
|
-
interface ClientOptions {
|
|
281
|
+
interface ClientOptions$1 {
|
|
283
282
|
baseUrl?: string;
|
|
284
283
|
responseStyle?: ResponseStyle;
|
|
285
284
|
throwOnError?: boolean;
|
|
@@ -306,8 +305,9 @@ interface TDataShape {
|
|
|
306
305
|
type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
307
306
|
type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
|
|
308
307
|
|
|
309
|
-
|
|
310
|
-
|
|
308
|
+
type ClientOptions = {
|
|
309
|
+
baseUrl: `https://${string}/api/v1` | `http://${string}/api/v1` | (string & {});
|
|
310
|
+
};
|
|
311
311
|
/**
|
|
312
312
|
* APIError is an api error with a message
|
|
313
313
|
*/
|
|
@@ -22007,15 +22007,4 @@ declare const userDeleteAccessToken: <ThrowOnError extends boolean = false>(opti
|
|
|
22007
22007
|
*/
|
|
22008
22008
|
declare const getVersion: <ThrowOnError extends boolean = false>(options?: Options<GetVersionData, ThrowOnError>) => RequestResult<GetVersionResponses, unknown, ThrowOnError, "fields">;
|
|
22009
22009
|
|
|
22010
|
-
/**
|
|
22011
|
-
* Forgejo TypeScript Client
|
|
22012
|
-
*
|
|
22013
|
-
* Auto-generated from Forgejo API specification
|
|
22014
|
-
* API Version: 14.0.2
|
|
22015
|
-
* Generated: 2026-02-07T13:58:30.687Z
|
|
22016
|
-
*/
|
|
22017
|
-
|
|
22018
|
-
declare const FORGEJO_API_VERSION = "14.0.2";
|
|
22019
|
-
declare const GENERATED_AT = "2026-02-07T13:58:30.687Z";
|
|
22020
|
-
|
|
22021
|
-
export { type AcceptRepoTransferData, type AcceptRepoTransferError, type AcceptRepoTransferErrors, type AcceptRepoTransferResponse, type AcceptRepoTransferResponses, type AccessToken, type ActionRun, type ActionRunData, type ActionRunError, type ActionRunErrors, type ActionRunJob, type ActionRunResponse, type ActionRunResponses, type ActionTask, type ActionTaskResponse, type ActionVariable, type Activity, type ActivityPub, type ActivitypubInstanceActorData, type ActivitypubInstanceActorInboxData, type ActivitypubInstanceActorInboxResponses, type ActivitypubInstanceActorOutboxData, type ActivitypubInstanceActorOutboxResponse, type ActivitypubInstanceActorOutboxResponses, type ActivitypubInstanceActorResponse, type ActivitypubInstanceActorResponses, type ActivitypubPersonActivityData, type ActivitypubPersonActivityNoteData, type ActivitypubPersonActivityNoteResponse, type ActivitypubPersonActivityNoteResponses, type ActivitypubPersonActivityResponse, type ActivitypubPersonActivityResponses, type ActivitypubPersonData, type ActivitypubPersonFeedData, type ActivitypubPersonFeedError, type ActivitypubPersonFeedErrors, type ActivitypubPersonFeedResponse, type ActivitypubPersonFeedResponses, type ActivitypubPersonInboxData, type ActivitypubPersonInboxResponses, type ActivitypubPersonResponse, type ActivitypubPersonResponses, type ActivitypubRepositoryData, type ActivitypubRepositoryInboxData, type ActivitypubRepositoryInboxResponses, type ActivitypubRepositoryOutboxData, type ActivitypubRepositoryOutboxResponse, type ActivitypubRepositoryOutboxResponses, type ActivitypubRepositoryResponse, type ActivitypubRepositoryResponses, type AddCollaboratorOption, type AddTimeOption, type AdminAddRuleToQuotaGroupData, type AdminAddRuleToQuotaGroupError, type AdminAddRuleToQuotaGroupErrors, type AdminAddRuleToQuotaGroupResponses, type AdminAddUserToQuotaGroupData, type AdminAddUserToQuotaGroupError, type AdminAddUserToQuotaGroupErrors, type AdminAddUserToQuotaGroupResponses, type AdminAdoptRepositoryData, type AdminAdoptRepositoryError, type AdminAdoptRepositoryErrors, type AdminAdoptRepositoryResponses, type AdminCreateHookData, type AdminCreateHookResponse, type AdminCreateHookResponses, type AdminCreateOrgData, type AdminCreateOrgError, type AdminCreateOrgErrors, type AdminCreateOrgResponse, type AdminCreateOrgResponses, type AdminCreatePublicKeyData, type AdminCreatePublicKeyError, type AdminCreatePublicKeyErrors, type AdminCreatePublicKeyResponse, type AdminCreatePublicKeyResponses, type AdminCreateQuotaGroupData, type AdminCreateQuotaGroupError, type AdminCreateQuotaGroupErrors, type AdminCreateQuotaGroupResponse, type AdminCreateQuotaGroupResponses, type AdminCreateQuotaRuleData, type AdminCreateQuotaRuleError, type AdminCreateQuotaRuleErrors, type AdminCreateQuotaRuleResponse, type AdminCreateQuotaRuleResponses, type AdminCreateRepoData, type AdminCreateRepoError, type AdminCreateRepoErrors, type AdminCreateRepoResponse, type AdminCreateRepoResponses, type AdminCreateUserData, type AdminCreateUserError, type AdminCreateUserErrors, type AdminCreateUserResponse, type AdminCreateUserResponses, type AdminCronListData, type AdminCronListError, type AdminCronListErrors, type AdminCronListResponse, type AdminCronListResponses, type AdminCronRunData, type AdminCronRunError, type AdminCronRunErrors, type AdminCronRunResponses, type AdminDeleteHookData, type AdminDeleteHookResponses, type AdminDeleteQuotaGroupData, type AdminDeleteQuotaGroupError, type AdminDeleteQuotaGroupErrors, type AdminDeleteQuotaGroupResponses, type AdminDeleteQuotaRuleData, type AdminDeleteQuotaRuleError, type AdminDeleteQuotaRuleErrors, type AdminDeleteQuotaRuleResponses, type AdminDeleteUnadoptedRepositoryData, type AdminDeleteUnadoptedRepositoryError, type AdminDeleteUnadoptedRepositoryErrors, type AdminDeleteUnadoptedRepositoryResponses, type AdminDeleteUserData, type AdminDeleteUserEmailsData, type AdminDeleteUserEmailsError, type AdminDeleteUserEmailsErrors, type AdminDeleteUserEmailsResponses, type AdminDeleteUserError, type AdminDeleteUserErrors, type AdminDeleteUserPublicKeyData, type AdminDeleteUserPublicKeyError, type AdminDeleteUserPublicKeyErrors, type AdminDeleteUserPublicKeyResponses, type AdminDeleteUserResponses, type AdminEditHookData, type AdminEditHookResponse, type AdminEditHookResponses, type AdminEditQuotaRuleData, type AdminEditQuotaRuleError, type AdminEditQuotaRuleErrors, type AdminEditQuotaRuleResponse, type AdminEditQuotaRuleResponses, type AdminEditUserData, type AdminEditUserError, type AdminEditUserErrors, type AdminEditUserResponse, type AdminEditUserResponses, type AdminGetAllEmailsData, type AdminGetAllEmailsError, type AdminGetAllEmailsErrors, type AdminGetAllEmailsResponse, type AdminGetAllEmailsResponses, type AdminGetAllOrgsData, type AdminGetAllOrgsError, type AdminGetAllOrgsErrors, type AdminGetAllOrgsResponse, type AdminGetAllOrgsResponses, type AdminGetHookData, type AdminGetHookResponse, type AdminGetHookResponses, type AdminGetQuotaGroupData, type AdminGetQuotaGroupError, type AdminGetQuotaGroupErrors, type AdminGetQuotaGroupResponse, type AdminGetQuotaGroupResponses, type AdminGetQuotaRuleData, type AdminGetQuotaRuleError, type AdminGetQuotaRuleErrors, type AdminGetQuotaRuleResponse, type AdminGetQuotaRuleResponses, type AdminGetRunnerRegistrationTokenData, type AdminGetRunnerRegistrationTokenResponse, type AdminGetRunnerRegistrationTokenResponses, type AdminGetUserQuotaData, type AdminGetUserQuotaError, type AdminGetUserQuotaErrors, type AdminGetUserQuotaResponse, type AdminGetUserQuotaResponses, type AdminListHooksData, type AdminListHooksResponse, type AdminListHooksResponses, type AdminListQuotaGroupsData, type AdminListQuotaGroupsError, type AdminListQuotaGroupsErrors, type AdminListQuotaGroupsResponse, type AdminListQuotaGroupsResponses, type AdminListQuotaRulesData, type AdminListQuotaRulesError, type AdminListQuotaRulesErrors, type AdminListQuotaRulesResponse, type AdminListQuotaRulesResponses, type AdminListUserEmailsData, type AdminListUserEmailsError, type AdminListUserEmailsErrors, type AdminListUserEmailsResponse, type AdminListUserEmailsResponses, type AdminListUsersInQuotaGroupData, type AdminListUsersInQuotaGroupError, type AdminListUsersInQuotaGroupErrors, type AdminListUsersInQuotaGroupResponse, type AdminListUsersInQuotaGroupResponses, type AdminRemoveRuleFromQuotaGroupData, type AdminRemoveRuleFromQuotaGroupError, type AdminRemoveRuleFromQuotaGroupErrors, type AdminRemoveRuleFromQuotaGroupResponses, type AdminRemoveUserFromQuotaGroupData, type AdminRemoveUserFromQuotaGroupError, type AdminRemoveUserFromQuotaGroupErrors, type AdminRemoveUserFromQuotaGroupResponses, type AdminRenameUserData, type AdminRenameUserError, type AdminRenameUserErrors, type AdminRenameUserResponses, type AdminSearchEmailsData, type AdminSearchEmailsError, type AdminSearchEmailsErrors, type AdminSearchEmailsResponse, type AdminSearchEmailsResponses, type AdminSearchRunJobsData, type AdminSearchRunJobsError, type AdminSearchRunJobsErrors, type AdminSearchRunJobsResponse, type AdminSearchRunJobsResponses, type AdminSearchUsersData, type AdminSearchUsersError, type AdminSearchUsersErrors, type AdminSearchUsersResponse, type AdminSearchUsersResponses, type AdminSetUserQuotaGroupsData, type AdminSetUserQuotaGroupsError, type AdminSetUserQuotaGroupsErrors, type AdminSetUserQuotaGroupsResponses, type AdminUnadoptedListData, type AdminUnadoptedListError, type AdminUnadoptedListErrors, type AdminUnadoptedListResponse, type AdminUnadoptedListResponses, type AnnotatedTag, type AnnotatedTagObject, type ApiError, type ApiForbiddenError, type ApiInternalServerError, type ApiInvalidTopicsError, type ApiNotFound, type ApiRepoArchivedError, type ApiUnauthorizedError, type ApiValidationError, type Attachment, type BlockedUser, type Branch, type BranchProtection, type ChangeFileOperation, type ChangeFilesOptions, type ChangedFile, type Client, type ClientOptions, type CombinedStatus, type Comment, type Commit, type CommitAffectedFiles, type CommitDateOptions, type CommitMeta, type CommitStats, type CommitStatus, type CommitStatusState, type CommitUser, type Compare, type Config, type ContentsResponse, type CreateAccessTokenOption, type CreateBranchProtectionOption, type CreateBranchRepoOption, type CreateCurrentUserRepoData, type CreateCurrentUserRepoError, type CreateCurrentUserRepoErrors, type CreateCurrentUserRepoResponse, type CreateCurrentUserRepoResponses, type CreateEmailOption, type CreateFileOptions, type CreateForkData, type CreateForkError, type CreateForkErrors, type CreateForkOption, type CreateForkResponse, type CreateForkResponses, type CreateGpgKeyOption, type CreateHookOption, type CreateHookOptionConfig, type CreateIssueCommentOption, type CreateIssueOption, type CreateKeyOption, type CreateLabelOption, type CreateMilestoneOption, type CreateOAuth2ApplicationOptions, type CreateOrUpdateSecretOption, type CreateOrgOption, type CreateOrgRepoData, type CreateOrgRepoDeprecatedData, type CreateOrgRepoDeprecatedError, type CreateOrgRepoDeprecatedErrors, type CreateOrgRepoDeprecatedResponse, type CreateOrgRepoDeprecatedResponses, type CreateOrgRepoError, type CreateOrgRepoErrors, type CreateOrgRepoResponse, type CreateOrgRepoResponses, type CreateOrgVariableData, type CreateOrgVariableError, type CreateOrgVariableErrors, type CreateOrgVariableResponses, type CreatePullRequestOption, type CreatePullReviewComment, type CreatePullReviewCommentOptions, type CreatePullReviewOptions, type CreatePushMirrorOption, type CreateQuotaGroupOptions, type CreateQuotaRuleOptions, type CreateReleaseOption, type CreateRepoOption, type CreateRepoVariableData, type CreateRepoVariableError, type CreateRepoVariableErrors, type CreateRepoVariableResponses, type CreateStatusOption, type CreateTagOption, type CreateTagProtectionOption, type CreateTeamOption, type CreateUserOption, type CreateUserVariableData, type CreateUserVariableError, type CreateUserVariableErrors, type CreateUserVariableResponses, type CreateVariableOption, type CreateWikiPageOptions, type Cron, type DeleteEmailOption, type DeleteFileOptions, type DeleteLabelsOption, type DeleteOrgSecretData, type DeleteOrgSecretError, type DeleteOrgSecretErrors, type DeleteOrgSecretResponses, type DeleteOrgVariableData, type DeleteOrgVariableError, type DeleteOrgVariableErrors, type DeleteOrgVariableResponses, type DeletePackageData, type DeletePackageError, type DeletePackageErrors, type DeletePackageResponses, type DeleteRepoSecretData, type DeleteRepoSecretError, type DeleteRepoSecretErrors, type DeleteRepoSecretResponses, type DeleteRepoVariableData, type DeleteRepoVariableError, type DeleteRepoVariableErrors, type DeleteRepoVariableResponses, type DeleteUserSecretData, type DeleteUserSecretError, type DeleteUserSecretErrors, type DeleteUserSecretResponses, type DeleteUserVariableData, type DeleteUserVariableError, type DeleteUserVariableErrors, type DeleteUserVariableResponses, type DeployKey, type DismissPullReviewOptions, type DispatchWorkflowData, type DispatchWorkflowError, type DispatchWorkflowErrors, type DispatchWorkflowOption, type DispatchWorkflowResponse, type DispatchWorkflowResponses, type DispatchWorkflowRun, type Duration, type EditAttachmentOptions, type EditBranchProtectionOption, type EditDeadlineOption, type EditGitHookOption, type EditHookOption, type EditIssueCommentOption, type EditIssueOption, type EditLabelOption, type EditMilestoneOption, type EditOrgOption, type EditPullRequestOption, type EditQuotaRuleOptions, type EditReactionOption, type EditReleaseOption, type EditRepoOption, type EditTagProtectionOption, type EditTeamOption, type EditUserOption, type Email, type ExternalTracker, type ExternalWiki, FORGEJO_API_VERSION, type FileCommitResponse, type FileDeleteResponse, type FileLinksResponse, type FileResponse, type FilesResponse, type ForgeLike, type ForgeOutbox, GENERATED_AT, type GeneralApiSettings, type GeneralAttachmentSettings, type GeneralRepoSettings, type GeneralUiSettings, type GenerateRepoData, type GenerateRepoError, type GenerateRepoErrors, type GenerateRepoOption, type GenerateRepoResponse, type GenerateRepoResponses, type GetAnnotatedTagData, type GetAnnotatedTagError, type GetAnnotatedTagErrors, type GetAnnotatedTagResponse, type GetAnnotatedTagResponses, type GetBlobData, type GetBlobError, type GetBlobErrors, type GetBlobResponse, type GetBlobResponses, type GetBlobsData, type GetBlobsError, type GetBlobsErrors, type GetBlobsResponse, type GetBlobsResponses, type GetGeneralApiSettingsData, type GetGeneralApiSettingsResponse, type GetGeneralApiSettingsResponses, type GetGeneralAttachmentSettingsData, type GetGeneralAttachmentSettingsResponse, type GetGeneralAttachmentSettingsResponses, type GetGeneralRepositorySettingsData, type GetGeneralRepositorySettingsResponse, type GetGeneralRepositorySettingsResponses, type GetGeneralUiSettingsData, type GetGeneralUiSettingsResponse, type GetGeneralUiSettingsResponses, type GetGitignoreTemplateInfoData, type GetGitignoreTemplateInfoError, type GetGitignoreTemplateInfoErrors, type GetGitignoreTemplateInfoResponse, type GetGitignoreTemplateInfoResponses, type GetLabelTemplateInfoData, type GetLabelTemplateInfoError, type GetLabelTemplateInfoErrors, type GetLabelTemplateInfoResponse, type GetLabelTemplateInfoResponses, type GetLicenseTemplateInfoData, type GetLicenseTemplateInfoError, type GetLicenseTemplateInfoErrors, type GetLicenseTemplateInfoResponse, type GetLicenseTemplateInfoResponses, type GetNodeInfoData, type GetNodeInfoResponse, type GetNodeInfoResponses, type GetOrgVariableData, type GetOrgVariableError, type GetOrgVariableErrors, type GetOrgVariableResponse, type GetOrgVariableResponses, type GetOrgVariablesListData, type GetOrgVariablesListError, type GetOrgVariablesListErrors, type GetOrgVariablesListResponse, type GetOrgVariablesListResponses, type GetPackageData, type GetPackageError, type GetPackageErrors, type GetPackageResponse, type GetPackageResponses, type GetRepoVariableData, type GetRepoVariableError, type GetRepoVariableErrors, type GetRepoVariableResponse, type GetRepoVariableResponses, type GetRepoVariablesListData, type GetRepoVariablesListError, type GetRepoVariablesListErrors, type GetRepoVariablesListResponse, type GetRepoVariablesListResponses, type GetSigningKeyData, type GetSigningKeyResponse, type GetSigningKeyResponses, type GetSshSigningKeyData, type GetSshSigningKeyError, type GetSshSigningKeyErrors, type GetSshSigningKeyResponse, type GetSshSigningKeyResponses, type GetTreeData, type GetTreeError, type GetTreeErrors, type GetTreeResponse, type GetTreeResponses, type GetUserSettingsData, type GetUserSettingsError, type GetUserSettingsErrors, type GetUserSettingsResponse, type GetUserSettingsResponses, type GetUserVariableData, type GetUserVariableError, type GetUserVariableErrors, type GetUserVariableResponse, type GetUserVariableResponses, type GetUserVariablesListData, type GetUserVariablesListError, type GetUserVariablesListErrors, type GetUserVariablesListResponse, type GetUserVariablesListResponses, type GetVerificationTokenData, type GetVerificationTokenError, type GetVerificationTokenErrors, type GetVerificationTokenResponse, type GetVerificationTokenResponses, type GetVersionData, type GetVersionResponse, type GetVersionResponses, type GitBlob, type GitEntry, type GitHook, type GitObject, type GitTreeResponse, type GitignoreTemplateInfo, type GpgKey, type GpgKeyEmail, type Hook, type Identity, type InternalTracker, type Issue, type IssueAddLabelData, type IssueAddLabelError, type IssueAddLabelErrors, type IssueAddLabelResponse, type IssueAddLabelResponses, type IssueAddSubscriptionData, type IssueAddSubscriptionError, type IssueAddSubscriptionErrors, type IssueAddSubscriptionResponses, type IssueAddTimeData, type IssueAddTimeError, type IssueAddTimeErrors, type IssueAddTimeResponse, type IssueAddTimeResponses, type IssueCheckSubscriptionData, type IssueCheckSubscriptionError, type IssueCheckSubscriptionErrors, type IssueCheckSubscriptionResponse, type IssueCheckSubscriptionResponses, type IssueClearLabelsData, type IssueClearLabelsError, type IssueClearLabelsErrors, type IssueClearLabelsResponses, type IssueConfig, type IssueConfigContactLink, type IssueConfigValidation, type IssueCreateCommentData, type IssueCreateCommentError, type IssueCreateCommentErrors, type IssueCreateCommentResponse, type IssueCreateCommentResponses, type IssueCreateIssueAttachmentData, type IssueCreateIssueAttachmentError, type IssueCreateIssueAttachmentErrors, type IssueCreateIssueAttachmentResponse, type IssueCreateIssueAttachmentResponses, type IssueCreateIssueBlockingData, type IssueCreateIssueBlockingErrors, type IssueCreateIssueBlockingResponse, type IssueCreateIssueBlockingResponses, type IssueCreateIssueCommentAttachmentData, type IssueCreateIssueCommentAttachmentError, type IssueCreateIssueCommentAttachmentErrors, type IssueCreateIssueCommentAttachmentResponse, type IssueCreateIssueCommentAttachmentResponses, type IssueCreateIssueData, type IssueCreateIssueDependenciesData, type IssueCreateIssueDependenciesError, type IssueCreateIssueDependenciesErrors, type IssueCreateIssueDependenciesResponse, type IssueCreateIssueDependenciesResponses, type IssueCreateIssueError, type IssueCreateIssueErrors, type IssueCreateIssueResponse, type IssueCreateIssueResponses, type IssueCreateLabelData, type IssueCreateLabelError, type IssueCreateLabelErrors, type IssueCreateLabelResponse, type IssueCreateLabelResponses, type IssueCreateMilestoneData, type IssueCreateMilestoneError, type IssueCreateMilestoneErrors, type IssueCreateMilestoneResponse, type IssueCreateMilestoneResponses, type IssueDeadline, type IssueDeleteCommentData, type IssueDeleteCommentDeprecatedData, type IssueDeleteCommentDeprecatedError, type IssueDeleteCommentDeprecatedErrors, type IssueDeleteCommentDeprecatedResponses, type IssueDeleteCommentError, type IssueDeleteCommentErrors, type IssueDeleteCommentReactionData, type IssueDeleteCommentReactionError, type IssueDeleteCommentReactionErrors, type IssueDeleteCommentReactionResponses, type IssueDeleteCommentResponses, type IssueDeleteData, type IssueDeleteError, type IssueDeleteErrors, type IssueDeleteIssueAttachmentData, type IssueDeleteIssueAttachmentError, type IssueDeleteIssueAttachmentErrors, type IssueDeleteIssueAttachmentResponses, type IssueDeleteIssueCommentAttachmentData, type IssueDeleteIssueCommentAttachmentError, type IssueDeleteIssueCommentAttachmentErrors, type IssueDeleteIssueCommentAttachmentResponses, type IssueDeleteIssueReactionData, type IssueDeleteIssueReactionError, type IssueDeleteIssueReactionErrors, type IssueDeleteIssueReactionResponses, type IssueDeleteLabelData, type IssueDeleteLabelError, type IssueDeleteLabelErrors, type IssueDeleteLabelResponses, type IssueDeleteMilestoneData, type IssueDeleteMilestoneError, type IssueDeleteMilestoneErrors, type IssueDeleteMilestoneResponses, type IssueDeleteResponses, type IssueDeleteStopWatchData, type IssueDeleteStopWatchError, type IssueDeleteStopWatchErrors, type IssueDeleteStopWatchResponses, type IssueDeleteSubscriptionData, type IssueDeleteSubscriptionError, type IssueDeleteSubscriptionErrors, type IssueDeleteSubscriptionResponses, type IssueDeleteTimeData, type IssueDeleteTimeError, type IssueDeleteTimeErrors, type IssueDeleteTimeResponses, type IssueEditCommentData, type IssueEditCommentDeprecatedData, type IssueEditCommentDeprecatedError, type IssueEditCommentDeprecatedErrors, type IssueEditCommentDeprecatedResponse, type IssueEditCommentDeprecatedResponses, type IssueEditCommentError, type IssueEditCommentErrors, type IssueEditCommentResponse, type IssueEditCommentResponses, type IssueEditIssueAttachmentData, type IssueEditIssueAttachmentError, type IssueEditIssueAttachmentErrors, type IssueEditIssueAttachmentResponse, type IssueEditIssueAttachmentResponses, type IssueEditIssueCommentAttachmentData, type IssueEditIssueCommentAttachmentError, type IssueEditIssueCommentAttachmentErrors, type IssueEditIssueCommentAttachmentResponse, type IssueEditIssueCommentAttachmentResponses, type IssueEditIssueData, type IssueEditIssueDeadlineData, type IssueEditIssueDeadlineError, type IssueEditIssueDeadlineErrors, type IssueEditIssueDeadlineResponse, type IssueEditIssueDeadlineResponses, type IssueEditIssueError, type IssueEditIssueErrors, type IssueEditIssueResponse, type IssueEditIssueResponses, type IssueEditLabelData, type IssueEditLabelError, type IssueEditLabelErrors, type IssueEditLabelResponse, type IssueEditLabelResponses, type IssueEditMilestoneData, type IssueEditMilestoneError, type IssueEditMilestoneErrors, type IssueEditMilestoneResponse, type IssueEditMilestoneResponses, type IssueFormField, type IssueFormFieldType, type IssueFormFieldVisible, type IssueGetCommentData, type IssueGetCommentError, type IssueGetCommentErrors, type IssueGetCommentReactionsData, type IssueGetCommentReactionsError, type IssueGetCommentReactionsErrors, type IssueGetCommentReactionsResponse, type IssueGetCommentReactionsResponses, type IssueGetCommentResponse, type IssueGetCommentResponses, type IssueGetCommentsAndTimelineData, type IssueGetCommentsAndTimelineError, type IssueGetCommentsAndTimelineErrors, type IssueGetCommentsAndTimelineResponse, type IssueGetCommentsAndTimelineResponses, type IssueGetCommentsData, type IssueGetCommentsError, type IssueGetCommentsErrors, type IssueGetCommentsResponse, type IssueGetCommentsResponses, type IssueGetIssueAttachmentData, type IssueGetIssueAttachmentError, type IssueGetIssueAttachmentErrors, type IssueGetIssueAttachmentResponse, type IssueGetIssueAttachmentResponses, type IssueGetIssueCommentAttachmentData, type IssueGetIssueCommentAttachmentError, type IssueGetIssueCommentAttachmentErrors, type IssueGetIssueCommentAttachmentResponse, type IssueGetIssueCommentAttachmentResponses, type IssueGetIssueData, type IssueGetIssueError, type IssueGetIssueErrors, type IssueGetIssueReactionsData, type IssueGetIssueReactionsError, type IssueGetIssueReactionsErrors, type IssueGetIssueReactionsResponse, type IssueGetIssueReactionsResponses, type IssueGetIssueResponse, type IssueGetIssueResponses, type IssueGetLabelData, type IssueGetLabelError, type IssueGetLabelErrors, type IssueGetLabelResponse, type IssueGetLabelResponses, type IssueGetLabelsData, type IssueGetLabelsError, type IssueGetLabelsErrors, type IssueGetLabelsResponse, type IssueGetLabelsResponses, type IssueGetMilestoneData, type IssueGetMilestoneError, type IssueGetMilestoneErrors, type IssueGetMilestoneResponse, type IssueGetMilestoneResponses, type IssueGetMilestonesListData, type IssueGetMilestonesListError, type IssueGetMilestonesListErrors, type IssueGetMilestonesListResponse, type IssueGetMilestonesListResponses, type IssueGetRepoCommentsData, type IssueGetRepoCommentsError, type IssueGetRepoCommentsErrors, type IssueGetRepoCommentsResponse, type IssueGetRepoCommentsResponses, type IssueLabelsOption, type IssueListBlocksData, type IssueListBlocksError, type IssueListBlocksErrors, type IssueListBlocksResponse, type IssueListBlocksResponses, type IssueListIssueAttachmentsData, type IssueListIssueAttachmentsError, type IssueListIssueAttachmentsErrors, type IssueListIssueAttachmentsResponse, type IssueListIssueAttachmentsResponses, type IssueListIssueCommentAttachmentsData, type IssueListIssueCommentAttachmentsError, type IssueListIssueCommentAttachmentsErrors, type IssueListIssueCommentAttachmentsResponse, type IssueListIssueCommentAttachmentsResponses, type IssueListIssueDependenciesData, type IssueListIssueDependenciesError, type IssueListIssueDependenciesErrors, type IssueListIssueDependenciesResponse, type IssueListIssueDependenciesResponses, type IssueListIssuesData, type IssueListIssuesError, type IssueListIssuesErrors, type IssueListIssuesResponse, type IssueListIssuesResponses, type IssueListLabelsData, type IssueListLabelsError, type IssueListLabelsErrors, type IssueListLabelsResponse, type IssueListLabelsResponses, type IssueMeta, type IssuePostCommentReactionData, type IssuePostCommentReactionError, type IssuePostCommentReactionErrors, type IssuePostCommentReactionResponse, type IssuePostCommentReactionResponses, type IssuePostIssueReactionData, type IssuePostIssueReactionError, type IssuePostIssueReactionErrors, type IssuePostIssueReactionResponse, type IssuePostIssueReactionResponses, type IssueRemoveIssueBlockingData, type IssueRemoveIssueBlockingError, type IssueRemoveIssueBlockingErrors, type IssueRemoveIssueBlockingResponse, type IssueRemoveIssueBlockingResponses, type IssueRemoveIssueDependenciesData, type IssueRemoveIssueDependenciesError, type IssueRemoveIssueDependenciesErrors, type IssueRemoveIssueDependenciesResponse, type IssueRemoveIssueDependenciesResponses, type IssueRemoveLabelData, type IssueRemoveLabelError, type IssueRemoveLabelErrors, type IssueRemoveLabelResponses, type IssueReplaceLabelsData, type IssueReplaceLabelsError, type IssueReplaceLabelsErrors, type IssueReplaceLabelsResponse, type IssueReplaceLabelsResponses, type IssueResetTimeData, type IssueResetTimeError, type IssueResetTimeErrors, type IssueResetTimeResponses, type IssueSearchIssuesData, type IssueSearchIssuesError, type IssueSearchIssuesErrors, type IssueSearchIssuesResponse, type IssueSearchIssuesResponses, type IssueStartStopWatchData, type IssueStartStopWatchError, type IssueStartStopWatchErrors, type IssueStartStopWatchResponses, type IssueStopStopWatchData, type IssueStopStopWatchError, type IssueStopStopWatchErrors, type IssueStopStopWatchResponses, type IssueSubscriptionsData, type IssueSubscriptionsError, type IssueSubscriptionsErrors, type IssueSubscriptionsResponse, type IssueSubscriptionsResponses, type IssueTemplate, type IssueTemplateLabels, type IssueTrackedTimesData, type IssueTrackedTimesError, type IssueTrackedTimesErrors, type IssueTrackedTimesResponse, type IssueTrackedTimesResponses, type Label, type LabelTemplate, type LicenseTemplateInfo, type LicensesTemplateListEntry, type LinkPackageData, type LinkPackageError, type LinkPackageErrors, type LinkPackageResponses, type ListActionRunResponse, type ListActionRunsData, type ListActionRunsError, type ListActionRunsErrors, type ListActionRunsResponse, type ListActionRunsResponses, type ListActionTasksData, type ListActionTasksError, type ListActionTasksErrors, type ListActionTasksResponse, type ListActionTasksResponses, type ListForksData, type ListForksError, type ListForksErrors, type ListForksResponse, type ListForksResponses, type ListGitignoresTemplatesData, type ListGitignoresTemplatesResponse, type ListGitignoresTemplatesResponses, type ListLabelTemplatesData, type ListLabelTemplatesResponse, type ListLabelTemplatesResponses, type ListLicenseTemplatesData, type ListLicenseTemplatesResponse, type ListLicenseTemplatesResponses, type ListPackageFilesData, type ListPackageFilesError, type ListPackageFilesErrors, type ListPackageFilesResponse, type ListPackageFilesResponses, type ListPackagesData, type ListPackagesError, type ListPackagesErrors, type ListPackagesResponse, type ListPackagesResponses, type MarkdownOption, type MarkupOption, type MergePullRequestOption, type MigrateRepoOptions, type Milestone, type MoveIssuePinData, type MoveIssuePinError, type MoveIssuePinErrors, type MoveIssuePinResponses, type NewIssuePinsAllowed, type NodeInfo, type NodeInfoServices, type NodeInfoSoftware, type NodeInfoUsage, type NodeInfoUsageUsers, type Note, type NoteOptions, type NotificationCount, type NotificationSubject, type NotificationThread, type NotifyGetListData, type NotifyGetListResponse, type NotifyGetListResponses, type NotifyGetRepoListData, type NotifyGetRepoListResponse, type NotifyGetRepoListResponses, type NotifyGetThreadData, type NotifyGetThreadError, type NotifyGetThreadErrors, type NotifyGetThreadResponse, type NotifyGetThreadResponses, type NotifyNewAvailableData, type NotifyNewAvailableResponse, type NotifyNewAvailableResponses, type NotifyReadListData, type NotifyReadListResponse, type NotifyReadListResponses, type NotifyReadRepoListData, type NotifyReadRepoListResponse, type NotifyReadRepoListResponses, type NotifyReadThreadData, type NotifyReadThreadError, type NotifyReadThreadErrors, type NotifyReadThreadResponse, type NotifyReadThreadResponses, type NotifySubjectType, type OAuth2Application, type Options, type OrgAddTeamMemberData, type OrgAddTeamMemberError, type OrgAddTeamMemberErrors, type OrgAddTeamMemberResponses, type OrgAddTeamRepositoryData, type OrgAddTeamRepositoryError, type OrgAddTeamRepositoryErrors, type OrgAddTeamRepositoryResponses, type OrgBlockUserData, type OrgBlockUserError, type OrgBlockUserErrors, type OrgBlockUserResponses, type OrgCheckQuotaData, type OrgCheckQuotaError, type OrgCheckQuotaErrors, type OrgCheckQuotaResponse, type OrgCheckQuotaResponses, type OrgConcealMemberData, type OrgConcealMemberError, type OrgConcealMemberErrors, type OrgConcealMemberResponses, type OrgCreateData, type OrgCreateError, type OrgCreateErrors, type OrgCreateHookData, type OrgCreateHookError, type OrgCreateHookErrors, type OrgCreateHookResponse, type OrgCreateHookResponses, type OrgCreateLabelData, type OrgCreateLabelError, type OrgCreateLabelErrors, type OrgCreateLabelResponse, type OrgCreateLabelResponses, type OrgCreateResponse, type OrgCreateResponses, type OrgCreateTeamData, type OrgCreateTeamError, type OrgCreateTeamErrors, type OrgCreateTeamResponse, type OrgCreateTeamResponses, type OrgDeleteAvatarData, type OrgDeleteAvatarError, type OrgDeleteAvatarErrors, type OrgDeleteAvatarResponses, type OrgDeleteData, type OrgDeleteError, type OrgDeleteErrors, type OrgDeleteHookData, type OrgDeleteHookError, type OrgDeleteHookErrors, type OrgDeleteHookResponses, type OrgDeleteLabelData, type OrgDeleteLabelError, type OrgDeleteLabelErrors, type OrgDeleteLabelResponses, type OrgDeleteMemberData, type OrgDeleteMemberError, type OrgDeleteMemberErrors, type OrgDeleteMemberResponses, type OrgDeleteResponses, type OrgDeleteTeamData, type OrgDeleteTeamError, type OrgDeleteTeamErrors, type OrgDeleteTeamResponses, type OrgEditData, type OrgEditError, type OrgEditErrors, type OrgEditHookData, type OrgEditHookError, type OrgEditHookErrors, type OrgEditHookResponse, type OrgEditHookResponses, type OrgEditLabelData, type OrgEditLabelError, type OrgEditLabelErrors, type OrgEditLabelResponse, type OrgEditLabelResponses, type OrgEditResponse, type OrgEditResponses, type OrgEditTeamData, type OrgEditTeamError, type OrgEditTeamErrors, type OrgEditTeamResponse, type OrgEditTeamResponses, type OrgGetAllData, type OrgGetAllResponse, type OrgGetAllResponses, type OrgGetData, type OrgGetError, type OrgGetErrors, type OrgGetHookData, type OrgGetHookError, type OrgGetHookErrors, type OrgGetHookResponse, type OrgGetHookResponses, type OrgGetLabelData, type OrgGetLabelError, type OrgGetLabelErrors, type OrgGetLabelResponse, type OrgGetLabelResponses, type OrgGetQuotaData, type OrgGetQuotaError, type OrgGetQuotaErrors, type OrgGetQuotaResponse, type OrgGetQuotaResponses, type OrgGetResponse, type OrgGetResponses, type OrgGetRunnerRegistrationTokenData, type OrgGetRunnerRegistrationTokenResponse, type OrgGetRunnerRegistrationTokenResponses, type OrgGetTeamData, type OrgGetTeamError, type OrgGetTeamErrors, type OrgGetTeamResponse, type OrgGetTeamResponses, type OrgGetUserPermissionsData, type OrgGetUserPermissionsError, type OrgGetUserPermissionsErrors, type OrgGetUserPermissionsResponse, type OrgGetUserPermissionsResponses, type OrgIsMemberData, type OrgIsMemberErrors, type OrgIsMemberResponses, type OrgIsPublicMemberData, type OrgIsPublicMemberErrors, type OrgIsPublicMemberResponses, type OrgListActionsSecretsData, type OrgListActionsSecretsError, type OrgListActionsSecretsErrors, type OrgListActionsSecretsResponse, type OrgListActionsSecretsResponses, type OrgListActivityFeedsData, type OrgListActivityFeedsError, type OrgListActivityFeedsErrors, type OrgListActivityFeedsResponse, type OrgListActivityFeedsResponses, type OrgListBlockedUsersData, type OrgListBlockedUsersResponse, type OrgListBlockedUsersResponses, type OrgListCurrentUserOrgsData, type OrgListCurrentUserOrgsError, type OrgListCurrentUserOrgsErrors, type OrgListCurrentUserOrgsResponse, type OrgListCurrentUserOrgsResponses, type OrgListHooksData, type OrgListHooksError, type OrgListHooksErrors, type OrgListHooksResponse, type OrgListHooksResponses, type OrgListLabelsData, type OrgListLabelsError, type OrgListLabelsErrors, type OrgListLabelsResponse, type OrgListLabelsResponses, type OrgListMembersData, type OrgListMembersError, type OrgListMembersErrors, type OrgListMembersResponse, type OrgListMembersResponses, type OrgListPublicMembersData, type OrgListPublicMembersError, type OrgListPublicMembersErrors, type OrgListPublicMembersResponse, type OrgListPublicMembersResponses, type OrgListQuotaArtifactsData, type OrgListQuotaArtifactsError, type OrgListQuotaArtifactsErrors, type OrgListQuotaArtifactsResponse, type OrgListQuotaArtifactsResponses, type OrgListQuotaAttachmentsData, type OrgListQuotaAttachmentsError, type OrgListQuotaAttachmentsErrors, type OrgListQuotaAttachmentsResponse, type OrgListQuotaAttachmentsResponses, type OrgListQuotaPackagesData, type OrgListQuotaPackagesError, type OrgListQuotaPackagesErrors, type OrgListQuotaPackagesResponse, type OrgListQuotaPackagesResponses, type OrgListReposData, type OrgListReposError, type OrgListReposErrors, type OrgListReposResponse, type OrgListReposResponses, type OrgListTeamActivityFeedsData, type OrgListTeamActivityFeedsError, type OrgListTeamActivityFeedsErrors, type OrgListTeamActivityFeedsResponse, type OrgListTeamActivityFeedsResponses, type OrgListTeamMemberData, type OrgListTeamMemberError, type OrgListTeamMemberErrors, type OrgListTeamMemberResponse, type OrgListTeamMemberResponses, type OrgListTeamMembersData, type OrgListTeamMembersError, type OrgListTeamMembersErrors, type OrgListTeamMembersResponse, type OrgListTeamMembersResponses, type OrgListTeamRepoData, type OrgListTeamRepoError, type OrgListTeamRepoErrors, type OrgListTeamRepoResponse, type OrgListTeamRepoResponses, type OrgListTeamReposData, type OrgListTeamReposError, type OrgListTeamReposErrors, type OrgListTeamReposResponse, type OrgListTeamReposResponses, type OrgListTeamsData, type OrgListTeamsError, type OrgListTeamsErrors, type OrgListTeamsResponse, type OrgListTeamsResponses, type OrgListUserOrgsData, type OrgListUserOrgsError, type OrgListUserOrgsErrors, type OrgListUserOrgsResponse, type OrgListUserOrgsResponses, type OrgPublicizeMemberData, type OrgPublicizeMemberError, type OrgPublicizeMemberErrors, type OrgPublicizeMemberResponses, type OrgRemoveTeamMemberData, type OrgRemoveTeamMemberError, type OrgRemoveTeamMemberErrors, type OrgRemoveTeamMemberResponses, type OrgRemoveTeamRepositoryData, type OrgRemoveTeamRepositoryError, type OrgRemoveTeamRepositoryErrors, type OrgRemoveTeamRepositoryResponses, type OrgSearchRunJobsData, type OrgSearchRunJobsError, type OrgSearchRunJobsErrors, type OrgSearchRunJobsResponse, type OrgSearchRunJobsResponses, type OrgUnblockUserData, type OrgUnblockUserError, type OrgUnblockUserErrors, type OrgUnblockUserResponses, type OrgUpdateAvatarData, type OrgUpdateAvatarError, type OrgUpdateAvatarErrors, type OrgUpdateAvatarResponses, type Organization, type OrganizationPermissions, type Package, type PackageFile, type PayloadCommit, type PayloadCommitVerification, type PayloadUser, type Permission, type PinIssueData, type PinIssueError, type PinIssueErrors, type PinIssueResponses, type PrBranchInfo, type PublicKey, type PullRequest, type PullRequestMeta, type PullReview, type PullReviewComment, type PullReviewRequestOptions, type PushMirror, type QuotaGroup, type QuotaGroupList, type QuotaInfo, type QuotaRuleInfo, type QuotaUsed, type QuotaUsedArtifact, type QuotaUsedArtifactList, type QuotaUsedAttachment, type QuotaUsedAttachmentList, type QuotaUsedPackage, type QuotaUsedPackageList, type QuotaUsedSize, type QuotaUsedSizeAssets, type QuotaUsedSizeAssetsAttachments, type QuotaUsedSizeAssetsPackages, type QuotaUsedSizeGit, type QuotaUsedSizeRepos, type Reaction, type Reference, type RegistrationToken, type RejectRepoTransferData, type RejectRepoTransferError, type RejectRepoTransferErrors, type RejectRepoTransferResponse, type RejectRepoTransferResponses, type Release, type RenameOrgData, type RenameOrgError, type RenameOrgErrors, type RenameOrgOption, type RenameOrgResponses, type RenameUserOption, type RenderMarkdownData, type RenderMarkdownError, type RenderMarkdownErrors, type RenderMarkdownRawData, type RenderMarkdownRawError, type RenderMarkdownRawErrors, type RenderMarkdownRawResponse, type RenderMarkdownRawResponses, type RenderMarkdownResponse, type RenderMarkdownResponses, type RenderMarkupData, type RenderMarkupError, type RenderMarkupErrors, type RenderMarkupResponse, type RenderMarkupResponses, type ReplaceFlagsOption, type RepoAddCollaboratorData, type RepoAddCollaboratorError, type RepoAddCollaboratorErrors, type RepoAddCollaboratorResponses, type RepoAddFlagData, type RepoAddFlagError, type RepoAddFlagErrors, type RepoAddFlagResponses, type RepoAddPushMirrorData, type RepoAddPushMirrorError, type RepoAddPushMirrorErrors, type RepoAddPushMirrorResponse, type RepoAddPushMirrorResponses, type RepoAddTeamData, type RepoAddTeamError, type RepoAddTeamErrors, type RepoAddTeamResponses, type RepoAddTopicData, type RepoAddTopicError, type RepoAddTopicErrors, type RepoAddTopicResponses, type RepoApplyDiffPatchData, type RepoApplyDiffPatchError, type RepoApplyDiffPatchErrors, type RepoApplyDiffPatchResponse, type RepoApplyDiffPatchResponses, type RepoCancelScheduledAutoMergeData, type RepoCancelScheduledAutoMergeError, type RepoCancelScheduledAutoMergeErrors, type RepoCancelScheduledAutoMergeResponses, type RepoChangeFilesData, type RepoChangeFilesError, type RepoChangeFilesErrors, type RepoChangeFilesResponse, type RepoChangeFilesResponses, type RepoCheckCollaboratorData, type RepoCheckCollaboratorError, type RepoCheckCollaboratorErrors, type RepoCheckCollaboratorResponses, type RepoCheckFlagData, type RepoCheckFlagError, type RepoCheckFlagErrors, type RepoCheckFlagResponses, type RepoCheckTeamData, type RepoCheckTeamError, type RepoCheckTeamErrors, type RepoCheckTeamResponse, type RepoCheckTeamResponses, type RepoCollaboratorPermission, type RepoCommit, type RepoCompareDiffData, type RepoCompareDiffError, type RepoCompareDiffErrors, type RepoCompareDiffResponse, type RepoCompareDiffResponses, type RepoConvertData, type RepoConvertError, type RepoConvertErrors, type RepoConvertResponse, type RepoConvertResponses, type RepoCreateBranchData, type RepoCreateBranchError, type RepoCreateBranchErrors, type RepoCreateBranchProtectionData, type RepoCreateBranchProtectionError, type RepoCreateBranchProtectionErrors, type RepoCreateBranchProtectionResponse, type RepoCreateBranchProtectionResponses, type RepoCreateBranchResponse, type RepoCreateBranchResponses, type RepoCreateFileData, type RepoCreateFileError, type RepoCreateFileErrors, type RepoCreateFileResponse, type RepoCreateFileResponses, type RepoCreateHookData, type RepoCreateHookError, type RepoCreateHookErrors, type RepoCreateHookResponse, type RepoCreateHookResponses, type RepoCreateKeyData, type RepoCreateKeyError, type RepoCreateKeyErrors, type RepoCreateKeyResponse, type RepoCreateKeyResponses, type RepoCreatePullRequestData, type RepoCreatePullRequestError, type RepoCreatePullRequestErrors, type RepoCreatePullRequestResponse, type RepoCreatePullRequestResponses, type RepoCreatePullReviewCommentData, type RepoCreatePullReviewCommentError, type RepoCreatePullReviewCommentErrors, type RepoCreatePullReviewCommentResponse, type RepoCreatePullReviewCommentResponses, type RepoCreatePullReviewData, type RepoCreatePullReviewError, type RepoCreatePullReviewErrors, type RepoCreatePullReviewRequestsData, type RepoCreatePullReviewRequestsError, type RepoCreatePullReviewRequestsErrors, type RepoCreatePullReviewRequestsResponse, type RepoCreatePullReviewRequestsResponses, type RepoCreatePullReviewResponse, type RepoCreatePullReviewResponses, type RepoCreateReleaseAttachmentData, type RepoCreateReleaseAttachmentError, type RepoCreateReleaseAttachmentErrors, type RepoCreateReleaseAttachmentResponse, type RepoCreateReleaseAttachmentResponses, type RepoCreateReleaseData, type RepoCreateReleaseError, type RepoCreateReleaseErrors, type RepoCreateReleaseResponse, type RepoCreateReleaseResponses, type RepoCreateStatusData, type RepoCreateStatusError, type RepoCreateStatusErrors, type RepoCreateStatusResponse, type RepoCreateStatusResponses, type RepoCreateTagData, type RepoCreateTagError, type RepoCreateTagErrors, type RepoCreateTagProtectionData, type RepoCreateTagProtectionError, type RepoCreateTagProtectionErrors, type RepoCreateTagProtectionResponse, type RepoCreateTagProtectionResponses, type RepoCreateTagResponse, type RepoCreateTagResponses, type RepoCreateWikiPageData, type RepoCreateWikiPageError, type RepoCreateWikiPageErrors, type RepoCreateWikiPageResponse, type RepoCreateWikiPageResponses, type RepoDeleteAllFlagsData, type RepoDeleteAllFlagsError, type RepoDeleteAllFlagsErrors, type RepoDeleteAllFlagsResponses, type RepoDeleteAvatarData, type RepoDeleteAvatarError, type RepoDeleteAvatarErrors, type RepoDeleteAvatarResponses, type RepoDeleteBranchData, type RepoDeleteBranchError, type RepoDeleteBranchErrors, type RepoDeleteBranchProtectionData, type RepoDeleteBranchProtectionError, type RepoDeleteBranchProtectionErrors, type RepoDeleteBranchProtectionResponses, type RepoDeleteBranchResponses, type RepoDeleteCollaboratorData, type RepoDeleteCollaboratorError, type RepoDeleteCollaboratorErrors, type RepoDeleteCollaboratorResponses, type RepoDeleteData, type RepoDeleteError, type RepoDeleteErrors, type RepoDeleteFileData, type RepoDeleteFileError, type RepoDeleteFileErrors, type RepoDeleteFileResponse, type RepoDeleteFileResponses, type RepoDeleteFlagData, type RepoDeleteFlagError, type RepoDeleteFlagErrors, type RepoDeleteFlagResponses, type RepoDeleteGitHookData, type RepoDeleteGitHookError, type RepoDeleteGitHookErrors, type RepoDeleteGitHookResponses, type RepoDeleteHookData, type RepoDeleteHookError, type RepoDeleteHookErrors, type RepoDeleteHookResponses, type RepoDeleteKeyData, type RepoDeleteKeyError, type RepoDeleteKeyErrors, type RepoDeleteKeyResponses, type RepoDeletePullReviewCommentData, type RepoDeletePullReviewCommentError, type RepoDeletePullReviewCommentErrors, type RepoDeletePullReviewCommentResponses, type RepoDeletePullReviewData, type RepoDeletePullReviewError, type RepoDeletePullReviewErrors, type RepoDeletePullReviewRequestsData, type RepoDeletePullReviewRequestsError, type RepoDeletePullReviewRequestsErrors, type RepoDeletePullReviewRequestsResponses, type RepoDeletePullReviewResponses, type RepoDeletePushMirrorData, type RepoDeletePushMirrorError, type RepoDeletePushMirrorErrors, type RepoDeletePushMirrorResponses, type RepoDeleteReleaseAttachmentData, type RepoDeleteReleaseAttachmentError, type RepoDeleteReleaseAttachmentErrors, type RepoDeleteReleaseAttachmentResponses, type RepoDeleteReleaseByTagData, type RepoDeleteReleaseByTagError, type RepoDeleteReleaseByTagErrors, type RepoDeleteReleaseByTagResponses, type RepoDeleteReleaseData, type RepoDeleteReleaseError, type RepoDeleteReleaseErrors, type RepoDeleteReleaseResponses, type RepoDeleteResponses, type RepoDeleteTagData, type RepoDeleteTagError, type RepoDeleteTagErrors, type RepoDeleteTagProtectionData, type RepoDeleteTagProtectionError, type RepoDeleteTagProtectionErrors, type RepoDeleteTagProtectionResponses, type RepoDeleteTagResponses, type RepoDeleteTeamData, type RepoDeleteTeamError, type RepoDeleteTeamErrors, type RepoDeleteTeamResponses, type RepoDeleteTopicData, type RepoDeleteTopicError, type RepoDeleteTopicErrors, type RepoDeleteTopicResponses, type RepoDeleteWikiPageData, type RepoDeleteWikiPageError, type RepoDeleteWikiPageErrors, type RepoDeleteWikiPageResponses, type RepoDismissPullReviewData, type RepoDismissPullReviewError, type RepoDismissPullReviewErrors, type RepoDismissPullReviewResponse, type RepoDismissPullReviewResponses, type RepoDownloadCommitDiffOrPatchData, type RepoDownloadCommitDiffOrPatchError, type RepoDownloadCommitDiffOrPatchErrors, type RepoDownloadCommitDiffOrPatchResponse, type RepoDownloadCommitDiffOrPatchResponses, type RepoDownloadPullDiffOrPatchData, type RepoDownloadPullDiffOrPatchError, type RepoDownloadPullDiffOrPatchErrors, type RepoDownloadPullDiffOrPatchResponse, type RepoDownloadPullDiffOrPatchResponses, type RepoEditBranchProtectionData, type RepoEditBranchProtectionError, type RepoEditBranchProtectionErrors, type RepoEditBranchProtectionResponse, type RepoEditBranchProtectionResponses, type RepoEditData, type RepoEditError, type RepoEditErrors, type RepoEditGitHookData, type RepoEditGitHookError, type RepoEditGitHookErrors, type RepoEditGitHookResponse, type RepoEditGitHookResponses, type RepoEditHookData, type RepoEditHookError, type RepoEditHookErrors, type RepoEditHookResponse, type RepoEditHookResponses, type RepoEditPullRequestData, type RepoEditPullRequestError, type RepoEditPullRequestErrors, type RepoEditPullRequestResponse, type RepoEditPullRequestResponses, type RepoEditReleaseAttachmentData, type RepoEditReleaseAttachmentError, type RepoEditReleaseAttachmentErrors, type RepoEditReleaseAttachmentResponse, type RepoEditReleaseAttachmentResponses, type RepoEditReleaseData, type RepoEditReleaseError, type RepoEditReleaseErrors, type RepoEditReleaseResponse, type RepoEditReleaseResponses, type RepoEditResponse, type RepoEditResponses, type RepoEditTagProtectionData, type RepoEditTagProtectionError, type RepoEditTagProtectionErrors, type RepoEditTagProtectionResponse, type RepoEditTagProtectionResponses, type RepoEditWikiPageData, type RepoEditWikiPageError, type RepoEditWikiPageErrors, type RepoEditWikiPageResponse, type RepoEditWikiPageResponses, type RepoGetAllCommitsData, type RepoGetAllCommitsError, type RepoGetAllCommitsErrors, type RepoGetAllCommitsResponse, type RepoGetAllCommitsResponses, type RepoGetArchiveData, type RepoGetArchiveError, type RepoGetArchiveErrors, type RepoGetArchiveResponse, type RepoGetArchiveResponses, type RepoGetAssigneesData, type RepoGetAssigneesError, type RepoGetAssigneesErrors, type RepoGetAssigneesResponse, type RepoGetAssigneesResponses, type RepoGetBranchData, type RepoGetBranchError, type RepoGetBranchErrors, type RepoGetBranchProtectionData, type RepoGetBranchProtectionError, type RepoGetBranchProtectionErrors, type RepoGetBranchProtectionResponse, type RepoGetBranchProtectionResponses, type RepoGetBranchResponse, type RepoGetBranchResponses, type RepoGetByIdData, type RepoGetByIdError, type RepoGetByIdErrors, type RepoGetByIdResponse, type RepoGetByIdResponses, type RepoGetCombinedStatusByRefData, type RepoGetCombinedStatusByRefError, type RepoGetCombinedStatusByRefErrors, type RepoGetCombinedStatusByRefResponse, type RepoGetCombinedStatusByRefResponses, type RepoGetCommitPullRequestData, type RepoGetCommitPullRequestError, type RepoGetCommitPullRequestErrors, type RepoGetCommitPullRequestResponse, type RepoGetCommitPullRequestResponses, type RepoGetContentsData, type RepoGetContentsError, type RepoGetContentsErrors, type RepoGetContentsListData, type RepoGetContentsListError, type RepoGetContentsListErrors, type RepoGetContentsListResponse, type RepoGetContentsListResponses, type RepoGetContentsResponse, type RepoGetContentsResponses, type RepoGetData, type RepoGetEditorConfigData, type RepoGetEditorConfigError, type RepoGetEditorConfigErrors, type RepoGetEditorConfigResponse, type RepoGetEditorConfigResponses, type RepoGetError, type RepoGetErrors, type RepoGetGitHookData, type RepoGetGitHookError, type RepoGetGitHookErrors, type RepoGetGitHookResponse, type RepoGetGitHookResponses, type RepoGetHookData, type RepoGetHookError, type RepoGetHookErrors, type RepoGetHookResponse, type RepoGetHookResponses, type RepoGetIssueConfigData, type RepoGetIssueConfigError, type RepoGetIssueConfigErrors, type RepoGetIssueConfigResponse, type RepoGetIssueConfigResponses, type RepoGetIssueTemplatesData, type RepoGetIssueTemplatesError, type RepoGetIssueTemplatesErrors, type RepoGetIssueTemplatesResponse, type RepoGetIssueTemplatesResponses, type RepoGetKeyData, type RepoGetKeyError, type RepoGetKeyErrors, type RepoGetKeyResponse, type RepoGetKeyResponses, type RepoGetLanguagesData, type RepoGetLanguagesError, type RepoGetLanguagesErrors, type RepoGetLanguagesResponse, type RepoGetLanguagesResponses, type RepoGetLatestReleaseData, type RepoGetLatestReleaseError, type RepoGetLatestReleaseErrors, type RepoGetLatestReleaseResponse, type RepoGetLatestReleaseResponses, type RepoGetNoteData, type RepoGetNoteError, type RepoGetNoteErrors, type RepoGetNoteResponse, type RepoGetNoteResponses, type RepoGetPullRequestByBaseHeadData, type RepoGetPullRequestByBaseHeadError, type RepoGetPullRequestByBaseHeadErrors, type RepoGetPullRequestByBaseHeadResponse, type RepoGetPullRequestByBaseHeadResponses, type RepoGetPullRequestCommitsData, type RepoGetPullRequestCommitsError, type RepoGetPullRequestCommitsErrors, type RepoGetPullRequestCommitsResponse, type RepoGetPullRequestCommitsResponses, type RepoGetPullRequestData, type RepoGetPullRequestError, type RepoGetPullRequestErrors, type RepoGetPullRequestFilesData, type RepoGetPullRequestFilesError, type RepoGetPullRequestFilesErrors, type RepoGetPullRequestFilesResponse, type RepoGetPullRequestFilesResponses, type RepoGetPullRequestResponse, type RepoGetPullRequestResponses, type RepoGetPullReviewCommentData, type RepoGetPullReviewCommentError, type RepoGetPullReviewCommentErrors, type RepoGetPullReviewCommentResponse, type RepoGetPullReviewCommentResponses, type RepoGetPullReviewCommentsData, type RepoGetPullReviewCommentsError, type RepoGetPullReviewCommentsErrors, type RepoGetPullReviewCommentsResponse, type RepoGetPullReviewCommentsResponses, type RepoGetPullReviewData, type RepoGetPullReviewError, type RepoGetPullReviewErrors, type RepoGetPullReviewResponse, type RepoGetPullReviewResponses, type RepoGetPushMirrorByRemoteNameData, type RepoGetPushMirrorByRemoteNameError, type RepoGetPushMirrorByRemoteNameErrors, type RepoGetPushMirrorByRemoteNameResponse, type RepoGetPushMirrorByRemoteNameResponses, type RepoGetRawFileData, type RepoGetRawFileError, type RepoGetRawFileErrors, type RepoGetRawFileOrLfsData, type RepoGetRawFileOrLfsError, type RepoGetRawFileOrLfsErrors, type RepoGetRawFileOrLfsResponses, type RepoGetRawFileResponses, type RepoGetReleaseAttachmentData, type RepoGetReleaseAttachmentError, type RepoGetReleaseAttachmentErrors, type RepoGetReleaseAttachmentResponse, type RepoGetReleaseAttachmentResponses, type RepoGetReleaseByTagData, type RepoGetReleaseByTagError, type RepoGetReleaseByTagErrors, type RepoGetReleaseByTagResponse, type RepoGetReleaseByTagResponses, type RepoGetReleaseData, type RepoGetReleaseError, type RepoGetReleaseErrors, type RepoGetReleaseResponse, type RepoGetReleaseResponses, type RepoGetRepoPermissionsData, type RepoGetRepoPermissionsError, type RepoGetRepoPermissionsErrors, type RepoGetRepoPermissionsResponse, type RepoGetRepoPermissionsResponses, type RepoGetResponse, type RepoGetResponses, type RepoGetReviewersData, type RepoGetReviewersError, type RepoGetReviewersErrors, type RepoGetReviewersResponse, type RepoGetReviewersResponses, type RepoGetRunnerRegistrationTokenData, type RepoGetRunnerRegistrationTokenResponse, type RepoGetRunnerRegistrationTokenResponses, type RepoGetSingleCommitData, type RepoGetSingleCommitError, type RepoGetSingleCommitErrors, type RepoGetSingleCommitResponse, type RepoGetSingleCommitResponses, type RepoGetTagData, type RepoGetTagError, type RepoGetTagErrors, type RepoGetTagProtectionData, type RepoGetTagProtectionError, type RepoGetTagProtectionErrors, type RepoGetTagProtectionResponse, type RepoGetTagProtectionResponses, type RepoGetTagResponse, type RepoGetTagResponses, type RepoGetWikiPageData, type RepoGetWikiPageError, type RepoGetWikiPageErrors, type RepoGetWikiPageResponse, type RepoGetWikiPageResponses, type RepoGetWikiPageRevisionsData, type RepoGetWikiPageRevisionsError, type RepoGetWikiPageRevisionsErrors, type RepoGetWikiPageRevisionsResponse, type RepoGetWikiPageRevisionsResponses, type RepoGetWikiPagesData, type RepoGetWikiPagesError, type RepoGetWikiPagesErrors, type RepoGetWikiPagesResponse, type RepoGetWikiPagesResponses, type RepoListActionsSecretsData, type RepoListActionsSecretsError, type RepoListActionsSecretsErrors, type RepoListActionsSecretsResponse, type RepoListActionsSecretsResponses, type RepoListActivityFeedsData, type RepoListActivityFeedsError, type RepoListActivityFeedsErrors, type RepoListActivityFeedsResponse, type RepoListActivityFeedsResponses, type RepoListAllGitRefsData, type RepoListAllGitRefsError, type RepoListAllGitRefsErrors, type RepoListAllGitRefsResponse, type RepoListAllGitRefsResponses, type RepoListBranchProtectionData, type RepoListBranchProtectionResponse, type RepoListBranchProtectionResponses, type RepoListBranchesData, type RepoListBranchesResponse, type RepoListBranchesResponses, type RepoListCollaboratorsData, type RepoListCollaboratorsError, type RepoListCollaboratorsErrors, type RepoListCollaboratorsResponse, type RepoListCollaboratorsResponses, type RepoListFlagsData, type RepoListFlagsError, type RepoListFlagsErrors, type RepoListFlagsResponse, type RepoListFlagsResponses, type RepoListGitHooksData, type RepoListGitHooksError, type RepoListGitHooksErrors, type RepoListGitHooksResponse, type RepoListGitHooksResponses, type RepoListGitRefsData, type RepoListGitRefsError, type RepoListGitRefsErrors, type RepoListGitRefsResponse, type RepoListGitRefsResponses, type RepoListHooksData, type RepoListHooksError, type RepoListHooksErrors, type RepoListHooksResponse, type RepoListHooksResponses, type RepoListKeysData, type RepoListKeysError, type RepoListKeysErrors, type RepoListKeysResponse, type RepoListKeysResponses, type RepoListPinnedIssuesData, type RepoListPinnedIssuesError, type RepoListPinnedIssuesErrors, type RepoListPinnedIssuesResponse, type RepoListPinnedIssuesResponses, type RepoListPinnedPullRequestsData, type RepoListPinnedPullRequestsError, type RepoListPinnedPullRequestsErrors, type RepoListPinnedPullRequestsResponse, type RepoListPinnedPullRequestsResponses, type RepoListPullRequestsData, type RepoListPullRequestsError, type RepoListPullRequestsErrors, type RepoListPullRequestsResponse, type RepoListPullRequestsResponses, type RepoListPullReviewsData, type RepoListPullReviewsError, type RepoListPullReviewsErrors, type RepoListPullReviewsResponse, type RepoListPullReviewsResponses, type RepoListPushMirrorsData, type RepoListPushMirrorsError, type RepoListPushMirrorsErrors, type RepoListPushMirrorsResponse, type RepoListPushMirrorsResponses, type RepoListReleaseAttachmentsData, type RepoListReleaseAttachmentsError, type RepoListReleaseAttachmentsErrors, type RepoListReleaseAttachmentsResponse, type RepoListReleaseAttachmentsResponses, type RepoListReleasesData, type RepoListReleasesError, type RepoListReleasesErrors, type RepoListReleasesResponse, type RepoListReleasesResponses, type RepoListStargazersData, type RepoListStargazersError, type RepoListStargazersErrors, type RepoListStargazersResponse, type RepoListStargazersResponses, type RepoListStatusesByRefData, type RepoListStatusesByRefError, type RepoListStatusesByRefErrors, type RepoListStatusesByRefResponse, type RepoListStatusesByRefResponses, type RepoListStatusesData, type RepoListStatusesError, type RepoListStatusesErrors, type RepoListStatusesResponse, type RepoListStatusesResponses, type RepoListSubscribersData, type RepoListSubscribersError, type RepoListSubscribersErrors, type RepoListSubscribersResponse, type RepoListSubscribersResponses, type RepoListTagProtectionData, type RepoListTagProtectionResponse, type RepoListTagProtectionResponses, type RepoListTagsData, type RepoListTagsError, type RepoListTagsErrors, type RepoListTagsResponse, type RepoListTagsResponses, type RepoListTeamsData, type RepoListTeamsError, type RepoListTeamsErrors, type RepoListTeamsResponse, type RepoListTeamsResponses, type RepoListTopicsData, type RepoListTopicsError, type RepoListTopicsErrors, type RepoListTopicsResponse, type RepoListTopicsResponses, type RepoMergePullRequestData, type RepoMergePullRequestError, type RepoMergePullRequestErrors, type RepoMergePullRequestResponses, type RepoMigrateData, type RepoMigrateError, type RepoMigrateErrors, type RepoMigrateResponse, type RepoMigrateResponses, type RepoMirrorSyncData, type RepoMirrorSyncError, type RepoMirrorSyncErrors, type RepoMirrorSyncResponses, type RepoNewPinAllowedData, type RepoNewPinAllowedError, type RepoNewPinAllowedErrors, type RepoNewPinAllowedResponse, type RepoNewPinAllowedResponses, type RepoPullRequestIsMergedData, type RepoPullRequestIsMergedErrors, type RepoPullRequestIsMergedResponses, type RepoPushMirrorSyncData, type RepoPushMirrorSyncError, type RepoPushMirrorSyncErrors, type RepoPushMirrorSyncResponses, type RepoRemoveNoteData, type RepoRemoveNoteError, type RepoRemoveNoteErrors, type RepoRemoveNoteResponses, type RepoReplaceAllFlagsData, type RepoReplaceAllFlagsError, type RepoReplaceAllFlagsErrors, type RepoReplaceAllFlagsResponses, type RepoSearchData, type RepoSearchError, type RepoSearchErrors, type RepoSearchResponse, type RepoSearchResponses, type RepoSearchRunJobsData, type RepoSearchRunJobsError, type RepoSearchRunJobsErrors, type RepoSearchRunJobsResponse, type RepoSearchRunJobsResponses, type RepoSetNoteData, type RepoSetNoteError, type RepoSetNoteErrors, type RepoSetNoteResponse, type RepoSetNoteResponses, type RepoSigningKeyData, type RepoSigningKeyResponse, type RepoSigningKeyResponses, type RepoSubmitPullReviewData, type RepoSubmitPullReviewError, type RepoSubmitPullReviewErrors, type RepoSubmitPullReviewResponse, type RepoSubmitPullReviewResponses, type RepoSyncForkBranchData, type RepoSyncForkBranchError, type RepoSyncForkBranchErrors, type RepoSyncForkBranchInfoData, type RepoSyncForkBranchInfoError, type RepoSyncForkBranchInfoErrors, type RepoSyncForkBranchInfoResponse, type RepoSyncForkBranchInfoResponses, type RepoSyncForkBranchResponses, type RepoSyncForkDefaultData, type RepoSyncForkDefaultError, type RepoSyncForkDefaultErrors, type RepoSyncForkDefaultInfoData, type RepoSyncForkDefaultInfoError, type RepoSyncForkDefaultInfoErrors, type RepoSyncForkDefaultInfoResponse, type RepoSyncForkDefaultInfoResponses, type RepoSyncForkDefaultResponses, type RepoTestHookData, type RepoTestHookError, type RepoTestHookErrors, type RepoTestHookResponses, type RepoTopicOptions, type RepoTrackedTimesData, type RepoTrackedTimesError, type RepoTrackedTimesErrors, type RepoTrackedTimesResponse, type RepoTrackedTimesResponses, type RepoTransfer, type RepoTransferData, type RepoTransferError, type RepoTransferErrors, type RepoTransferResponse, type RepoTransferResponses, type RepoUnDismissPullReviewData, type RepoUnDismissPullReviewError, type RepoUnDismissPullReviewErrors, type RepoUnDismissPullReviewResponse, type RepoUnDismissPullReviewResponses, type RepoUpdateAvatarData, type RepoUpdateAvatarError, type RepoUpdateAvatarErrors, type RepoUpdateAvatarResponses, type RepoUpdateBranchData, type RepoUpdateBranchError, type RepoUpdateBranchErrors, type RepoUpdateBranchResponses, type RepoUpdateFileData, type RepoUpdateFileError, type RepoUpdateFileErrors, type RepoUpdateFileResponse, type RepoUpdateFileResponses, type RepoUpdatePullRequestData, type RepoUpdatePullRequestError, type RepoUpdatePullRequestErrors, type RepoUpdatePullRequestResponses, type RepoUpdateTopicsData, type RepoUpdateTopicsError, type RepoUpdateTopicsErrors, type RepoUpdateTopicsResponses, type RepoValidateIssueConfigData, type RepoValidateIssueConfigError, type RepoValidateIssueConfigErrors, type RepoValidateIssueConfigResponse, type RepoValidateIssueConfigResponses, type Repository, type RepositoryMeta, type ReviewStateType, type SearchResults, type Secret, type ServerVersion, type SetUserQuotaGroupsOptions, type StateType, type StopWatch, type SubmitPullReviewOptions, type SyncForkInfo, type Tag, type TagArchiveDownloadCount, type TagProtection, type Team, type TeamSearchData, type TeamSearchError, type TeamSearchErrors, type TeamSearchResponse, type TeamSearchResponses, type TimeStamp, type TimelineComment, type TopicName, type TopicResponse, type TopicSearchData, type TopicSearchError, type TopicSearchErrors, type TopicSearchResponse, type TopicSearchResponses, type TrackedTime, type TransferRepoOption, type UnlinkPackageData, type UnlinkPackageError, type UnlinkPackageErrors, type UnlinkPackageResponses, type UnpinIssueData, type UnpinIssueError, type UnpinIssueErrors, type UnpinIssueResponses, type UpdateBranchRepoOption, type UpdateFileOptions, type UpdateOrgSecretData, type UpdateOrgSecretError, type UpdateOrgSecretErrors, type UpdateOrgSecretResponses, type UpdateOrgVariableData, type UpdateOrgVariableError, type UpdateOrgVariableErrors, type UpdateOrgVariableResponses, type UpdateRepoAvatarOption, type UpdateRepoSecretData, type UpdateRepoSecretError, type UpdateRepoSecretErrors, type UpdateRepoSecretResponses, type UpdateRepoVariableData, type UpdateRepoVariableError, type UpdateRepoVariableErrors, type UpdateRepoVariableResponses, type UpdateUserAvatarOption, type UpdateUserSecretData, type UpdateUserSecretError, type UpdateUserSecretErrors, type UpdateUserSecretResponses, type UpdateUserSettingsData, type UpdateUserSettingsError, type UpdateUserSettingsErrors, type UpdateUserSettingsResponse, type UpdateUserSettingsResponses, type UpdateUserVariableData, type UpdateUserVariableError, type UpdateUserVariableErrors, type UpdateUserVariableResponses, type UpdateVariableOption, type User, type UserAddEmailData, type UserAddEmailError, type UserAddEmailErrors, type UserAddEmailResponse, type UserAddEmailResponses, type UserBlockUserData, type UserBlockUserError, type UserBlockUserErrors, type UserBlockUserResponses, type UserCheckFollowingData, type UserCheckFollowingError, type UserCheckFollowingErrors, type UserCheckFollowingResponses, type UserCheckQuotaData, type UserCheckQuotaError, type UserCheckQuotaErrors, type UserCheckQuotaResponse, type UserCheckQuotaResponses, type UserCreateHookData, type UserCreateHookError, type UserCreateHookErrors, type UserCreateHookResponse, type UserCreateHookResponses, type UserCreateOAuth2ApplicationData, type UserCreateOAuth2ApplicationError, type UserCreateOAuth2ApplicationErrors, type UserCreateOAuth2ApplicationResponse, type UserCreateOAuth2ApplicationResponses, type UserCreateTokenData, type UserCreateTokenError, type UserCreateTokenErrors, type UserCreateTokenResponse, type UserCreateTokenResponses, type UserCurrentCheckFollowingData, type UserCurrentCheckFollowingError, type UserCurrentCheckFollowingErrors, type UserCurrentCheckFollowingResponses, type UserCurrentCheckStarringData, type UserCurrentCheckStarringError, type UserCurrentCheckStarringErrors, type UserCurrentCheckStarringResponses, type UserCurrentCheckSubscriptionData, type UserCurrentCheckSubscriptionErrors, type UserCurrentCheckSubscriptionResponse, type UserCurrentCheckSubscriptionResponses, type UserCurrentDeleteFollowData, type UserCurrentDeleteFollowError, type UserCurrentDeleteFollowErrors, type UserCurrentDeleteFollowResponses, type UserCurrentDeleteGpgKeyData, type UserCurrentDeleteGpgKeyError, type UserCurrentDeleteGpgKeyErrors, type UserCurrentDeleteGpgKeyResponses, type UserCurrentDeleteKeyData, type UserCurrentDeleteKeyError, type UserCurrentDeleteKeyErrors, type UserCurrentDeleteKeyResponses, type UserCurrentDeleteStarData, type UserCurrentDeleteStarError, type UserCurrentDeleteStarErrors, type UserCurrentDeleteStarResponses, type UserCurrentDeleteSubscriptionData, type UserCurrentDeleteSubscriptionError, type UserCurrentDeleteSubscriptionErrors, type UserCurrentDeleteSubscriptionResponses, type UserCurrentGetGpgKeyData, type UserCurrentGetGpgKeyError, type UserCurrentGetGpgKeyErrors, type UserCurrentGetGpgKeyResponse, type UserCurrentGetGpgKeyResponses, type UserCurrentGetKeyData, type UserCurrentGetKeyError, type UserCurrentGetKeyErrors, type UserCurrentGetKeyResponse, type UserCurrentGetKeyResponses, type UserCurrentListFollowersData, type UserCurrentListFollowersError, type UserCurrentListFollowersErrors, type UserCurrentListFollowersResponse, type UserCurrentListFollowersResponses, type UserCurrentListFollowingData, type UserCurrentListFollowingError, type UserCurrentListFollowingErrors, type UserCurrentListFollowingResponse, type UserCurrentListFollowingResponses, type UserCurrentListGpgKeysData, type UserCurrentListGpgKeysError, type UserCurrentListGpgKeysErrors, type UserCurrentListGpgKeysResponse, type UserCurrentListGpgKeysResponses, type UserCurrentListKeysData, type UserCurrentListKeysError, type UserCurrentListKeysErrors, type UserCurrentListKeysResponse, type UserCurrentListKeysResponses, type UserCurrentListReposData, type UserCurrentListReposError, type UserCurrentListReposErrors, type UserCurrentListReposResponse, type UserCurrentListReposResponses, type UserCurrentListStarredData, type UserCurrentListStarredError, type UserCurrentListStarredErrors, type UserCurrentListStarredResponse, type UserCurrentListStarredResponses, type UserCurrentListSubscriptionsData, type UserCurrentListSubscriptionsError, type UserCurrentListSubscriptionsErrors, type UserCurrentListSubscriptionsResponse, type UserCurrentListSubscriptionsResponses, type UserCurrentPostGpgKeyData, type UserCurrentPostGpgKeyError, type UserCurrentPostGpgKeyErrors, type UserCurrentPostGpgKeyResponse, type UserCurrentPostGpgKeyResponses, type UserCurrentPostKeyData, type UserCurrentPostKeyError, type UserCurrentPostKeyErrors, type UserCurrentPostKeyResponse, type UserCurrentPostKeyResponses, type UserCurrentPutFollowData, type UserCurrentPutFollowError, type UserCurrentPutFollowErrors, type UserCurrentPutFollowResponses, type UserCurrentPutStarData, type UserCurrentPutStarError, type UserCurrentPutStarErrors, type UserCurrentPutStarResponses, type UserCurrentPutSubscriptionData, type UserCurrentPutSubscriptionError, type UserCurrentPutSubscriptionErrors, type UserCurrentPutSubscriptionResponse, type UserCurrentPutSubscriptionResponses, type UserCurrentTrackedTimesData, type UserCurrentTrackedTimesError, type UserCurrentTrackedTimesErrors, type UserCurrentTrackedTimesResponse, type UserCurrentTrackedTimesResponses, type UserDeleteAccessTokenData, type UserDeleteAccessTokenError, type UserDeleteAccessTokenErrors, type UserDeleteAccessTokenResponses, type UserDeleteAvatarData, type UserDeleteAvatarError, type UserDeleteAvatarErrors, type UserDeleteAvatarResponses, type UserDeleteEmailData, type UserDeleteEmailError, type UserDeleteEmailErrors, type UserDeleteEmailResponses, type UserDeleteHookData, type UserDeleteHookError, type UserDeleteHookErrors, type UserDeleteHookResponses, type UserDeleteOAuth2ApplicationData, type UserDeleteOAuth2ApplicationError, type UserDeleteOAuth2ApplicationErrors, type UserDeleteOAuth2ApplicationResponses, type UserEditHookData, type UserEditHookError, type UserEditHookErrors, type UserEditHookResponse, type UserEditHookResponses, type UserGetCurrentData, type UserGetCurrentError, type UserGetCurrentErrors, type UserGetCurrentResponse, type UserGetCurrentResponses, type UserGetData, type UserGetError, type UserGetErrors, type UserGetHeatmapDataData, type UserGetHeatmapDataError, type UserGetHeatmapDataErrors, type UserGetHeatmapDataResponse, type UserGetHeatmapDataResponses, type UserGetHookData, type UserGetHookError, type UserGetHookErrors, type UserGetHookResponse, type UserGetHookResponses, type UserGetOAuth2ApplicationData, type UserGetOAuth2ApplicationError, type UserGetOAuth2ApplicationErrors, type UserGetOAuth2ApplicationResponse, type UserGetOAuth2ApplicationResponses, type UserGetOAuth2ApplicationsData, type UserGetOAuth2ApplicationsError, type UserGetOAuth2ApplicationsErrors, type UserGetOAuth2ApplicationsResponse, type UserGetOAuth2ApplicationsResponses, type UserGetQuotaData, type UserGetQuotaError, type UserGetQuotaErrors, type UserGetQuotaResponse, type UserGetQuotaResponses, type UserGetResponse, type UserGetResponses, type UserGetRunnerRegistrationTokenData, type UserGetRunnerRegistrationTokenError, type UserGetRunnerRegistrationTokenErrors, type UserGetRunnerRegistrationTokenResponse, type UserGetRunnerRegistrationTokenResponses, type UserGetStopWatchesData, type UserGetStopWatchesError, type UserGetStopWatchesErrors, type UserGetStopWatchesResponse, type UserGetStopWatchesResponses, type UserGetTokensData, type UserGetTokensError, type UserGetTokensErrors, type UserGetTokensResponse, type UserGetTokensResponses, type UserHeatmapData, type UserListActivityFeedsData, type UserListActivityFeedsError, type UserListActivityFeedsErrors, type UserListActivityFeedsResponse, type UserListActivityFeedsResponses, type UserListBlockedUsersData, type UserListBlockedUsersError, type UserListBlockedUsersErrors, type UserListBlockedUsersResponse, type UserListBlockedUsersResponses, type UserListEmailsData, type UserListEmailsError, type UserListEmailsErrors, type UserListEmailsResponse, type UserListEmailsResponses, type UserListFollowersData, type UserListFollowersError, type UserListFollowersErrors, type UserListFollowersResponse, type UserListFollowersResponses, type UserListFollowingData, type UserListFollowingError, type UserListFollowingErrors, type UserListFollowingResponse, type UserListFollowingResponses, type UserListGpgKeysData, type UserListGpgKeysError, type UserListGpgKeysErrors, type UserListGpgKeysResponse, type UserListGpgKeysResponses, type UserListHooksData, type UserListHooksError, type UserListHooksErrors, type UserListHooksResponse, type UserListHooksResponses, type UserListKeysData, type UserListKeysError, type UserListKeysErrors, type UserListKeysResponse, type UserListKeysResponses, type UserListQuotaArtifactsData, type UserListQuotaArtifactsError, type UserListQuotaArtifactsErrors, type UserListQuotaArtifactsResponse, type UserListQuotaArtifactsResponses, type UserListQuotaAttachmentsData, type UserListQuotaAttachmentsError, type UserListQuotaAttachmentsErrors, type UserListQuotaAttachmentsResponse, type UserListQuotaAttachmentsResponses, type UserListQuotaPackagesData, type UserListQuotaPackagesError, type UserListQuotaPackagesErrors, type UserListQuotaPackagesResponse, type UserListQuotaPackagesResponses, type UserListReposData, type UserListReposError, type UserListReposErrors, type UserListReposResponse, type UserListReposResponses, type UserListStarredData, type UserListStarredError, type UserListStarredErrors, type UserListStarredResponse, type UserListStarredResponses, type UserListSubscriptionsData, type UserListSubscriptionsError, type UserListSubscriptionsErrors, type UserListSubscriptionsResponse, type UserListSubscriptionsResponses, type UserListTeamsData, type UserListTeamsError, type UserListTeamsErrors, type UserListTeamsResponse, type UserListTeamsResponses, type UserSearchData, type UserSearchResponse, type UserSearchResponses, type UserSearchRunJobsData, type UserSearchRunJobsError, type UserSearchRunJobsErrors, type UserSearchRunJobsResponse, type UserSearchRunJobsResponses, type UserSettings, type UserSettingsOptions, type UserTrackedTimesData, type UserTrackedTimesError, type UserTrackedTimesErrors, type UserTrackedTimesResponse, type UserTrackedTimesResponses, type UserUnblockUserData, type UserUnblockUserError, type UserUnblockUserErrors, type UserUnblockUserResponses, type UserUpdateAvatarData, type UserUpdateAvatarError, type UserUpdateAvatarErrors, type UserUpdateAvatarResponses, type UserUpdateOAuth2ApplicationData, type UserUpdateOAuth2ApplicationError, type UserUpdateOAuth2ApplicationErrors, type UserUpdateOAuth2ApplicationResponse, type UserUpdateOAuth2ApplicationResponses, type UserVerifyGpgKeyData, type UserVerifyGpgKeyError, type UserVerifyGpgKeyErrors, type UserVerifyGpgKeyResponse, type UserVerifyGpgKeyResponses, type VerifyGpgKeyOption, type WatchInfo, type WikiCommit, type WikiCommitList, type WikiPage, type WikiPageMetaData, acceptRepoTransfer, actionRun, activitypubInstanceActor, activitypubInstanceActorInbox, activitypubInstanceActorOutbox, activitypubPerson, activitypubPersonActivity, activitypubPersonActivityNote, activitypubPersonFeed, activitypubPersonInbox, activitypubRepository, activitypubRepositoryInbox, activitypubRepositoryOutbox, adminAddRuleToQuotaGroup, adminAddUserToQuotaGroup, adminAdoptRepository, adminCreateHook, adminCreateOrg, adminCreatePublicKey, adminCreateQuotaGroup, adminCreateQuotaRule, adminCreateRepo, adminCreateUser, adminCronList, adminCronRun, adminDeleteHook, adminDeleteQuotaGroup, adminDeleteQuotaRule, adminDeleteUnadoptedRepository, adminDeleteUser, adminDeleteUserEmails, adminDeleteUserPublicKey, adminEditHook, adminEditQuotaRule, adminEditUser, adminGetAllEmails, adminGetAllOrgs, adminGetHook, adminGetQuotaGroup, adminGetQuotaRule, adminGetRunnerRegistrationToken, adminGetUserQuota, adminListHooks, adminListQuotaGroups, adminListQuotaRules, adminListUserEmails, adminListUsersInQuotaGroup, adminRemoveRuleFromQuotaGroup, adminRemoveUserFromQuotaGroup, adminRenameUser, adminSearchEmails, adminSearchRunJobs, adminSearchUsers, adminSetUserQuotaGroups, adminUnadoptedList, createClient, createConfig, createCurrentUserRepo, createFork, createOrgRepo, createOrgRepoDeprecated, createOrgVariable, createRepoVariable, createUserVariable, deleteOrgSecret, deleteOrgVariable, deletePackage, deleteRepoSecret, deleteRepoVariable, deleteUserSecret, deleteUserVariable, dispatchWorkflow, generateRepo, getAnnotatedTag, getBlob, getBlobs, getGeneralApiSettings, getGeneralAttachmentSettings, getGeneralRepositorySettings, getGeneralUiSettings, getGitignoreTemplateInfo, getLabelTemplateInfo, getLicenseTemplateInfo, getNodeInfo, getOrgVariable, getOrgVariablesList, getPackage, getRepoVariable, getRepoVariablesList, getSigningKey, getSshSigningKey, getTree, getUserSettings, getUserVariable, getUserVariablesList, getVerificationToken, getVersion, issueAddLabel, issueAddSubscription, issueAddTime, issueCheckSubscription, issueClearLabels, issueCreateComment, issueCreateIssue, issueCreateIssueAttachment, issueCreateIssueBlocking, issueCreateIssueCommentAttachment, issueCreateIssueDependencies, issueCreateLabel, issueCreateMilestone, issueDelete, issueDeleteComment, issueDeleteCommentDeprecated, issueDeleteCommentReaction, issueDeleteIssueAttachment, issueDeleteIssueCommentAttachment, issueDeleteIssueReaction, issueDeleteLabel, issueDeleteMilestone, issueDeleteStopWatch, issueDeleteSubscription, issueDeleteTime, issueEditComment, issueEditCommentDeprecated, issueEditIssue, issueEditIssueAttachment, issueEditIssueCommentAttachment, issueEditIssueDeadline, issueEditLabel, issueEditMilestone, issueGetComment, issueGetCommentReactions, issueGetComments, issueGetCommentsAndTimeline, issueGetIssue, issueGetIssueAttachment, issueGetIssueCommentAttachment, issueGetIssueReactions, issueGetLabel, issueGetLabels, issueGetMilestone, issueGetMilestonesList, issueGetRepoComments, issueListBlocks, issueListIssueAttachments, issueListIssueCommentAttachments, issueListIssueDependencies, issueListIssues, issueListLabels, issuePostCommentReaction, issuePostIssueReaction, issueRemoveIssueBlocking, issueRemoveIssueDependencies, issueRemoveLabel, issueReplaceLabels, issueResetTime, issueSearchIssues, issueStartStopWatch, issueStopStopWatch, issueSubscriptions, issueTrackedTimes, linkPackage, listActionRuns, listActionTasks, listForks, listGitignoresTemplates, listLabelTemplates, listLicenseTemplates, listPackageFiles, listPackages, moveIssuePin, notifyGetList, notifyGetRepoList, notifyGetThread, notifyNewAvailable, notifyReadList, notifyReadRepoList, notifyReadThread, orgAddTeamMember, orgAddTeamRepository, orgBlockUser, orgCheckQuota, orgConcealMember, orgCreate, orgCreateHook, orgCreateLabel, orgCreateTeam, orgDelete, orgDeleteAvatar, orgDeleteHook, orgDeleteLabel, orgDeleteMember, orgDeleteTeam, orgEdit, orgEditHook, orgEditLabel, orgEditTeam, orgGet, orgGetAll, orgGetHook, orgGetLabel, orgGetQuota, orgGetRunnerRegistrationToken, orgGetTeam, orgGetUserPermissions, orgIsMember, orgIsPublicMember, orgListActionsSecrets, orgListActivityFeeds, orgListBlockedUsers, orgListCurrentUserOrgs, orgListHooks, orgListLabels, orgListMembers, orgListPublicMembers, orgListQuotaArtifacts, orgListQuotaAttachments, orgListQuotaPackages, orgListRepos, orgListTeamActivityFeeds, orgListTeamMember, orgListTeamMembers, orgListTeamRepo, orgListTeamRepos, orgListTeams, orgListUserOrgs, orgPublicizeMember, orgRemoveTeamMember, orgRemoveTeamRepository, orgSearchRunJobs, orgUnblockUser, orgUpdateAvatar, pinIssue, rejectRepoTransfer, renameOrg, renderMarkdown, renderMarkdownRaw, renderMarkup, repoAddCollaborator, repoAddFlag, repoAddPushMirror, repoAddTeam, repoAddTopic, repoApplyDiffPatch, repoCancelScheduledAutoMerge, repoChangeFiles, repoCheckCollaborator, repoCheckFlag, repoCheckTeam, repoCompareDiff, repoConvert, repoCreateBranch, repoCreateBranchProtection, repoCreateFile, repoCreateHook, repoCreateKey, repoCreatePullRequest, repoCreatePullReview, repoCreatePullReviewComment, repoCreatePullReviewRequests, repoCreateRelease, repoCreateReleaseAttachment, repoCreateStatus, repoCreateTag, repoCreateTagProtection, repoCreateWikiPage, repoDelete, repoDeleteAllFlags, repoDeleteAvatar, repoDeleteBranch, repoDeleteBranchProtection, repoDeleteCollaborator, repoDeleteFile, repoDeleteFlag, repoDeleteGitHook, repoDeleteHook, repoDeleteKey, repoDeletePullReview, repoDeletePullReviewComment, repoDeletePullReviewRequests, repoDeletePushMirror, repoDeleteRelease, repoDeleteReleaseAttachment, repoDeleteReleaseByTag, repoDeleteTag, repoDeleteTagProtection, repoDeleteTeam, repoDeleteTopic, repoDeleteWikiPage, repoDismissPullReview, repoDownloadCommitDiffOrPatch, repoDownloadPullDiffOrPatch, repoEdit, repoEditBranchProtection, repoEditGitHook, repoEditHook, repoEditPullRequest, repoEditRelease, repoEditReleaseAttachment, repoEditTagProtection, repoEditWikiPage, repoGet, repoGetAllCommits, repoGetArchive, repoGetAssignees, repoGetBranch, repoGetBranchProtection, repoGetById, repoGetCombinedStatusByRef, repoGetCommitPullRequest, repoGetContents, repoGetContentsList, repoGetEditorConfig, repoGetGitHook, repoGetHook, repoGetIssueConfig, repoGetIssueTemplates, repoGetKey, repoGetLanguages, repoGetLatestRelease, repoGetNote, repoGetPullRequest, repoGetPullRequestByBaseHead, repoGetPullRequestCommits, repoGetPullRequestFiles, repoGetPullReview, repoGetPullReviewComment, repoGetPullReviewComments, repoGetPushMirrorByRemoteName, repoGetRawFile, repoGetRawFileOrLfs, repoGetRelease, repoGetReleaseAttachment, repoGetReleaseByTag, repoGetRepoPermissions, repoGetReviewers, repoGetRunnerRegistrationToken, repoGetSingleCommit, repoGetTag, repoGetTagProtection, repoGetWikiPage, repoGetWikiPageRevisions, repoGetWikiPages, repoListActionsSecrets, repoListActivityFeeds, repoListAllGitRefs, repoListBranchProtection, repoListBranches, repoListCollaborators, repoListFlags, repoListGitHooks, repoListGitRefs, repoListHooks, repoListKeys, repoListPinnedIssues, repoListPinnedPullRequests, repoListPullRequests, repoListPullReviews, repoListPushMirrors, repoListReleaseAttachments, repoListReleases, repoListStargazers, repoListStatuses, repoListStatusesByRef, repoListSubscribers, repoListTagProtection, repoListTags, repoListTeams, repoListTopics, repoMergePullRequest, repoMigrate, repoMirrorSync, repoNewPinAllowed, repoPullRequestIsMerged, repoPushMirrorSync, repoRemoveNote, repoReplaceAllFlags, repoSearch, repoSearchRunJobs, repoSetNote, repoSigningKey, repoSubmitPullReview, repoSyncForkBranch, repoSyncForkBranchInfo, repoSyncForkDefault, repoSyncForkDefaultInfo, repoTestHook, repoTrackedTimes, repoTransfer, repoUnDismissPullReview, repoUpdateAvatar, repoUpdateBranch, repoUpdateFile, repoUpdatePullRequest, repoUpdateTopics, repoValidateIssueConfig, teamSearch, topicSearch, unlinkPackage, unpinIssue, updateOrgSecret, updateOrgVariable, updateRepoSecret, updateRepoVariable, updateUserSecret, updateUserSettings, updateUserVariable, userAddEmail, userBlockUser, userCheckFollowing, userCheckQuota, userCreateHook, userCreateOAuth2Application, userCreateToken, userCurrentCheckFollowing, userCurrentCheckStarring, userCurrentCheckSubscription, userCurrentDeleteFollow, userCurrentDeleteGpgKey, userCurrentDeleteKey, userCurrentDeleteStar, userCurrentDeleteSubscription, userCurrentGetGpgKey, userCurrentGetKey, userCurrentListFollowers, userCurrentListFollowing, userCurrentListGpgKeys, userCurrentListKeys, userCurrentListRepos, userCurrentListStarred, userCurrentListSubscriptions, userCurrentPostGpgKey, userCurrentPostKey, userCurrentPutFollow, userCurrentPutStar, userCurrentPutSubscription, userCurrentTrackedTimes, userDeleteAccessToken, userDeleteAvatar, userDeleteEmail, userDeleteHook, userDeleteOAuth2Application, userEditHook, userGet, userGetCurrent, userGetHeatmapData, userGetHook, userGetOAuth2Application, userGetOAuth2Applications, userGetQuota, userGetRunnerRegistrationToken, userGetStopWatches, userGetTokens, userListActivityFeeds, userListBlockedUsers, userListEmails, userListFollowers, userListFollowing, userListGpgKeys, userListHooks, userListKeys, userListQuotaArtifacts, userListQuotaAttachments, userListQuotaPackages, userListRepos, userListStarred, userListSubscriptions, userListTeams, userSearch, userSearchRunJobs, userTrackedTimes, userUnblockUser, userUpdateAvatar, userUpdateOAuth2Application, userVerifyGpgKey };
|
|
22010
|
+
export { type AcceptRepoTransferData, type AcceptRepoTransferError, type AcceptRepoTransferErrors, type AcceptRepoTransferResponse, type AcceptRepoTransferResponses, type AccessToken, type ActionRun, type ActionRunData, type ActionRunError, type ActionRunErrors, type ActionRunJob, type ActionRunResponse, type ActionRunResponses, type ActionTask, type ActionTaskResponse, type ActionVariable, type Activity, type ActivityPub, type ActivitypubInstanceActorData, type ActivitypubInstanceActorInboxData, type ActivitypubInstanceActorInboxResponses, type ActivitypubInstanceActorOutboxData, type ActivitypubInstanceActorOutboxResponse, type ActivitypubInstanceActorOutboxResponses, type ActivitypubInstanceActorResponse, type ActivitypubInstanceActorResponses, type ActivitypubPersonActivityData, type ActivitypubPersonActivityNoteData, type ActivitypubPersonActivityNoteResponse, type ActivitypubPersonActivityNoteResponses, type ActivitypubPersonActivityResponse, type ActivitypubPersonActivityResponses, type ActivitypubPersonData, type ActivitypubPersonFeedData, type ActivitypubPersonFeedError, type ActivitypubPersonFeedErrors, type ActivitypubPersonFeedResponse, type ActivitypubPersonFeedResponses, type ActivitypubPersonInboxData, type ActivitypubPersonInboxResponses, type ActivitypubPersonResponse, type ActivitypubPersonResponses, type ActivitypubRepositoryData, type ActivitypubRepositoryInboxData, type ActivitypubRepositoryInboxResponses, type ActivitypubRepositoryOutboxData, type ActivitypubRepositoryOutboxResponse, type ActivitypubRepositoryOutboxResponses, type ActivitypubRepositoryResponse, type ActivitypubRepositoryResponses, type AddCollaboratorOption, type AddTimeOption, type AdminAddRuleToQuotaGroupData, type AdminAddRuleToQuotaGroupError, type AdminAddRuleToQuotaGroupErrors, type AdminAddRuleToQuotaGroupResponses, type AdminAddUserToQuotaGroupData, type AdminAddUserToQuotaGroupError, type AdminAddUserToQuotaGroupErrors, type AdminAddUserToQuotaGroupResponses, type AdminAdoptRepositoryData, type AdminAdoptRepositoryError, type AdminAdoptRepositoryErrors, type AdminAdoptRepositoryResponses, type AdminCreateHookData, type AdminCreateHookResponse, type AdminCreateHookResponses, type AdminCreateOrgData, type AdminCreateOrgError, type AdminCreateOrgErrors, type AdminCreateOrgResponse, type AdminCreateOrgResponses, type AdminCreatePublicKeyData, type AdminCreatePublicKeyError, type AdminCreatePublicKeyErrors, type AdminCreatePublicKeyResponse, type AdminCreatePublicKeyResponses, type AdminCreateQuotaGroupData, type AdminCreateQuotaGroupError, type AdminCreateQuotaGroupErrors, type AdminCreateQuotaGroupResponse, type AdminCreateQuotaGroupResponses, type AdminCreateQuotaRuleData, type AdminCreateQuotaRuleError, type AdminCreateQuotaRuleErrors, type AdminCreateQuotaRuleResponse, type AdminCreateQuotaRuleResponses, type AdminCreateRepoData, type AdminCreateRepoError, type AdminCreateRepoErrors, type AdminCreateRepoResponse, type AdminCreateRepoResponses, type AdminCreateUserData, type AdminCreateUserError, type AdminCreateUserErrors, type AdminCreateUserResponse, type AdminCreateUserResponses, type AdminCronListData, type AdminCronListError, type AdminCronListErrors, type AdminCronListResponse, type AdminCronListResponses, type AdminCronRunData, type AdminCronRunError, type AdminCronRunErrors, type AdminCronRunResponses, type AdminDeleteHookData, type AdminDeleteHookResponses, type AdminDeleteQuotaGroupData, type AdminDeleteQuotaGroupError, type AdminDeleteQuotaGroupErrors, type AdminDeleteQuotaGroupResponses, type AdminDeleteQuotaRuleData, type AdminDeleteQuotaRuleError, type AdminDeleteQuotaRuleErrors, type AdminDeleteQuotaRuleResponses, type AdminDeleteUnadoptedRepositoryData, type AdminDeleteUnadoptedRepositoryError, type AdminDeleteUnadoptedRepositoryErrors, type AdminDeleteUnadoptedRepositoryResponses, type AdminDeleteUserData, type AdminDeleteUserEmailsData, type AdminDeleteUserEmailsError, type AdminDeleteUserEmailsErrors, type AdminDeleteUserEmailsResponses, type AdminDeleteUserError, type AdminDeleteUserErrors, type AdminDeleteUserPublicKeyData, type AdminDeleteUserPublicKeyError, type AdminDeleteUserPublicKeyErrors, type AdminDeleteUserPublicKeyResponses, type AdminDeleteUserResponses, type AdminEditHookData, type AdminEditHookResponse, type AdminEditHookResponses, type AdminEditQuotaRuleData, type AdminEditQuotaRuleError, type AdminEditQuotaRuleErrors, type AdminEditQuotaRuleResponse, type AdminEditQuotaRuleResponses, type AdminEditUserData, type AdminEditUserError, type AdminEditUserErrors, type AdminEditUserResponse, type AdminEditUserResponses, type AdminGetAllEmailsData, type AdminGetAllEmailsError, type AdminGetAllEmailsErrors, type AdminGetAllEmailsResponse, type AdminGetAllEmailsResponses, type AdminGetAllOrgsData, type AdminGetAllOrgsError, type AdminGetAllOrgsErrors, type AdminGetAllOrgsResponse, type AdminGetAllOrgsResponses, type AdminGetHookData, type AdminGetHookResponse, type AdminGetHookResponses, type AdminGetQuotaGroupData, type AdminGetQuotaGroupError, type AdminGetQuotaGroupErrors, type AdminGetQuotaGroupResponse, type AdminGetQuotaGroupResponses, type AdminGetQuotaRuleData, type AdminGetQuotaRuleError, type AdminGetQuotaRuleErrors, type AdminGetQuotaRuleResponse, type AdminGetQuotaRuleResponses, type AdminGetRunnerRegistrationTokenData, type AdminGetRunnerRegistrationTokenResponse, type AdminGetRunnerRegistrationTokenResponses, type AdminGetUserQuotaData, type AdminGetUserQuotaError, type AdminGetUserQuotaErrors, type AdminGetUserQuotaResponse, type AdminGetUserQuotaResponses, type AdminListHooksData, type AdminListHooksResponse, type AdminListHooksResponses, type AdminListQuotaGroupsData, type AdminListQuotaGroupsError, type AdminListQuotaGroupsErrors, type AdminListQuotaGroupsResponse, type AdminListQuotaGroupsResponses, type AdminListQuotaRulesData, type AdminListQuotaRulesError, type AdminListQuotaRulesErrors, type AdminListQuotaRulesResponse, type AdminListQuotaRulesResponses, type AdminListUserEmailsData, type AdminListUserEmailsError, type AdminListUserEmailsErrors, type AdminListUserEmailsResponse, type AdminListUserEmailsResponses, type AdminListUsersInQuotaGroupData, type AdminListUsersInQuotaGroupError, type AdminListUsersInQuotaGroupErrors, type AdminListUsersInQuotaGroupResponse, type AdminListUsersInQuotaGroupResponses, type AdminRemoveRuleFromQuotaGroupData, type AdminRemoveRuleFromQuotaGroupError, type AdminRemoveRuleFromQuotaGroupErrors, type AdminRemoveRuleFromQuotaGroupResponses, type AdminRemoveUserFromQuotaGroupData, type AdminRemoveUserFromQuotaGroupError, type AdminRemoveUserFromQuotaGroupErrors, type AdminRemoveUserFromQuotaGroupResponses, type AdminRenameUserData, type AdminRenameUserError, type AdminRenameUserErrors, type AdminRenameUserResponses, type AdminSearchEmailsData, type AdminSearchEmailsError, type AdminSearchEmailsErrors, type AdminSearchEmailsResponse, type AdminSearchEmailsResponses, type AdminSearchRunJobsData, type AdminSearchRunJobsError, type AdminSearchRunJobsErrors, type AdminSearchRunJobsResponse, type AdminSearchRunJobsResponses, type AdminSearchUsersData, type AdminSearchUsersError, type AdminSearchUsersErrors, type AdminSearchUsersResponse, type AdminSearchUsersResponses, type AdminSetUserQuotaGroupsData, type AdminSetUserQuotaGroupsError, type AdminSetUserQuotaGroupsErrors, type AdminSetUserQuotaGroupsResponses, type AdminUnadoptedListData, type AdminUnadoptedListError, type AdminUnadoptedListErrors, type AdminUnadoptedListResponse, type AdminUnadoptedListResponses, type AnnotatedTag, type AnnotatedTagObject, type ApiError, type ApiForbiddenError, type ApiInternalServerError, type ApiInvalidTopicsError, type ApiNotFound, type ApiRepoArchivedError, type ApiUnauthorizedError, type ApiValidationError, type Attachment, type BlockedUser, type Branch, type BranchProtection, type ChangeFileOperation, type ChangeFilesOptions, type ChangedFile, type ClientOptions, type CombinedStatus, type Comment, type Commit, type CommitAffectedFiles, type CommitDateOptions, type CommitMeta, type CommitStats, type CommitStatus, type CommitStatusState, type CommitUser, type Compare, type ContentsResponse, type CreateAccessTokenOption, type CreateBranchProtectionOption, type CreateBranchRepoOption, type CreateCurrentUserRepoData, type CreateCurrentUserRepoError, type CreateCurrentUserRepoErrors, type CreateCurrentUserRepoResponse, type CreateCurrentUserRepoResponses, type CreateEmailOption, type CreateFileOptions, type CreateForkData, type CreateForkError, type CreateForkErrors, type CreateForkOption, type CreateForkResponse, type CreateForkResponses, type CreateGpgKeyOption, type CreateHookOption, type CreateHookOptionConfig, type CreateIssueCommentOption, type CreateIssueOption, type CreateKeyOption, type CreateLabelOption, type CreateMilestoneOption, type CreateOAuth2ApplicationOptions, type CreateOrUpdateSecretOption, type CreateOrgOption, type CreateOrgRepoData, type CreateOrgRepoDeprecatedData, type CreateOrgRepoDeprecatedError, type CreateOrgRepoDeprecatedErrors, type CreateOrgRepoDeprecatedResponse, type CreateOrgRepoDeprecatedResponses, type CreateOrgRepoError, type CreateOrgRepoErrors, type CreateOrgRepoResponse, type CreateOrgRepoResponses, type CreateOrgVariableData, type CreateOrgVariableError, type CreateOrgVariableErrors, type CreateOrgVariableResponses, type CreatePullRequestOption, type CreatePullReviewComment, type CreatePullReviewCommentOptions, type CreatePullReviewOptions, type CreatePushMirrorOption, type CreateQuotaGroupOptions, type CreateQuotaRuleOptions, type CreateReleaseOption, type CreateRepoOption, type CreateRepoVariableData, type CreateRepoVariableError, type CreateRepoVariableErrors, type CreateRepoVariableResponses, type CreateStatusOption, type CreateTagOption, type CreateTagProtectionOption, type CreateTeamOption, type CreateUserOption, type CreateUserVariableData, type CreateUserVariableError, type CreateUserVariableErrors, type CreateUserVariableResponses, type CreateVariableOption, type CreateWikiPageOptions, type Cron, type DeleteEmailOption, type DeleteFileOptions, type DeleteLabelsOption, type DeleteOrgSecretData, type DeleteOrgSecretError, type DeleteOrgSecretErrors, type DeleteOrgSecretResponses, type DeleteOrgVariableData, type DeleteOrgVariableError, type DeleteOrgVariableErrors, type DeleteOrgVariableResponses, type DeletePackageData, type DeletePackageError, type DeletePackageErrors, type DeletePackageResponses, type DeleteRepoSecretData, type DeleteRepoSecretError, type DeleteRepoSecretErrors, type DeleteRepoSecretResponses, type DeleteRepoVariableData, type DeleteRepoVariableError, type DeleteRepoVariableErrors, type DeleteRepoVariableResponses, type DeleteUserSecretData, type DeleteUserSecretError, type DeleteUserSecretErrors, type DeleteUserSecretResponses, type DeleteUserVariableData, type DeleteUserVariableError, type DeleteUserVariableErrors, type DeleteUserVariableResponses, type DeployKey, type DismissPullReviewOptions, type DispatchWorkflowData, type DispatchWorkflowError, type DispatchWorkflowErrors, type DispatchWorkflowOption, type DispatchWorkflowResponse, type DispatchWorkflowResponses, type DispatchWorkflowRun, type Duration, type EditAttachmentOptions, type EditBranchProtectionOption, type EditDeadlineOption, type EditGitHookOption, type EditHookOption, type EditIssueCommentOption, type EditIssueOption, type EditLabelOption, type EditMilestoneOption, type EditOrgOption, type EditPullRequestOption, type EditQuotaRuleOptions, type EditReactionOption, type EditReleaseOption, type EditRepoOption, type EditTagProtectionOption, type EditTeamOption, type EditUserOption, type Email, type ExternalTracker, type ExternalWiki, type FileCommitResponse, type FileDeleteResponse, type FileLinksResponse, type FileResponse, type FilesResponse, type ForgeLike, type ForgeOutbox, type GeneralApiSettings, type GeneralAttachmentSettings, type GeneralRepoSettings, type GeneralUiSettings, type GenerateRepoData, type GenerateRepoError, type GenerateRepoErrors, type GenerateRepoOption, type GenerateRepoResponse, type GenerateRepoResponses, type GetAnnotatedTagData, type GetAnnotatedTagError, type GetAnnotatedTagErrors, type GetAnnotatedTagResponse, type GetAnnotatedTagResponses, type GetBlobData, type GetBlobError, type GetBlobErrors, type GetBlobResponse, type GetBlobResponses, type GetBlobsData, type GetBlobsError, type GetBlobsErrors, type GetBlobsResponse, type GetBlobsResponses, type GetGeneralApiSettingsData, type GetGeneralApiSettingsResponse, type GetGeneralApiSettingsResponses, type GetGeneralAttachmentSettingsData, type GetGeneralAttachmentSettingsResponse, type GetGeneralAttachmentSettingsResponses, type GetGeneralRepositorySettingsData, type GetGeneralRepositorySettingsResponse, type GetGeneralRepositorySettingsResponses, type GetGeneralUiSettingsData, type GetGeneralUiSettingsResponse, type GetGeneralUiSettingsResponses, type GetGitignoreTemplateInfoData, type GetGitignoreTemplateInfoError, type GetGitignoreTemplateInfoErrors, type GetGitignoreTemplateInfoResponse, type GetGitignoreTemplateInfoResponses, type GetLabelTemplateInfoData, type GetLabelTemplateInfoError, type GetLabelTemplateInfoErrors, type GetLabelTemplateInfoResponse, type GetLabelTemplateInfoResponses, type GetLicenseTemplateInfoData, type GetLicenseTemplateInfoError, type GetLicenseTemplateInfoErrors, type GetLicenseTemplateInfoResponse, type GetLicenseTemplateInfoResponses, type GetNodeInfoData, type GetNodeInfoResponse, type GetNodeInfoResponses, type GetOrgVariableData, type GetOrgVariableError, type GetOrgVariableErrors, type GetOrgVariableResponse, type GetOrgVariableResponses, type GetOrgVariablesListData, type GetOrgVariablesListError, type GetOrgVariablesListErrors, type GetOrgVariablesListResponse, type GetOrgVariablesListResponses, type GetPackageData, type GetPackageError, type GetPackageErrors, type GetPackageResponse, type GetPackageResponses, type GetRepoVariableData, type GetRepoVariableError, type GetRepoVariableErrors, type GetRepoVariableResponse, type GetRepoVariableResponses, type GetRepoVariablesListData, type GetRepoVariablesListError, type GetRepoVariablesListErrors, type GetRepoVariablesListResponse, type GetRepoVariablesListResponses, type GetSigningKeyData, type GetSigningKeyResponse, type GetSigningKeyResponses, type GetSshSigningKeyData, type GetSshSigningKeyError, type GetSshSigningKeyErrors, type GetSshSigningKeyResponse, type GetSshSigningKeyResponses, type GetTreeData, type GetTreeError, type GetTreeErrors, type GetTreeResponse, type GetTreeResponses, type GetUserSettingsData, type GetUserSettingsError, type GetUserSettingsErrors, type GetUserSettingsResponse, type GetUserSettingsResponses, type GetUserVariableData, type GetUserVariableError, type GetUserVariableErrors, type GetUserVariableResponse, type GetUserVariableResponses, type GetUserVariablesListData, type GetUserVariablesListError, type GetUserVariablesListErrors, type GetUserVariablesListResponse, type GetUserVariablesListResponses, type GetVerificationTokenData, type GetVerificationTokenError, type GetVerificationTokenErrors, type GetVerificationTokenResponse, type GetVerificationTokenResponses, type GetVersionData, type GetVersionResponse, type GetVersionResponses, type GitBlob, type GitEntry, type GitHook, type GitObject, type GitTreeResponse, type GitignoreTemplateInfo, type GpgKey, type GpgKeyEmail, type Hook, type Identity, type InternalTracker, type Issue, type IssueAddLabelData, type IssueAddLabelError, type IssueAddLabelErrors, type IssueAddLabelResponse, type IssueAddLabelResponses, type IssueAddSubscriptionData, type IssueAddSubscriptionError, type IssueAddSubscriptionErrors, type IssueAddSubscriptionResponses, type IssueAddTimeData, type IssueAddTimeError, type IssueAddTimeErrors, type IssueAddTimeResponse, type IssueAddTimeResponses, type IssueCheckSubscriptionData, type IssueCheckSubscriptionError, type IssueCheckSubscriptionErrors, type IssueCheckSubscriptionResponse, type IssueCheckSubscriptionResponses, type IssueClearLabelsData, type IssueClearLabelsError, type IssueClearLabelsErrors, type IssueClearLabelsResponses, type IssueConfig, type IssueConfigContactLink, type IssueConfigValidation, type IssueCreateCommentData, type IssueCreateCommentError, type IssueCreateCommentErrors, type IssueCreateCommentResponse, type IssueCreateCommentResponses, type IssueCreateIssueAttachmentData, type IssueCreateIssueAttachmentError, type IssueCreateIssueAttachmentErrors, type IssueCreateIssueAttachmentResponse, type IssueCreateIssueAttachmentResponses, type IssueCreateIssueBlockingData, type IssueCreateIssueBlockingErrors, type IssueCreateIssueBlockingResponse, type IssueCreateIssueBlockingResponses, type IssueCreateIssueCommentAttachmentData, type IssueCreateIssueCommentAttachmentError, type IssueCreateIssueCommentAttachmentErrors, type IssueCreateIssueCommentAttachmentResponse, type IssueCreateIssueCommentAttachmentResponses, type IssueCreateIssueData, type IssueCreateIssueDependenciesData, type IssueCreateIssueDependenciesError, type IssueCreateIssueDependenciesErrors, type IssueCreateIssueDependenciesResponse, type IssueCreateIssueDependenciesResponses, type IssueCreateIssueError, type IssueCreateIssueErrors, type IssueCreateIssueResponse, type IssueCreateIssueResponses, type IssueCreateLabelData, type IssueCreateLabelError, type IssueCreateLabelErrors, type IssueCreateLabelResponse, type IssueCreateLabelResponses, type IssueCreateMilestoneData, type IssueCreateMilestoneError, type IssueCreateMilestoneErrors, type IssueCreateMilestoneResponse, type IssueCreateMilestoneResponses, type IssueDeadline, type IssueDeleteCommentData, type IssueDeleteCommentDeprecatedData, type IssueDeleteCommentDeprecatedError, type IssueDeleteCommentDeprecatedErrors, type IssueDeleteCommentDeprecatedResponses, type IssueDeleteCommentError, type IssueDeleteCommentErrors, type IssueDeleteCommentReactionData, type IssueDeleteCommentReactionError, type IssueDeleteCommentReactionErrors, type IssueDeleteCommentReactionResponses, type IssueDeleteCommentResponses, type IssueDeleteData, type IssueDeleteError, type IssueDeleteErrors, type IssueDeleteIssueAttachmentData, type IssueDeleteIssueAttachmentError, type IssueDeleteIssueAttachmentErrors, type IssueDeleteIssueAttachmentResponses, type IssueDeleteIssueCommentAttachmentData, type IssueDeleteIssueCommentAttachmentError, type IssueDeleteIssueCommentAttachmentErrors, type IssueDeleteIssueCommentAttachmentResponses, type IssueDeleteIssueReactionData, type IssueDeleteIssueReactionError, type IssueDeleteIssueReactionErrors, type IssueDeleteIssueReactionResponses, type IssueDeleteLabelData, type IssueDeleteLabelError, type IssueDeleteLabelErrors, type IssueDeleteLabelResponses, type IssueDeleteMilestoneData, type IssueDeleteMilestoneError, type IssueDeleteMilestoneErrors, type IssueDeleteMilestoneResponses, type IssueDeleteResponses, type IssueDeleteStopWatchData, type IssueDeleteStopWatchError, type IssueDeleteStopWatchErrors, type IssueDeleteStopWatchResponses, type IssueDeleteSubscriptionData, type IssueDeleteSubscriptionError, type IssueDeleteSubscriptionErrors, type IssueDeleteSubscriptionResponses, type IssueDeleteTimeData, type IssueDeleteTimeError, type IssueDeleteTimeErrors, type IssueDeleteTimeResponses, type IssueEditCommentData, type IssueEditCommentDeprecatedData, type IssueEditCommentDeprecatedError, type IssueEditCommentDeprecatedErrors, type IssueEditCommentDeprecatedResponse, type IssueEditCommentDeprecatedResponses, type IssueEditCommentError, type IssueEditCommentErrors, type IssueEditCommentResponse, type IssueEditCommentResponses, type IssueEditIssueAttachmentData, type IssueEditIssueAttachmentError, type IssueEditIssueAttachmentErrors, type IssueEditIssueAttachmentResponse, type IssueEditIssueAttachmentResponses, type IssueEditIssueCommentAttachmentData, type IssueEditIssueCommentAttachmentError, type IssueEditIssueCommentAttachmentErrors, type IssueEditIssueCommentAttachmentResponse, type IssueEditIssueCommentAttachmentResponses, type IssueEditIssueData, type IssueEditIssueDeadlineData, type IssueEditIssueDeadlineError, type IssueEditIssueDeadlineErrors, type IssueEditIssueDeadlineResponse, type IssueEditIssueDeadlineResponses, type IssueEditIssueError, type IssueEditIssueErrors, type IssueEditIssueResponse, type IssueEditIssueResponses, type IssueEditLabelData, type IssueEditLabelError, type IssueEditLabelErrors, type IssueEditLabelResponse, type IssueEditLabelResponses, type IssueEditMilestoneData, type IssueEditMilestoneError, type IssueEditMilestoneErrors, type IssueEditMilestoneResponse, type IssueEditMilestoneResponses, type IssueFormField, type IssueFormFieldType, type IssueFormFieldVisible, type IssueGetCommentData, type IssueGetCommentError, type IssueGetCommentErrors, type IssueGetCommentReactionsData, type IssueGetCommentReactionsError, type IssueGetCommentReactionsErrors, type IssueGetCommentReactionsResponse, type IssueGetCommentReactionsResponses, type IssueGetCommentResponse, type IssueGetCommentResponses, type IssueGetCommentsAndTimelineData, type IssueGetCommentsAndTimelineError, type IssueGetCommentsAndTimelineErrors, type IssueGetCommentsAndTimelineResponse, type IssueGetCommentsAndTimelineResponses, type IssueGetCommentsData, type IssueGetCommentsError, type IssueGetCommentsErrors, type IssueGetCommentsResponse, type IssueGetCommentsResponses, type IssueGetIssueAttachmentData, type IssueGetIssueAttachmentError, type IssueGetIssueAttachmentErrors, type IssueGetIssueAttachmentResponse, type IssueGetIssueAttachmentResponses, type IssueGetIssueCommentAttachmentData, type IssueGetIssueCommentAttachmentError, type IssueGetIssueCommentAttachmentErrors, type IssueGetIssueCommentAttachmentResponse, type IssueGetIssueCommentAttachmentResponses, type IssueGetIssueData, type IssueGetIssueError, type IssueGetIssueErrors, type IssueGetIssueReactionsData, type IssueGetIssueReactionsError, type IssueGetIssueReactionsErrors, type IssueGetIssueReactionsResponse, type IssueGetIssueReactionsResponses, type IssueGetIssueResponse, type IssueGetIssueResponses, type IssueGetLabelData, type IssueGetLabelError, type IssueGetLabelErrors, type IssueGetLabelResponse, type IssueGetLabelResponses, type IssueGetLabelsData, type IssueGetLabelsError, type IssueGetLabelsErrors, type IssueGetLabelsResponse, type IssueGetLabelsResponses, type IssueGetMilestoneData, type IssueGetMilestoneError, type IssueGetMilestoneErrors, type IssueGetMilestoneResponse, type IssueGetMilestoneResponses, type IssueGetMilestonesListData, type IssueGetMilestonesListError, type IssueGetMilestonesListErrors, type IssueGetMilestonesListResponse, type IssueGetMilestonesListResponses, type IssueGetRepoCommentsData, type IssueGetRepoCommentsError, type IssueGetRepoCommentsErrors, type IssueGetRepoCommentsResponse, type IssueGetRepoCommentsResponses, type IssueLabelsOption, type IssueListBlocksData, type IssueListBlocksError, type IssueListBlocksErrors, type IssueListBlocksResponse, type IssueListBlocksResponses, type IssueListIssueAttachmentsData, type IssueListIssueAttachmentsError, type IssueListIssueAttachmentsErrors, type IssueListIssueAttachmentsResponse, type IssueListIssueAttachmentsResponses, type IssueListIssueCommentAttachmentsData, type IssueListIssueCommentAttachmentsError, type IssueListIssueCommentAttachmentsErrors, type IssueListIssueCommentAttachmentsResponse, type IssueListIssueCommentAttachmentsResponses, type IssueListIssueDependenciesData, type IssueListIssueDependenciesError, type IssueListIssueDependenciesErrors, type IssueListIssueDependenciesResponse, type IssueListIssueDependenciesResponses, type IssueListIssuesData, type IssueListIssuesError, type IssueListIssuesErrors, type IssueListIssuesResponse, type IssueListIssuesResponses, type IssueListLabelsData, type IssueListLabelsError, type IssueListLabelsErrors, type IssueListLabelsResponse, type IssueListLabelsResponses, type IssueMeta, type IssuePostCommentReactionData, type IssuePostCommentReactionError, type IssuePostCommentReactionErrors, type IssuePostCommentReactionResponse, type IssuePostCommentReactionResponses, type IssuePostIssueReactionData, type IssuePostIssueReactionError, type IssuePostIssueReactionErrors, type IssuePostIssueReactionResponse, type IssuePostIssueReactionResponses, type IssueRemoveIssueBlockingData, type IssueRemoveIssueBlockingError, type IssueRemoveIssueBlockingErrors, type IssueRemoveIssueBlockingResponse, type IssueRemoveIssueBlockingResponses, type IssueRemoveIssueDependenciesData, type IssueRemoveIssueDependenciesError, type IssueRemoveIssueDependenciesErrors, type IssueRemoveIssueDependenciesResponse, type IssueRemoveIssueDependenciesResponses, type IssueRemoveLabelData, type IssueRemoveLabelError, type IssueRemoveLabelErrors, type IssueRemoveLabelResponses, type IssueReplaceLabelsData, type IssueReplaceLabelsError, type IssueReplaceLabelsErrors, type IssueReplaceLabelsResponse, type IssueReplaceLabelsResponses, type IssueResetTimeData, type IssueResetTimeError, type IssueResetTimeErrors, type IssueResetTimeResponses, type IssueSearchIssuesData, type IssueSearchIssuesError, type IssueSearchIssuesErrors, type IssueSearchIssuesResponse, type IssueSearchIssuesResponses, type IssueStartStopWatchData, type IssueStartStopWatchError, type IssueStartStopWatchErrors, type IssueStartStopWatchResponses, type IssueStopStopWatchData, type IssueStopStopWatchError, type IssueStopStopWatchErrors, type IssueStopStopWatchResponses, type IssueSubscriptionsData, type IssueSubscriptionsError, type IssueSubscriptionsErrors, type IssueSubscriptionsResponse, type IssueSubscriptionsResponses, type IssueTemplate, type IssueTemplateLabels, type IssueTrackedTimesData, type IssueTrackedTimesError, type IssueTrackedTimesErrors, type IssueTrackedTimesResponse, type IssueTrackedTimesResponses, type Label, type LabelTemplate, type LicenseTemplateInfo, type LicensesTemplateListEntry, type LinkPackageData, type LinkPackageError, type LinkPackageErrors, type LinkPackageResponses, type ListActionRunResponse, type ListActionRunsData, type ListActionRunsError, type ListActionRunsErrors, type ListActionRunsResponse, type ListActionRunsResponses, type ListActionTasksData, type ListActionTasksError, type ListActionTasksErrors, type ListActionTasksResponse, type ListActionTasksResponses, type ListForksData, type ListForksError, type ListForksErrors, type ListForksResponse, type ListForksResponses, type ListGitignoresTemplatesData, type ListGitignoresTemplatesResponse, type ListGitignoresTemplatesResponses, type ListLabelTemplatesData, type ListLabelTemplatesResponse, type ListLabelTemplatesResponses, type ListLicenseTemplatesData, type ListLicenseTemplatesResponse, type ListLicenseTemplatesResponses, type ListPackageFilesData, type ListPackageFilesError, type ListPackageFilesErrors, type ListPackageFilesResponse, type ListPackageFilesResponses, type ListPackagesData, type ListPackagesError, type ListPackagesErrors, type ListPackagesResponse, type ListPackagesResponses, type MarkdownOption, type MarkupOption, type MergePullRequestOption, type MigrateRepoOptions, type Milestone, type MoveIssuePinData, type MoveIssuePinError, type MoveIssuePinErrors, type MoveIssuePinResponses, type NewIssuePinsAllowed, type NodeInfo, type NodeInfoServices, type NodeInfoSoftware, type NodeInfoUsage, type NodeInfoUsageUsers, type Note, type NoteOptions, type NotificationCount, type NotificationSubject, type NotificationThread, type NotifyGetListData, type NotifyGetListResponse, type NotifyGetListResponses, type NotifyGetRepoListData, type NotifyGetRepoListResponse, type NotifyGetRepoListResponses, type NotifyGetThreadData, type NotifyGetThreadError, type NotifyGetThreadErrors, type NotifyGetThreadResponse, type NotifyGetThreadResponses, type NotifyNewAvailableData, type NotifyNewAvailableResponse, type NotifyNewAvailableResponses, type NotifyReadListData, type NotifyReadListResponse, type NotifyReadListResponses, type NotifyReadRepoListData, type NotifyReadRepoListResponse, type NotifyReadRepoListResponses, type NotifyReadThreadData, type NotifyReadThreadError, type NotifyReadThreadErrors, type NotifyReadThreadResponse, type NotifyReadThreadResponses, type NotifySubjectType, type OAuth2Application, type Options, type OrgAddTeamMemberData, type OrgAddTeamMemberError, type OrgAddTeamMemberErrors, type OrgAddTeamMemberResponses, type OrgAddTeamRepositoryData, type OrgAddTeamRepositoryError, type OrgAddTeamRepositoryErrors, type OrgAddTeamRepositoryResponses, type OrgBlockUserData, type OrgBlockUserError, type OrgBlockUserErrors, type OrgBlockUserResponses, type OrgCheckQuotaData, type OrgCheckQuotaError, type OrgCheckQuotaErrors, type OrgCheckQuotaResponse, type OrgCheckQuotaResponses, type OrgConcealMemberData, type OrgConcealMemberError, type OrgConcealMemberErrors, type OrgConcealMemberResponses, type OrgCreateData, type OrgCreateError, type OrgCreateErrors, type OrgCreateHookData, type OrgCreateHookError, type OrgCreateHookErrors, type OrgCreateHookResponse, type OrgCreateHookResponses, type OrgCreateLabelData, type OrgCreateLabelError, type OrgCreateLabelErrors, type OrgCreateLabelResponse, type OrgCreateLabelResponses, type OrgCreateResponse, type OrgCreateResponses, type OrgCreateTeamData, type OrgCreateTeamError, type OrgCreateTeamErrors, type OrgCreateTeamResponse, type OrgCreateTeamResponses, type OrgDeleteAvatarData, type OrgDeleteAvatarError, type OrgDeleteAvatarErrors, type OrgDeleteAvatarResponses, type OrgDeleteData, type OrgDeleteError, type OrgDeleteErrors, type OrgDeleteHookData, type OrgDeleteHookError, type OrgDeleteHookErrors, type OrgDeleteHookResponses, type OrgDeleteLabelData, type OrgDeleteLabelError, type OrgDeleteLabelErrors, type OrgDeleteLabelResponses, type OrgDeleteMemberData, type OrgDeleteMemberError, type OrgDeleteMemberErrors, type OrgDeleteMemberResponses, type OrgDeleteResponses, type OrgDeleteTeamData, type OrgDeleteTeamError, type OrgDeleteTeamErrors, type OrgDeleteTeamResponses, type OrgEditData, type OrgEditError, type OrgEditErrors, type OrgEditHookData, type OrgEditHookError, type OrgEditHookErrors, type OrgEditHookResponse, type OrgEditHookResponses, type OrgEditLabelData, type OrgEditLabelError, type OrgEditLabelErrors, type OrgEditLabelResponse, type OrgEditLabelResponses, type OrgEditResponse, type OrgEditResponses, type OrgEditTeamData, type OrgEditTeamError, type OrgEditTeamErrors, type OrgEditTeamResponse, type OrgEditTeamResponses, type OrgGetAllData, type OrgGetAllResponse, type OrgGetAllResponses, type OrgGetData, type OrgGetError, type OrgGetErrors, type OrgGetHookData, type OrgGetHookError, type OrgGetHookErrors, type OrgGetHookResponse, type OrgGetHookResponses, type OrgGetLabelData, type OrgGetLabelError, type OrgGetLabelErrors, type OrgGetLabelResponse, type OrgGetLabelResponses, type OrgGetQuotaData, type OrgGetQuotaError, type OrgGetQuotaErrors, type OrgGetQuotaResponse, type OrgGetQuotaResponses, type OrgGetResponse, type OrgGetResponses, type OrgGetRunnerRegistrationTokenData, type OrgGetRunnerRegistrationTokenResponse, type OrgGetRunnerRegistrationTokenResponses, type OrgGetTeamData, type OrgGetTeamError, type OrgGetTeamErrors, type OrgGetTeamResponse, type OrgGetTeamResponses, type OrgGetUserPermissionsData, type OrgGetUserPermissionsError, type OrgGetUserPermissionsErrors, type OrgGetUserPermissionsResponse, type OrgGetUserPermissionsResponses, type OrgIsMemberData, type OrgIsMemberErrors, type OrgIsMemberResponses, type OrgIsPublicMemberData, type OrgIsPublicMemberErrors, type OrgIsPublicMemberResponses, type OrgListActionsSecretsData, type OrgListActionsSecretsError, type OrgListActionsSecretsErrors, type OrgListActionsSecretsResponse, type OrgListActionsSecretsResponses, type OrgListActivityFeedsData, type OrgListActivityFeedsError, type OrgListActivityFeedsErrors, type OrgListActivityFeedsResponse, type OrgListActivityFeedsResponses, type OrgListBlockedUsersData, type OrgListBlockedUsersResponse, type OrgListBlockedUsersResponses, type OrgListCurrentUserOrgsData, type OrgListCurrentUserOrgsError, type OrgListCurrentUserOrgsErrors, type OrgListCurrentUserOrgsResponse, type OrgListCurrentUserOrgsResponses, type OrgListHooksData, type OrgListHooksError, type OrgListHooksErrors, type OrgListHooksResponse, type OrgListHooksResponses, type OrgListLabelsData, type OrgListLabelsError, type OrgListLabelsErrors, type OrgListLabelsResponse, type OrgListLabelsResponses, type OrgListMembersData, type OrgListMembersError, type OrgListMembersErrors, type OrgListMembersResponse, type OrgListMembersResponses, type OrgListPublicMembersData, type OrgListPublicMembersError, type OrgListPublicMembersErrors, type OrgListPublicMembersResponse, type OrgListPublicMembersResponses, type OrgListQuotaArtifactsData, type OrgListQuotaArtifactsError, type OrgListQuotaArtifactsErrors, type OrgListQuotaArtifactsResponse, type OrgListQuotaArtifactsResponses, type OrgListQuotaAttachmentsData, type OrgListQuotaAttachmentsError, type OrgListQuotaAttachmentsErrors, type OrgListQuotaAttachmentsResponse, type OrgListQuotaAttachmentsResponses, type OrgListQuotaPackagesData, type OrgListQuotaPackagesError, type OrgListQuotaPackagesErrors, type OrgListQuotaPackagesResponse, type OrgListQuotaPackagesResponses, type OrgListReposData, type OrgListReposError, type OrgListReposErrors, type OrgListReposResponse, type OrgListReposResponses, type OrgListTeamActivityFeedsData, type OrgListTeamActivityFeedsError, type OrgListTeamActivityFeedsErrors, type OrgListTeamActivityFeedsResponse, type OrgListTeamActivityFeedsResponses, type OrgListTeamMemberData, type OrgListTeamMemberError, type OrgListTeamMemberErrors, type OrgListTeamMemberResponse, type OrgListTeamMemberResponses, type OrgListTeamMembersData, type OrgListTeamMembersError, type OrgListTeamMembersErrors, type OrgListTeamMembersResponse, type OrgListTeamMembersResponses, type OrgListTeamRepoData, type OrgListTeamRepoError, type OrgListTeamRepoErrors, type OrgListTeamRepoResponse, type OrgListTeamRepoResponses, type OrgListTeamReposData, type OrgListTeamReposError, type OrgListTeamReposErrors, type OrgListTeamReposResponse, type OrgListTeamReposResponses, type OrgListTeamsData, type OrgListTeamsError, type OrgListTeamsErrors, type OrgListTeamsResponse, type OrgListTeamsResponses, type OrgListUserOrgsData, type OrgListUserOrgsError, type OrgListUserOrgsErrors, type OrgListUserOrgsResponse, type OrgListUserOrgsResponses, type OrgPublicizeMemberData, type OrgPublicizeMemberError, type OrgPublicizeMemberErrors, type OrgPublicizeMemberResponses, type OrgRemoveTeamMemberData, type OrgRemoveTeamMemberError, type OrgRemoveTeamMemberErrors, type OrgRemoveTeamMemberResponses, type OrgRemoveTeamRepositoryData, type OrgRemoveTeamRepositoryError, type OrgRemoveTeamRepositoryErrors, type OrgRemoveTeamRepositoryResponses, type OrgSearchRunJobsData, type OrgSearchRunJobsError, type OrgSearchRunJobsErrors, type OrgSearchRunJobsResponse, type OrgSearchRunJobsResponses, type OrgUnblockUserData, type OrgUnblockUserError, type OrgUnblockUserErrors, type OrgUnblockUserResponses, type OrgUpdateAvatarData, type OrgUpdateAvatarError, type OrgUpdateAvatarErrors, type OrgUpdateAvatarResponses, type Organization, type OrganizationPermissions, type Package, type PackageFile, type PayloadCommit, type PayloadCommitVerification, type PayloadUser, type Permission, type PinIssueData, type PinIssueError, type PinIssueErrors, type PinIssueResponses, type PrBranchInfo, type PublicKey, type PullRequest, type PullRequestMeta, type PullReview, type PullReviewComment, type PullReviewRequestOptions, type PushMirror, type QuotaGroup, type QuotaGroupList, type QuotaInfo, type QuotaRuleInfo, type QuotaUsed, type QuotaUsedArtifact, type QuotaUsedArtifactList, type QuotaUsedAttachment, type QuotaUsedAttachmentList, type QuotaUsedPackage, type QuotaUsedPackageList, type QuotaUsedSize, type QuotaUsedSizeAssets, type QuotaUsedSizeAssetsAttachments, type QuotaUsedSizeAssetsPackages, type QuotaUsedSizeGit, type QuotaUsedSizeRepos, type Reaction, type Reference, type RegistrationToken, type RejectRepoTransferData, type RejectRepoTransferError, type RejectRepoTransferErrors, type RejectRepoTransferResponse, type RejectRepoTransferResponses, type Release, type RenameOrgData, type RenameOrgError, type RenameOrgErrors, type RenameOrgOption, type RenameOrgResponses, type RenameUserOption, type RenderMarkdownData, type RenderMarkdownError, type RenderMarkdownErrors, type RenderMarkdownRawData, type RenderMarkdownRawError, type RenderMarkdownRawErrors, type RenderMarkdownRawResponse, type RenderMarkdownRawResponses, type RenderMarkdownResponse, type RenderMarkdownResponses, type RenderMarkupData, type RenderMarkupError, type RenderMarkupErrors, type RenderMarkupResponse, type RenderMarkupResponses, type ReplaceFlagsOption, type RepoAddCollaboratorData, type RepoAddCollaboratorError, type RepoAddCollaboratorErrors, type RepoAddCollaboratorResponses, type RepoAddFlagData, type RepoAddFlagError, type RepoAddFlagErrors, type RepoAddFlagResponses, type RepoAddPushMirrorData, type RepoAddPushMirrorError, type RepoAddPushMirrorErrors, type RepoAddPushMirrorResponse, type RepoAddPushMirrorResponses, type RepoAddTeamData, type RepoAddTeamError, type RepoAddTeamErrors, type RepoAddTeamResponses, type RepoAddTopicData, type RepoAddTopicError, type RepoAddTopicErrors, type RepoAddTopicResponses, type RepoApplyDiffPatchData, type RepoApplyDiffPatchError, type RepoApplyDiffPatchErrors, type RepoApplyDiffPatchResponse, type RepoApplyDiffPatchResponses, type RepoCancelScheduledAutoMergeData, type RepoCancelScheduledAutoMergeError, type RepoCancelScheduledAutoMergeErrors, type RepoCancelScheduledAutoMergeResponses, type RepoChangeFilesData, type RepoChangeFilesError, type RepoChangeFilesErrors, type RepoChangeFilesResponse, type RepoChangeFilesResponses, type RepoCheckCollaboratorData, type RepoCheckCollaboratorError, type RepoCheckCollaboratorErrors, type RepoCheckCollaboratorResponses, type RepoCheckFlagData, type RepoCheckFlagError, type RepoCheckFlagErrors, type RepoCheckFlagResponses, type RepoCheckTeamData, type RepoCheckTeamError, type RepoCheckTeamErrors, type RepoCheckTeamResponse, type RepoCheckTeamResponses, type RepoCollaboratorPermission, type RepoCommit, type RepoCompareDiffData, type RepoCompareDiffError, type RepoCompareDiffErrors, type RepoCompareDiffResponse, type RepoCompareDiffResponses, type RepoConvertData, type RepoConvertError, type RepoConvertErrors, type RepoConvertResponse, type RepoConvertResponses, type RepoCreateBranchData, type RepoCreateBranchError, type RepoCreateBranchErrors, type RepoCreateBranchProtectionData, type RepoCreateBranchProtectionError, type RepoCreateBranchProtectionErrors, type RepoCreateBranchProtectionResponse, type RepoCreateBranchProtectionResponses, type RepoCreateBranchResponse, type RepoCreateBranchResponses, type RepoCreateFileData, type RepoCreateFileError, type RepoCreateFileErrors, type RepoCreateFileResponse, type RepoCreateFileResponses, type RepoCreateHookData, type RepoCreateHookError, type RepoCreateHookErrors, type RepoCreateHookResponse, type RepoCreateHookResponses, type RepoCreateKeyData, type RepoCreateKeyError, type RepoCreateKeyErrors, type RepoCreateKeyResponse, type RepoCreateKeyResponses, type RepoCreatePullRequestData, type RepoCreatePullRequestError, type RepoCreatePullRequestErrors, type RepoCreatePullRequestResponse, type RepoCreatePullRequestResponses, type RepoCreatePullReviewCommentData, type RepoCreatePullReviewCommentError, type RepoCreatePullReviewCommentErrors, type RepoCreatePullReviewCommentResponse, type RepoCreatePullReviewCommentResponses, type RepoCreatePullReviewData, type RepoCreatePullReviewError, type RepoCreatePullReviewErrors, type RepoCreatePullReviewRequestsData, type RepoCreatePullReviewRequestsError, type RepoCreatePullReviewRequestsErrors, type RepoCreatePullReviewRequestsResponse, type RepoCreatePullReviewRequestsResponses, type RepoCreatePullReviewResponse, type RepoCreatePullReviewResponses, type RepoCreateReleaseAttachmentData, type RepoCreateReleaseAttachmentError, type RepoCreateReleaseAttachmentErrors, type RepoCreateReleaseAttachmentResponse, type RepoCreateReleaseAttachmentResponses, type RepoCreateReleaseData, type RepoCreateReleaseError, type RepoCreateReleaseErrors, type RepoCreateReleaseResponse, type RepoCreateReleaseResponses, type RepoCreateStatusData, type RepoCreateStatusError, type RepoCreateStatusErrors, type RepoCreateStatusResponse, type RepoCreateStatusResponses, type RepoCreateTagData, type RepoCreateTagError, type RepoCreateTagErrors, type RepoCreateTagProtectionData, type RepoCreateTagProtectionError, type RepoCreateTagProtectionErrors, type RepoCreateTagProtectionResponse, type RepoCreateTagProtectionResponses, type RepoCreateTagResponse, type RepoCreateTagResponses, type RepoCreateWikiPageData, type RepoCreateWikiPageError, type RepoCreateWikiPageErrors, type RepoCreateWikiPageResponse, type RepoCreateWikiPageResponses, type RepoDeleteAllFlagsData, type RepoDeleteAllFlagsError, type RepoDeleteAllFlagsErrors, type RepoDeleteAllFlagsResponses, type RepoDeleteAvatarData, type RepoDeleteAvatarError, type RepoDeleteAvatarErrors, type RepoDeleteAvatarResponses, type RepoDeleteBranchData, type RepoDeleteBranchError, type RepoDeleteBranchErrors, type RepoDeleteBranchProtectionData, type RepoDeleteBranchProtectionError, type RepoDeleteBranchProtectionErrors, type RepoDeleteBranchProtectionResponses, type RepoDeleteBranchResponses, type RepoDeleteCollaboratorData, type RepoDeleteCollaboratorError, type RepoDeleteCollaboratorErrors, type RepoDeleteCollaboratorResponses, type RepoDeleteData, type RepoDeleteError, type RepoDeleteErrors, type RepoDeleteFileData, type RepoDeleteFileError, type RepoDeleteFileErrors, type RepoDeleteFileResponse, type RepoDeleteFileResponses, type RepoDeleteFlagData, type RepoDeleteFlagError, type RepoDeleteFlagErrors, type RepoDeleteFlagResponses, type RepoDeleteGitHookData, type RepoDeleteGitHookError, type RepoDeleteGitHookErrors, type RepoDeleteGitHookResponses, type RepoDeleteHookData, type RepoDeleteHookError, type RepoDeleteHookErrors, type RepoDeleteHookResponses, type RepoDeleteKeyData, type RepoDeleteKeyError, type RepoDeleteKeyErrors, type RepoDeleteKeyResponses, type RepoDeletePullReviewCommentData, type RepoDeletePullReviewCommentError, type RepoDeletePullReviewCommentErrors, type RepoDeletePullReviewCommentResponses, type RepoDeletePullReviewData, type RepoDeletePullReviewError, type RepoDeletePullReviewErrors, type RepoDeletePullReviewRequestsData, type RepoDeletePullReviewRequestsError, type RepoDeletePullReviewRequestsErrors, type RepoDeletePullReviewRequestsResponses, type RepoDeletePullReviewResponses, type RepoDeletePushMirrorData, type RepoDeletePushMirrorError, type RepoDeletePushMirrorErrors, type RepoDeletePushMirrorResponses, type RepoDeleteReleaseAttachmentData, type RepoDeleteReleaseAttachmentError, type RepoDeleteReleaseAttachmentErrors, type RepoDeleteReleaseAttachmentResponses, type RepoDeleteReleaseByTagData, type RepoDeleteReleaseByTagError, type RepoDeleteReleaseByTagErrors, type RepoDeleteReleaseByTagResponses, type RepoDeleteReleaseData, type RepoDeleteReleaseError, type RepoDeleteReleaseErrors, type RepoDeleteReleaseResponses, type RepoDeleteResponses, type RepoDeleteTagData, type RepoDeleteTagError, type RepoDeleteTagErrors, type RepoDeleteTagProtectionData, type RepoDeleteTagProtectionError, type RepoDeleteTagProtectionErrors, type RepoDeleteTagProtectionResponses, type RepoDeleteTagResponses, type RepoDeleteTeamData, type RepoDeleteTeamError, type RepoDeleteTeamErrors, type RepoDeleteTeamResponses, type RepoDeleteTopicData, type RepoDeleteTopicError, type RepoDeleteTopicErrors, type RepoDeleteTopicResponses, type RepoDeleteWikiPageData, type RepoDeleteWikiPageError, type RepoDeleteWikiPageErrors, type RepoDeleteWikiPageResponses, type RepoDismissPullReviewData, type RepoDismissPullReviewError, type RepoDismissPullReviewErrors, type RepoDismissPullReviewResponse, type RepoDismissPullReviewResponses, type RepoDownloadCommitDiffOrPatchData, type RepoDownloadCommitDiffOrPatchError, type RepoDownloadCommitDiffOrPatchErrors, type RepoDownloadCommitDiffOrPatchResponse, type RepoDownloadCommitDiffOrPatchResponses, type RepoDownloadPullDiffOrPatchData, type RepoDownloadPullDiffOrPatchError, type RepoDownloadPullDiffOrPatchErrors, type RepoDownloadPullDiffOrPatchResponse, type RepoDownloadPullDiffOrPatchResponses, type RepoEditBranchProtectionData, type RepoEditBranchProtectionError, type RepoEditBranchProtectionErrors, type RepoEditBranchProtectionResponse, type RepoEditBranchProtectionResponses, type RepoEditData, type RepoEditError, type RepoEditErrors, type RepoEditGitHookData, type RepoEditGitHookError, type RepoEditGitHookErrors, type RepoEditGitHookResponse, type RepoEditGitHookResponses, type RepoEditHookData, type RepoEditHookError, type RepoEditHookErrors, type RepoEditHookResponse, type RepoEditHookResponses, type RepoEditPullRequestData, type RepoEditPullRequestError, type RepoEditPullRequestErrors, type RepoEditPullRequestResponse, type RepoEditPullRequestResponses, type RepoEditReleaseAttachmentData, type RepoEditReleaseAttachmentError, type RepoEditReleaseAttachmentErrors, type RepoEditReleaseAttachmentResponse, type RepoEditReleaseAttachmentResponses, type RepoEditReleaseData, type RepoEditReleaseError, type RepoEditReleaseErrors, type RepoEditReleaseResponse, type RepoEditReleaseResponses, type RepoEditResponse, type RepoEditResponses, type RepoEditTagProtectionData, type RepoEditTagProtectionError, type RepoEditTagProtectionErrors, type RepoEditTagProtectionResponse, type RepoEditTagProtectionResponses, type RepoEditWikiPageData, type RepoEditWikiPageError, type RepoEditWikiPageErrors, type RepoEditWikiPageResponse, type RepoEditWikiPageResponses, type RepoGetAllCommitsData, type RepoGetAllCommitsError, type RepoGetAllCommitsErrors, type RepoGetAllCommitsResponse, type RepoGetAllCommitsResponses, type RepoGetArchiveData, type RepoGetArchiveError, type RepoGetArchiveErrors, type RepoGetArchiveResponse, type RepoGetArchiveResponses, type RepoGetAssigneesData, type RepoGetAssigneesError, type RepoGetAssigneesErrors, type RepoGetAssigneesResponse, type RepoGetAssigneesResponses, type RepoGetBranchData, type RepoGetBranchError, type RepoGetBranchErrors, type RepoGetBranchProtectionData, type RepoGetBranchProtectionError, type RepoGetBranchProtectionErrors, type RepoGetBranchProtectionResponse, type RepoGetBranchProtectionResponses, type RepoGetBranchResponse, type RepoGetBranchResponses, type RepoGetByIdData, type RepoGetByIdError, type RepoGetByIdErrors, type RepoGetByIdResponse, type RepoGetByIdResponses, type RepoGetCombinedStatusByRefData, type RepoGetCombinedStatusByRefError, type RepoGetCombinedStatusByRefErrors, type RepoGetCombinedStatusByRefResponse, type RepoGetCombinedStatusByRefResponses, type RepoGetCommitPullRequestData, type RepoGetCommitPullRequestError, type RepoGetCommitPullRequestErrors, type RepoGetCommitPullRequestResponse, type RepoGetCommitPullRequestResponses, type RepoGetContentsData, type RepoGetContentsError, type RepoGetContentsErrors, type RepoGetContentsListData, type RepoGetContentsListError, type RepoGetContentsListErrors, type RepoGetContentsListResponse, type RepoGetContentsListResponses, type RepoGetContentsResponse, type RepoGetContentsResponses, type RepoGetData, type RepoGetEditorConfigData, type RepoGetEditorConfigError, type RepoGetEditorConfigErrors, type RepoGetEditorConfigResponse, type RepoGetEditorConfigResponses, type RepoGetError, type RepoGetErrors, type RepoGetGitHookData, type RepoGetGitHookError, type RepoGetGitHookErrors, type RepoGetGitHookResponse, type RepoGetGitHookResponses, type RepoGetHookData, type RepoGetHookError, type RepoGetHookErrors, type RepoGetHookResponse, type RepoGetHookResponses, type RepoGetIssueConfigData, type RepoGetIssueConfigError, type RepoGetIssueConfigErrors, type RepoGetIssueConfigResponse, type RepoGetIssueConfigResponses, type RepoGetIssueTemplatesData, type RepoGetIssueTemplatesError, type RepoGetIssueTemplatesErrors, type RepoGetIssueTemplatesResponse, type RepoGetIssueTemplatesResponses, type RepoGetKeyData, type RepoGetKeyError, type RepoGetKeyErrors, type RepoGetKeyResponse, type RepoGetKeyResponses, type RepoGetLanguagesData, type RepoGetLanguagesError, type RepoGetLanguagesErrors, type RepoGetLanguagesResponse, type RepoGetLanguagesResponses, type RepoGetLatestReleaseData, type RepoGetLatestReleaseError, type RepoGetLatestReleaseErrors, type RepoGetLatestReleaseResponse, type RepoGetLatestReleaseResponses, type RepoGetNoteData, type RepoGetNoteError, type RepoGetNoteErrors, type RepoGetNoteResponse, type RepoGetNoteResponses, type RepoGetPullRequestByBaseHeadData, type RepoGetPullRequestByBaseHeadError, type RepoGetPullRequestByBaseHeadErrors, type RepoGetPullRequestByBaseHeadResponse, type RepoGetPullRequestByBaseHeadResponses, type RepoGetPullRequestCommitsData, type RepoGetPullRequestCommitsError, type RepoGetPullRequestCommitsErrors, type RepoGetPullRequestCommitsResponse, type RepoGetPullRequestCommitsResponses, type RepoGetPullRequestData, type RepoGetPullRequestError, type RepoGetPullRequestErrors, type RepoGetPullRequestFilesData, type RepoGetPullRequestFilesError, type RepoGetPullRequestFilesErrors, type RepoGetPullRequestFilesResponse, type RepoGetPullRequestFilesResponses, type RepoGetPullRequestResponse, type RepoGetPullRequestResponses, type RepoGetPullReviewCommentData, type RepoGetPullReviewCommentError, type RepoGetPullReviewCommentErrors, type RepoGetPullReviewCommentResponse, type RepoGetPullReviewCommentResponses, type RepoGetPullReviewCommentsData, type RepoGetPullReviewCommentsError, type RepoGetPullReviewCommentsErrors, type RepoGetPullReviewCommentsResponse, type RepoGetPullReviewCommentsResponses, type RepoGetPullReviewData, type RepoGetPullReviewError, type RepoGetPullReviewErrors, type RepoGetPullReviewResponse, type RepoGetPullReviewResponses, type RepoGetPushMirrorByRemoteNameData, type RepoGetPushMirrorByRemoteNameError, type RepoGetPushMirrorByRemoteNameErrors, type RepoGetPushMirrorByRemoteNameResponse, type RepoGetPushMirrorByRemoteNameResponses, type RepoGetRawFileData, type RepoGetRawFileError, type RepoGetRawFileErrors, type RepoGetRawFileOrLfsData, type RepoGetRawFileOrLfsError, type RepoGetRawFileOrLfsErrors, type RepoGetRawFileOrLfsResponses, type RepoGetRawFileResponses, type RepoGetReleaseAttachmentData, type RepoGetReleaseAttachmentError, type RepoGetReleaseAttachmentErrors, type RepoGetReleaseAttachmentResponse, type RepoGetReleaseAttachmentResponses, type RepoGetReleaseByTagData, type RepoGetReleaseByTagError, type RepoGetReleaseByTagErrors, type RepoGetReleaseByTagResponse, type RepoGetReleaseByTagResponses, type RepoGetReleaseData, type RepoGetReleaseError, type RepoGetReleaseErrors, type RepoGetReleaseResponse, type RepoGetReleaseResponses, type RepoGetRepoPermissionsData, type RepoGetRepoPermissionsError, type RepoGetRepoPermissionsErrors, type RepoGetRepoPermissionsResponse, type RepoGetRepoPermissionsResponses, type RepoGetResponse, type RepoGetResponses, type RepoGetReviewersData, type RepoGetReviewersError, type RepoGetReviewersErrors, type RepoGetReviewersResponse, type RepoGetReviewersResponses, type RepoGetRunnerRegistrationTokenData, type RepoGetRunnerRegistrationTokenResponse, type RepoGetRunnerRegistrationTokenResponses, type RepoGetSingleCommitData, type RepoGetSingleCommitError, type RepoGetSingleCommitErrors, type RepoGetSingleCommitResponse, type RepoGetSingleCommitResponses, type RepoGetTagData, type RepoGetTagError, type RepoGetTagErrors, type RepoGetTagProtectionData, type RepoGetTagProtectionError, type RepoGetTagProtectionErrors, type RepoGetTagProtectionResponse, type RepoGetTagProtectionResponses, type RepoGetTagResponse, type RepoGetTagResponses, type RepoGetWikiPageData, type RepoGetWikiPageError, type RepoGetWikiPageErrors, type RepoGetWikiPageResponse, type RepoGetWikiPageResponses, type RepoGetWikiPageRevisionsData, type RepoGetWikiPageRevisionsError, type RepoGetWikiPageRevisionsErrors, type RepoGetWikiPageRevisionsResponse, type RepoGetWikiPageRevisionsResponses, type RepoGetWikiPagesData, type RepoGetWikiPagesError, type RepoGetWikiPagesErrors, type RepoGetWikiPagesResponse, type RepoGetWikiPagesResponses, type RepoListActionsSecretsData, type RepoListActionsSecretsError, type RepoListActionsSecretsErrors, type RepoListActionsSecretsResponse, type RepoListActionsSecretsResponses, type RepoListActivityFeedsData, type RepoListActivityFeedsError, type RepoListActivityFeedsErrors, type RepoListActivityFeedsResponse, type RepoListActivityFeedsResponses, type RepoListAllGitRefsData, type RepoListAllGitRefsError, type RepoListAllGitRefsErrors, type RepoListAllGitRefsResponse, type RepoListAllGitRefsResponses, type RepoListBranchProtectionData, type RepoListBranchProtectionResponse, type RepoListBranchProtectionResponses, type RepoListBranchesData, type RepoListBranchesResponse, type RepoListBranchesResponses, type RepoListCollaboratorsData, type RepoListCollaboratorsError, type RepoListCollaboratorsErrors, type RepoListCollaboratorsResponse, type RepoListCollaboratorsResponses, type RepoListFlagsData, type RepoListFlagsError, type RepoListFlagsErrors, type RepoListFlagsResponse, type RepoListFlagsResponses, type RepoListGitHooksData, type RepoListGitHooksError, type RepoListGitHooksErrors, type RepoListGitHooksResponse, type RepoListGitHooksResponses, type RepoListGitRefsData, type RepoListGitRefsError, type RepoListGitRefsErrors, type RepoListGitRefsResponse, type RepoListGitRefsResponses, type RepoListHooksData, type RepoListHooksError, type RepoListHooksErrors, type RepoListHooksResponse, type RepoListHooksResponses, type RepoListKeysData, type RepoListKeysError, type RepoListKeysErrors, type RepoListKeysResponse, type RepoListKeysResponses, type RepoListPinnedIssuesData, type RepoListPinnedIssuesError, type RepoListPinnedIssuesErrors, type RepoListPinnedIssuesResponse, type RepoListPinnedIssuesResponses, type RepoListPinnedPullRequestsData, type RepoListPinnedPullRequestsError, type RepoListPinnedPullRequestsErrors, type RepoListPinnedPullRequestsResponse, type RepoListPinnedPullRequestsResponses, type RepoListPullRequestsData, type RepoListPullRequestsError, type RepoListPullRequestsErrors, type RepoListPullRequestsResponse, type RepoListPullRequestsResponses, type RepoListPullReviewsData, type RepoListPullReviewsError, type RepoListPullReviewsErrors, type RepoListPullReviewsResponse, type RepoListPullReviewsResponses, type RepoListPushMirrorsData, type RepoListPushMirrorsError, type RepoListPushMirrorsErrors, type RepoListPushMirrorsResponse, type RepoListPushMirrorsResponses, type RepoListReleaseAttachmentsData, type RepoListReleaseAttachmentsError, type RepoListReleaseAttachmentsErrors, type RepoListReleaseAttachmentsResponse, type RepoListReleaseAttachmentsResponses, type RepoListReleasesData, type RepoListReleasesError, type RepoListReleasesErrors, type RepoListReleasesResponse, type RepoListReleasesResponses, type RepoListStargazersData, type RepoListStargazersError, type RepoListStargazersErrors, type RepoListStargazersResponse, type RepoListStargazersResponses, type RepoListStatusesByRefData, type RepoListStatusesByRefError, type RepoListStatusesByRefErrors, type RepoListStatusesByRefResponse, type RepoListStatusesByRefResponses, type RepoListStatusesData, type RepoListStatusesError, type RepoListStatusesErrors, type RepoListStatusesResponse, type RepoListStatusesResponses, type RepoListSubscribersData, type RepoListSubscribersError, type RepoListSubscribersErrors, type RepoListSubscribersResponse, type RepoListSubscribersResponses, type RepoListTagProtectionData, type RepoListTagProtectionResponse, type RepoListTagProtectionResponses, type RepoListTagsData, type RepoListTagsError, type RepoListTagsErrors, type RepoListTagsResponse, type RepoListTagsResponses, type RepoListTeamsData, type RepoListTeamsError, type RepoListTeamsErrors, type RepoListTeamsResponse, type RepoListTeamsResponses, type RepoListTopicsData, type RepoListTopicsError, type RepoListTopicsErrors, type RepoListTopicsResponse, type RepoListTopicsResponses, type RepoMergePullRequestData, type RepoMergePullRequestError, type RepoMergePullRequestErrors, type RepoMergePullRequestResponses, type RepoMigrateData, type RepoMigrateError, type RepoMigrateErrors, type RepoMigrateResponse, type RepoMigrateResponses, type RepoMirrorSyncData, type RepoMirrorSyncError, type RepoMirrorSyncErrors, type RepoMirrorSyncResponses, type RepoNewPinAllowedData, type RepoNewPinAllowedError, type RepoNewPinAllowedErrors, type RepoNewPinAllowedResponse, type RepoNewPinAllowedResponses, type RepoPullRequestIsMergedData, type RepoPullRequestIsMergedErrors, type RepoPullRequestIsMergedResponses, type RepoPushMirrorSyncData, type RepoPushMirrorSyncError, type RepoPushMirrorSyncErrors, type RepoPushMirrorSyncResponses, type RepoRemoveNoteData, type RepoRemoveNoteError, type RepoRemoveNoteErrors, type RepoRemoveNoteResponses, type RepoReplaceAllFlagsData, type RepoReplaceAllFlagsError, type RepoReplaceAllFlagsErrors, type RepoReplaceAllFlagsResponses, type RepoSearchData, type RepoSearchError, type RepoSearchErrors, type RepoSearchResponse, type RepoSearchResponses, type RepoSearchRunJobsData, type RepoSearchRunJobsError, type RepoSearchRunJobsErrors, type RepoSearchRunJobsResponse, type RepoSearchRunJobsResponses, type RepoSetNoteData, type RepoSetNoteError, type RepoSetNoteErrors, type RepoSetNoteResponse, type RepoSetNoteResponses, type RepoSigningKeyData, type RepoSigningKeyResponse, type RepoSigningKeyResponses, type RepoSubmitPullReviewData, type RepoSubmitPullReviewError, type RepoSubmitPullReviewErrors, type RepoSubmitPullReviewResponse, type RepoSubmitPullReviewResponses, type RepoSyncForkBranchData, type RepoSyncForkBranchError, type RepoSyncForkBranchErrors, type RepoSyncForkBranchInfoData, type RepoSyncForkBranchInfoError, type RepoSyncForkBranchInfoErrors, type RepoSyncForkBranchInfoResponse, type RepoSyncForkBranchInfoResponses, type RepoSyncForkBranchResponses, type RepoSyncForkDefaultData, type RepoSyncForkDefaultError, type RepoSyncForkDefaultErrors, type RepoSyncForkDefaultInfoData, type RepoSyncForkDefaultInfoError, type RepoSyncForkDefaultInfoErrors, type RepoSyncForkDefaultInfoResponse, type RepoSyncForkDefaultInfoResponses, type RepoSyncForkDefaultResponses, type RepoTestHookData, type RepoTestHookError, type RepoTestHookErrors, type RepoTestHookResponses, type RepoTopicOptions, type RepoTrackedTimesData, type RepoTrackedTimesError, type RepoTrackedTimesErrors, type RepoTrackedTimesResponse, type RepoTrackedTimesResponses, type RepoTransfer, type RepoTransferData, type RepoTransferError, type RepoTransferErrors, type RepoTransferResponse, type RepoTransferResponses, type RepoUnDismissPullReviewData, type RepoUnDismissPullReviewError, type RepoUnDismissPullReviewErrors, type RepoUnDismissPullReviewResponse, type RepoUnDismissPullReviewResponses, type RepoUpdateAvatarData, type RepoUpdateAvatarError, type RepoUpdateAvatarErrors, type RepoUpdateAvatarResponses, type RepoUpdateBranchData, type RepoUpdateBranchError, type RepoUpdateBranchErrors, type RepoUpdateBranchResponses, type RepoUpdateFileData, type RepoUpdateFileError, type RepoUpdateFileErrors, type RepoUpdateFileResponse, type RepoUpdateFileResponses, type RepoUpdatePullRequestData, type RepoUpdatePullRequestError, type RepoUpdatePullRequestErrors, type RepoUpdatePullRequestResponses, type RepoUpdateTopicsData, type RepoUpdateTopicsError, type RepoUpdateTopicsErrors, type RepoUpdateTopicsResponses, type RepoValidateIssueConfigData, type RepoValidateIssueConfigError, type RepoValidateIssueConfigErrors, type RepoValidateIssueConfigResponse, type RepoValidateIssueConfigResponses, type Repository, type RepositoryMeta, type ReviewStateType, type SearchResults, type Secret, type ServerVersion, type SetUserQuotaGroupsOptions, type StateType, type StopWatch, type SubmitPullReviewOptions, type SyncForkInfo, type Tag, type TagArchiveDownloadCount, type TagProtection, type Team, type TeamSearchData, type TeamSearchError, type TeamSearchErrors, type TeamSearchResponse, type TeamSearchResponses, type TimeStamp, type TimelineComment, type TopicName, type TopicResponse, type TopicSearchData, type TopicSearchError, type TopicSearchErrors, type TopicSearchResponse, type TopicSearchResponses, type TrackedTime, type TransferRepoOption, type UnlinkPackageData, type UnlinkPackageError, type UnlinkPackageErrors, type UnlinkPackageResponses, type UnpinIssueData, type UnpinIssueError, type UnpinIssueErrors, type UnpinIssueResponses, type UpdateBranchRepoOption, type UpdateFileOptions, type UpdateOrgSecretData, type UpdateOrgSecretError, type UpdateOrgSecretErrors, type UpdateOrgSecretResponses, type UpdateOrgVariableData, type UpdateOrgVariableError, type UpdateOrgVariableErrors, type UpdateOrgVariableResponses, type UpdateRepoAvatarOption, type UpdateRepoSecretData, type UpdateRepoSecretError, type UpdateRepoSecretErrors, type UpdateRepoSecretResponses, type UpdateRepoVariableData, type UpdateRepoVariableError, type UpdateRepoVariableErrors, type UpdateRepoVariableResponses, type UpdateUserAvatarOption, type UpdateUserSecretData, type UpdateUserSecretError, type UpdateUserSecretErrors, type UpdateUserSecretResponses, type UpdateUserSettingsData, type UpdateUserSettingsError, type UpdateUserSettingsErrors, type UpdateUserSettingsResponse, type UpdateUserSettingsResponses, type UpdateUserVariableData, type UpdateUserVariableError, type UpdateUserVariableErrors, type UpdateUserVariableResponses, type UpdateVariableOption, type User, type UserAddEmailData, type UserAddEmailError, type UserAddEmailErrors, type UserAddEmailResponse, type UserAddEmailResponses, type UserBlockUserData, type UserBlockUserError, type UserBlockUserErrors, type UserBlockUserResponses, type UserCheckFollowingData, type UserCheckFollowingError, type UserCheckFollowingErrors, type UserCheckFollowingResponses, type UserCheckQuotaData, type UserCheckQuotaError, type UserCheckQuotaErrors, type UserCheckQuotaResponse, type UserCheckQuotaResponses, type UserCreateHookData, type UserCreateHookError, type UserCreateHookErrors, type UserCreateHookResponse, type UserCreateHookResponses, type UserCreateOAuth2ApplicationData, type UserCreateOAuth2ApplicationError, type UserCreateOAuth2ApplicationErrors, type UserCreateOAuth2ApplicationResponse, type UserCreateOAuth2ApplicationResponses, type UserCreateTokenData, type UserCreateTokenError, type UserCreateTokenErrors, type UserCreateTokenResponse, type UserCreateTokenResponses, type UserCurrentCheckFollowingData, type UserCurrentCheckFollowingError, type UserCurrentCheckFollowingErrors, type UserCurrentCheckFollowingResponses, type UserCurrentCheckStarringData, type UserCurrentCheckStarringError, type UserCurrentCheckStarringErrors, type UserCurrentCheckStarringResponses, type UserCurrentCheckSubscriptionData, type UserCurrentCheckSubscriptionErrors, type UserCurrentCheckSubscriptionResponse, type UserCurrentCheckSubscriptionResponses, type UserCurrentDeleteFollowData, type UserCurrentDeleteFollowError, type UserCurrentDeleteFollowErrors, type UserCurrentDeleteFollowResponses, type UserCurrentDeleteGpgKeyData, type UserCurrentDeleteGpgKeyError, type UserCurrentDeleteGpgKeyErrors, type UserCurrentDeleteGpgKeyResponses, type UserCurrentDeleteKeyData, type UserCurrentDeleteKeyError, type UserCurrentDeleteKeyErrors, type UserCurrentDeleteKeyResponses, type UserCurrentDeleteStarData, type UserCurrentDeleteStarError, type UserCurrentDeleteStarErrors, type UserCurrentDeleteStarResponses, type UserCurrentDeleteSubscriptionData, type UserCurrentDeleteSubscriptionError, type UserCurrentDeleteSubscriptionErrors, type UserCurrentDeleteSubscriptionResponses, type UserCurrentGetGpgKeyData, type UserCurrentGetGpgKeyError, type UserCurrentGetGpgKeyErrors, type UserCurrentGetGpgKeyResponse, type UserCurrentGetGpgKeyResponses, type UserCurrentGetKeyData, type UserCurrentGetKeyError, type UserCurrentGetKeyErrors, type UserCurrentGetKeyResponse, type UserCurrentGetKeyResponses, type UserCurrentListFollowersData, type UserCurrentListFollowersError, type UserCurrentListFollowersErrors, type UserCurrentListFollowersResponse, type UserCurrentListFollowersResponses, type UserCurrentListFollowingData, type UserCurrentListFollowingError, type UserCurrentListFollowingErrors, type UserCurrentListFollowingResponse, type UserCurrentListFollowingResponses, type UserCurrentListGpgKeysData, type UserCurrentListGpgKeysError, type UserCurrentListGpgKeysErrors, type UserCurrentListGpgKeysResponse, type UserCurrentListGpgKeysResponses, type UserCurrentListKeysData, type UserCurrentListKeysError, type UserCurrentListKeysErrors, type UserCurrentListKeysResponse, type UserCurrentListKeysResponses, type UserCurrentListReposData, type UserCurrentListReposError, type UserCurrentListReposErrors, type UserCurrentListReposResponse, type UserCurrentListReposResponses, type UserCurrentListStarredData, type UserCurrentListStarredError, type UserCurrentListStarredErrors, type UserCurrentListStarredResponse, type UserCurrentListStarredResponses, type UserCurrentListSubscriptionsData, type UserCurrentListSubscriptionsError, type UserCurrentListSubscriptionsErrors, type UserCurrentListSubscriptionsResponse, type UserCurrentListSubscriptionsResponses, type UserCurrentPostGpgKeyData, type UserCurrentPostGpgKeyError, type UserCurrentPostGpgKeyErrors, type UserCurrentPostGpgKeyResponse, type UserCurrentPostGpgKeyResponses, type UserCurrentPostKeyData, type UserCurrentPostKeyError, type UserCurrentPostKeyErrors, type UserCurrentPostKeyResponse, type UserCurrentPostKeyResponses, type UserCurrentPutFollowData, type UserCurrentPutFollowError, type UserCurrentPutFollowErrors, type UserCurrentPutFollowResponses, type UserCurrentPutStarData, type UserCurrentPutStarError, type UserCurrentPutStarErrors, type UserCurrentPutStarResponses, type UserCurrentPutSubscriptionData, type UserCurrentPutSubscriptionError, type UserCurrentPutSubscriptionErrors, type UserCurrentPutSubscriptionResponse, type UserCurrentPutSubscriptionResponses, type UserCurrentTrackedTimesData, type UserCurrentTrackedTimesError, type UserCurrentTrackedTimesErrors, type UserCurrentTrackedTimesResponse, type UserCurrentTrackedTimesResponses, type UserDeleteAccessTokenData, type UserDeleteAccessTokenError, type UserDeleteAccessTokenErrors, type UserDeleteAccessTokenResponses, type UserDeleteAvatarData, type UserDeleteAvatarError, type UserDeleteAvatarErrors, type UserDeleteAvatarResponses, type UserDeleteEmailData, type UserDeleteEmailError, type UserDeleteEmailErrors, type UserDeleteEmailResponses, type UserDeleteHookData, type UserDeleteHookError, type UserDeleteHookErrors, type UserDeleteHookResponses, type UserDeleteOAuth2ApplicationData, type UserDeleteOAuth2ApplicationError, type UserDeleteOAuth2ApplicationErrors, type UserDeleteOAuth2ApplicationResponses, type UserEditHookData, type UserEditHookError, type UserEditHookErrors, type UserEditHookResponse, type UserEditHookResponses, type UserGetCurrentData, type UserGetCurrentError, type UserGetCurrentErrors, type UserGetCurrentResponse, type UserGetCurrentResponses, type UserGetData, type UserGetError, type UserGetErrors, type UserGetHeatmapDataData, type UserGetHeatmapDataError, type UserGetHeatmapDataErrors, type UserGetHeatmapDataResponse, type UserGetHeatmapDataResponses, type UserGetHookData, type UserGetHookError, type UserGetHookErrors, type UserGetHookResponse, type UserGetHookResponses, type UserGetOAuth2ApplicationData, type UserGetOAuth2ApplicationError, type UserGetOAuth2ApplicationErrors, type UserGetOAuth2ApplicationResponse, type UserGetOAuth2ApplicationResponses, type UserGetOAuth2ApplicationsData, type UserGetOAuth2ApplicationsError, type UserGetOAuth2ApplicationsErrors, type UserGetOAuth2ApplicationsResponse, type UserGetOAuth2ApplicationsResponses, type UserGetQuotaData, type UserGetQuotaError, type UserGetQuotaErrors, type UserGetQuotaResponse, type UserGetQuotaResponses, type UserGetResponse, type UserGetResponses, type UserGetRunnerRegistrationTokenData, type UserGetRunnerRegistrationTokenError, type UserGetRunnerRegistrationTokenErrors, type UserGetRunnerRegistrationTokenResponse, type UserGetRunnerRegistrationTokenResponses, type UserGetStopWatchesData, type UserGetStopWatchesError, type UserGetStopWatchesErrors, type UserGetStopWatchesResponse, type UserGetStopWatchesResponses, type UserGetTokensData, type UserGetTokensError, type UserGetTokensErrors, type UserGetTokensResponse, type UserGetTokensResponses, type UserHeatmapData, type UserListActivityFeedsData, type UserListActivityFeedsError, type UserListActivityFeedsErrors, type UserListActivityFeedsResponse, type UserListActivityFeedsResponses, type UserListBlockedUsersData, type UserListBlockedUsersError, type UserListBlockedUsersErrors, type UserListBlockedUsersResponse, type UserListBlockedUsersResponses, type UserListEmailsData, type UserListEmailsError, type UserListEmailsErrors, type UserListEmailsResponse, type UserListEmailsResponses, type UserListFollowersData, type UserListFollowersError, type UserListFollowersErrors, type UserListFollowersResponse, type UserListFollowersResponses, type UserListFollowingData, type UserListFollowingError, type UserListFollowingErrors, type UserListFollowingResponse, type UserListFollowingResponses, type UserListGpgKeysData, type UserListGpgKeysError, type UserListGpgKeysErrors, type UserListGpgKeysResponse, type UserListGpgKeysResponses, type UserListHooksData, type UserListHooksError, type UserListHooksErrors, type UserListHooksResponse, type UserListHooksResponses, type UserListKeysData, type UserListKeysError, type UserListKeysErrors, type UserListKeysResponse, type UserListKeysResponses, type UserListQuotaArtifactsData, type UserListQuotaArtifactsError, type UserListQuotaArtifactsErrors, type UserListQuotaArtifactsResponse, type UserListQuotaArtifactsResponses, type UserListQuotaAttachmentsData, type UserListQuotaAttachmentsError, type UserListQuotaAttachmentsErrors, type UserListQuotaAttachmentsResponse, type UserListQuotaAttachmentsResponses, type UserListQuotaPackagesData, type UserListQuotaPackagesError, type UserListQuotaPackagesErrors, type UserListQuotaPackagesResponse, type UserListQuotaPackagesResponses, type UserListReposData, type UserListReposError, type UserListReposErrors, type UserListReposResponse, type UserListReposResponses, type UserListStarredData, type UserListStarredError, type UserListStarredErrors, type UserListStarredResponse, type UserListStarredResponses, type UserListSubscriptionsData, type UserListSubscriptionsError, type UserListSubscriptionsErrors, type UserListSubscriptionsResponse, type UserListSubscriptionsResponses, type UserListTeamsData, type UserListTeamsError, type UserListTeamsErrors, type UserListTeamsResponse, type UserListTeamsResponses, type UserSearchData, type UserSearchResponse, type UserSearchResponses, type UserSearchRunJobsData, type UserSearchRunJobsError, type UserSearchRunJobsErrors, type UserSearchRunJobsResponse, type UserSearchRunJobsResponses, type UserSettings, type UserSettingsOptions, type UserTrackedTimesData, type UserTrackedTimesError, type UserTrackedTimesErrors, type UserTrackedTimesResponse, type UserTrackedTimesResponses, type UserUnblockUserData, type UserUnblockUserError, type UserUnblockUserErrors, type UserUnblockUserResponses, type UserUpdateAvatarData, type UserUpdateAvatarError, type UserUpdateAvatarErrors, type UserUpdateAvatarResponses, type UserUpdateOAuth2ApplicationData, type UserUpdateOAuth2ApplicationError, type UserUpdateOAuth2ApplicationErrors, type UserUpdateOAuth2ApplicationResponse, type UserUpdateOAuth2ApplicationResponses, type UserVerifyGpgKeyData, type UserVerifyGpgKeyError, type UserVerifyGpgKeyErrors, type UserVerifyGpgKeyResponse, type UserVerifyGpgKeyResponses, type VerifyGpgKeyOption, type WatchInfo, type WikiCommit, type WikiCommitList, type WikiPage, type WikiPageMetaData, acceptRepoTransfer, actionRun, activitypubInstanceActor, activitypubInstanceActorInbox, activitypubInstanceActorOutbox, activitypubPerson, activitypubPersonActivity, activitypubPersonActivityNote, activitypubPersonFeed, activitypubPersonInbox, activitypubRepository, activitypubRepositoryInbox, activitypubRepositoryOutbox, adminAddRuleToQuotaGroup, adminAddUserToQuotaGroup, adminAdoptRepository, adminCreateHook, adminCreateOrg, adminCreatePublicKey, adminCreateQuotaGroup, adminCreateQuotaRule, adminCreateRepo, adminCreateUser, adminCronList, adminCronRun, adminDeleteHook, adminDeleteQuotaGroup, adminDeleteQuotaRule, adminDeleteUnadoptedRepository, adminDeleteUser, adminDeleteUserEmails, adminDeleteUserPublicKey, adminEditHook, adminEditQuotaRule, adminEditUser, adminGetAllEmails, adminGetAllOrgs, adminGetHook, adminGetQuotaGroup, adminGetQuotaRule, adminGetRunnerRegistrationToken, adminGetUserQuota, adminListHooks, adminListQuotaGroups, adminListQuotaRules, adminListUserEmails, adminListUsersInQuotaGroup, adminRemoveRuleFromQuotaGroup, adminRemoveUserFromQuotaGroup, adminRenameUser, adminSearchEmails, adminSearchRunJobs, adminSearchUsers, adminSetUserQuotaGroups, adminUnadoptedList, createCurrentUserRepo, createFork, createOrgRepo, createOrgRepoDeprecated, createOrgVariable, createRepoVariable, createUserVariable, deleteOrgSecret, deleteOrgVariable, deletePackage, deleteRepoSecret, deleteRepoVariable, deleteUserSecret, deleteUserVariable, dispatchWorkflow, generateRepo, getAnnotatedTag, getBlob, getBlobs, getGeneralApiSettings, getGeneralAttachmentSettings, getGeneralRepositorySettings, getGeneralUiSettings, getGitignoreTemplateInfo, getLabelTemplateInfo, getLicenseTemplateInfo, getNodeInfo, getOrgVariable, getOrgVariablesList, getPackage, getRepoVariable, getRepoVariablesList, getSigningKey, getSshSigningKey, getTree, getUserSettings, getUserVariable, getUserVariablesList, getVerificationToken, getVersion, issueAddLabel, issueAddSubscription, issueAddTime, issueCheckSubscription, issueClearLabels, issueCreateComment, issueCreateIssue, issueCreateIssueAttachment, issueCreateIssueBlocking, issueCreateIssueCommentAttachment, issueCreateIssueDependencies, issueCreateLabel, issueCreateMilestone, issueDelete, issueDeleteComment, issueDeleteCommentDeprecated, issueDeleteCommentReaction, issueDeleteIssueAttachment, issueDeleteIssueCommentAttachment, issueDeleteIssueReaction, issueDeleteLabel, issueDeleteMilestone, issueDeleteStopWatch, issueDeleteSubscription, issueDeleteTime, issueEditComment, issueEditCommentDeprecated, issueEditIssue, issueEditIssueAttachment, issueEditIssueCommentAttachment, issueEditIssueDeadline, issueEditLabel, issueEditMilestone, issueGetComment, issueGetCommentReactions, issueGetComments, issueGetCommentsAndTimeline, issueGetIssue, issueGetIssueAttachment, issueGetIssueCommentAttachment, issueGetIssueReactions, issueGetLabel, issueGetLabels, issueGetMilestone, issueGetMilestonesList, issueGetRepoComments, issueListBlocks, issueListIssueAttachments, issueListIssueCommentAttachments, issueListIssueDependencies, issueListIssues, issueListLabels, issuePostCommentReaction, issuePostIssueReaction, issueRemoveIssueBlocking, issueRemoveIssueDependencies, issueRemoveLabel, issueReplaceLabels, issueResetTime, issueSearchIssues, issueStartStopWatch, issueStopStopWatch, issueSubscriptions, issueTrackedTimes, linkPackage, listActionRuns, listActionTasks, listForks, listGitignoresTemplates, listLabelTemplates, listLicenseTemplates, listPackageFiles, listPackages, moveIssuePin, notifyGetList, notifyGetRepoList, notifyGetThread, notifyNewAvailable, notifyReadList, notifyReadRepoList, notifyReadThread, orgAddTeamMember, orgAddTeamRepository, orgBlockUser, orgCheckQuota, orgConcealMember, orgCreate, orgCreateHook, orgCreateLabel, orgCreateTeam, orgDelete, orgDeleteAvatar, orgDeleteHook, orgDeleteLabel, orgDeleteMember, orgDeleteTeam, orgEdit, orgEditHook, orgEditLabel, orgEditTeam, orgGet, orgGetAll, orgGetHook, orgGetLabel, orgGetQuota, orgGetRunnerRegistrationToken, orgGetTeam, orgGetUserPermissions, orgIsMember, orgIsPublicMember, orgListActionsSecrets, orgListActivityFeeds, orgListBlockedUsers, orgListCurrentUserOrgs, orgListHooks, orgListLabels, orgListMembers, orgListPublicMembers, orgListQuotaArtifacts, orgListQuotaAttachments, orgListQuotaPackages, orgListRepos, orgListTeamActivityFeeds, orgListTeamMember, orgListTeamMembers, orgListTeamRepo, orgListTeamRepos, orgListTeams, orgListUserOrgs, orgPublicizeMember, orgRemoveTeamMember, orgRemoveTeamRepository, orgSearchRunJobs, orgUnblockUser, orgUpdateAvatar, pinIssue, rejectRepoTransfer, renameOrg, renderMarkdown, renderMarkdownRaw, renderMarkup, repoAddCollaborator, repoAddFlag, repoAddPushMirror, repoAddTeam, repoAddTopic, repoApplyDiffPatch, repoCancelScheduledAutoMerge, repoChangeFiles, repoCheckCollaborator, repoCheckFlag, repoCheckTeam, repoCompareDiff, repoConvert, repoCreateBranch, repoCreateBranchProtection, repoCreateFile, repoCreateHook, repoCreateKey, repoCreatePullRequest, repoCreatePullReview, repoCreatePullReviewComment, repoCreatePullReviewRequests, repoCreateRelease, repoCreateReleaseAttachment, repoCreateStatus, repoCreateTag, repoCreateTagProtection, repoCreateWikiPage, repoDelete, repoDeleteAllFlags, repoDeleteAvatar, repoDeleteBranch, repoDeleteBranchProtection, repoDeleteCollaborator, repoDeleteFile, repoDeleteFlag, repoDeleteGitHook, repoDeleteHook, repoDeleteKey, repoDeletePullReview, repoDeletePullReviewComment, repoDeletePullReviewRequests, repoDeletePushMirror, repoDeleteRelease, repoDeleteReleaseAttachment, repoDeleteReleaseByTag, repoDeleteTag, repoDeleteTagProtection, repoDeleteTeam, repoDeleteTopic, repoDeleteWikiPage, repoDismissPullReview, repoDownloadCommitDiffOrPatch, repoDownloadPullDiffOrPatch, repoEdit, repoEditBranchProtection, repoEditGitHook, repoEditHook, repoEditPullRequest, repoEditRelease, repoEditReleaseAttachment, repoEditTagProtection, repoEditWikiPage, repoGet, repoGetAllCommits, repoGetArchive, repoGetAssignees, repoGetBranch, repoGetBranchProtection, repoGetById, repoGetCombinedStatusByRef, repoGetCommitPullRequest, repoGetContents, repoGetContentsList, repoGetEditorConfig, repoGetGitHook, repoGetHook, repoGetIssueConfig, repoGetIssueTemplates, repoGetKey, repoGetLanguages, repoGetLatestRelease, repoGetNote, repoGetPullRequest, repoGetPullRequestByBaseHead, repoGetPullRequestCommits, repoGetPullRequestFiles, repoGetPullReview, repoGetPullReviewComment, repoGetPullReviewComments, repoGetPushMirrorByRemoteName, repoGetRawFile, repoGetRawFileOrLfs, repoGetRelease, repoGetReleaseAttachment, repoGetReleaseByTag, repoGetRepoPermissions, repoGetReviewers, repoGetRunnerRegistrationToken, repoGetSingleCommit, repoGetTag, repoGetTagProtection, repoGetWikiPage, repoGetWikiPageRevisions, repoGetWikiPages, repoListActionsSecrets, repoListActivityFeeds, repoListAllGitRefs, repoListBranchProtection, repoListBranches, repoListCollaborators, repoListFlags, repoListGitHooks, repoListGitRefs, repoListHooks, repoListKeys, repoListPinnedIssues, repoListPinnedPullRequests, repoListPullRequests, repoListPullReviews, repoListPushMirrors, repoListReleaseAttachments, repoListReleases, repoListStargazers, repoListStatuses, repoListStatusesByRef, repoListSubscribers, repoListTagProtection, repoListTags, repoListTeams, repoListTopics, repoMergePullRequest, repoMigrate, repoMirrorSync, repoNewPinAllowed, repoPullRequestIsMerged, repoPushMirrorSync, repoRemoveNote, repoReplaceAllFlags, repoSearch, repoSearchRunJobs, repoSetNote, repoSigningKey, repoSubmitPullReview, repoSyncForkBranch, repoSyncForkBranchInfo, repoSyncForkDefault, repoSyncForkDefaultInfo, repoTestHook, repoTrackedTimes, repoTransfer, repoUnDismissPullReview, repoUpdateAvatar, repoUpdateBranch, repoUpdateFile, repoUpdatePullRequest, repoUpdateTopics, repoValidateIssueConfig, teamSearch, topicSearch, unlinkPackage, unpinIssue, updateOrgSecret, updateOrgVariable, updateRepoSecret, updateRepoVariable, updateUserSecret, updateUserSettings, updateUserVariable, userAddEmail, userBlockUser, userCheckFollowing, userCheckQuota, userCreateHook, userCreateOAuth2Application, userCreateToken, userCurrentCheckFollowing, userCurrentCheckStarring, userCurrentCheckSubscription, userCurrentDeleteFollow, userCurrentDeleteGpgKey, userCurrentDeleteKey, userCurrentDeleteStar, userCurrentDeleteSubscription, userCurrentGetGpgKey, userCurrentGetKey, userCurrentListFollowers, userCurrentListFollowing, userCurrentListGpgKeys, userCurrentListKeys, userCurrentListRepos, userCurrentListStarred, userCurrentListSubscriptions, userCurrentPostGpgKey, userCurrentPostKey, userCurrentPutFollow, userCurrentPutStar, userCurrentPutSubscription, userCurrentTrackedTimes, userDeleteAccessToken, userDeleteAvatar, userDeleteEmail, userDeleteHook, userDeleteOAuth2Application, userEditHook, userGet, userGetCurrent, userGetHeatmapData, userGetHook, userGetOAuth2Application, userGetOAuth2Applications, userGetQuota, userGetRunnerRegistrationToken, userGetStopWatches, userGetTokens, userListActivityFeeds, userListBlockedUsers, userListEmails, userListFollowers, userListFollowing, userListGpgKeys, userListHooks, userListKeys, userListQuotaArtifacts, userListQuotaAttachments, userListQuotaPackages, userListRepos, userListStarred, userListSubscriptions, userListTeams, userSearch, userSearchRunJobs, userTrackedTimes, userUnblockUser, userUpdateAvatar, userUpdateOAuth2Application, userVerifyGpgKey };
|