@llamaduck/forgejo-ts 14.0.5 → 15.0.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/dist/index.d.mts CHANGED
@@ -305,6 +305,11 @@ type ApiValidationError = {
305
305
  type AccessToken = {
306
306
  id?: number;
307
307
  name?: string;
308
+ /**
309
+ * Indicates that an access token only has access to the specified repositories. Will be null if the access token
310
+ * is not limited to a set of specified repositories.
311
+ */
312
+ repositories?: Array<RepositoryMeta>;
308
313
  scopes?: Array<string>;
309
314
  sha1?: string;
310
315
  token_last_eight?: string;
@@ -402,7 +407,15 @@ type ActionRun = {
402
407
  */
403
408
  type ActionRunJob = {
404
409
  /**
405
- * the action run job id
410
+ * How many times the job has been attempted including the current attempt.
411
+ */
412
+ attempt?: number;
413
+ /**
414
+ * Opaque identifier that uniquely identifies a single attempt of a job.
415
+ */
416
+ handle?: string;
417
+ /**
418
+ * Identifier of this job.
406
419
  */
407
420
  id?: number;
408
421
  /**
@@ -434,6 +447,53 @@ type ActionRunJob = {
434
447
  */
435
448
  task_id?: number;
436
449
  };
450
+ /**
451
+ * ActionRunner represents a runner
452
+ */
453
+ type ActionRunner = {
454
+ /**
455
+ * Description provides optional details about this runner.
456
+ */
457
+ description?: string;
458
+ /**
459
+ * Indicates if runner is ephemeral runner
460
+ */
461
+ ephemeral?: boolean;
462
+ /**
463
+ * ID uniquely identifies this runner.
464
+ */
465
+ id?: number;
466
+ /**
467
+ * Labels is a list of labels attached to this runner.
468
+ */
469
+ labels?: Array<string>;
470
+ /**
471
+ * Name of the runner; not unique.
472
+ */
473
+ name?: string;
474
+ /**
475
+ * OwnerID is the identifier of the user or organization this runner belongs to. O if the runner is owned by a
476
+ * repository.
477
+ */
478
+ owner_id?: number;
479
+ /**
480
+ * RepoID is the identifier of the repository this runner belongs to. 0 if the runner belongs to a user or
481
+ * organization.
482
+ */
483
+ repo_id?: number;
484
+ /**
485
+ * Status indicates whether this runner is offline, or active, for example.
486
+ */
487
+ status?: 'offline' | 'idle' | 'active';
488
+ /**
489
+ * UUID uniquely identifies this runner.
490
+ */
491
+ uuid?: string;
492
+ /**
493
+ * Version is the self-reported version string of Forgejo Runner.
494
+ */
495
+ version?: string;
496
+ };
437
497
  /**
438
498
  * ActionTask represents a ActionTask
439
499
  */
@@ -698,15 +758,45 @@ type CombinedStatus = {
698
758
  * Comment represents a comment on a commit or issue
699
759
  */
700
760
  type Comment = {
761
+ /**
762
+ * The attachments to the comment
763
+ */
701
764
  assets?: Array<Attachment>;
765
+ /**
766
+ * The body of the comment
767
+ */
702
768
  body?: string;
769
+ /**
770
+ * The time of the comment's creation
771
+ */
703
772
  created_at?: string;
773
+ /**
774
+ * The HTML URL of the comment
775
+ */
704
776
  html_url?: string;
777
+ /**
778
+ * The identifier of the comment
779
+ */
705
780
  id?: number;
781
+ /**
782
+ * The HTML URL of the issue if the comment is posted on an issue, else empty string
783
+ */
706
784
  issue_url?: string;
785
+ /**
786
+ * The original author that posted the comment if it was not posted locally, else empty string
787
+ */
707
788
  original_author?: string;
789
+ /**
790
+ * The ID of the original author that posted the comment if it was not posted locally, else 0
791
+ */
708
792
  original_author_id?: number;
793
+ /**
794
+ * The HTML URL of the pull request if the comment is posted on a pull request, else empty string
795
+ */
709
796
  pull_request_url?: string;
797
+ /**
798
+ * The time of the comment's update
799
+ */
710
800
  updated_at?: string;
711
801
  user?: User;
712
802
  };
@@ -831,6 +921,10 @@ type ContentsResponse = {
831
921
  */
832
922
  type CreateAccessTokenOption = {
833
923
  name: string;
924
+ /**
925
+ * If provided and not-empty, creates an access token with access only to specified repositories.
926
+ */
927
+ repositories?: Array<RepoTargetOption>;
834
928
  scopes?: Array<string>;
835
929
  };
836
930
  /**
@@ -967,7 +1061,13 @@ type CreateHookOptionConfig = {
967
1061
  * CreateIssueCommentOption options for creating a comment on an issue
968
1062
  */
969
1063
  type CreateIssueCommentOption = {
1064
+ /**
1065
+ * The body of the comment
1066
+ */
970
1067
  body: string;
1068
+ /**
1069
+ * The time of the comment's update, needs admin or repository owner permission
1070
+ */
971
1071
  updated_at?: string;
972
1072
  };
973
1073
  /**
@@ -1038,11 +1138,12 @@ type CreateOAuth2ApplicationOptions = {
1038
1138
  redirect_uris?: Array<string>;
1039
1139
  };
1040
1140
  /**
1041
- * CreateOrUpdateSecretOption options when creating or updating secret
1141
+ * CreateOrUpdateSecretOption defines the properties of the secret to create or update.
1042
1142
  */
1043
1143
  type CreateOrUpdateSecretOption = {
1044
1144
  /**
1045
- * Data of the secret to update
1145
+ * Data of the secret. Special characters will be retained. Line endings will be normalized to LF to match the
1146
+ * behaviour of browsers. Encode the data with Base64 if line endings should be retained.
1046
1147
  */
1047
1148
  data: string;
1048
1149
  };
@@ -1273,11 +1374,12 @@ type CreateUserOption = {
1273
1374
  visibility?: string;
1274
1375
  };
1275
1376
  /**
1276
- * CreateVariableOption the option when creating variable
1377
+ * CreateVariableOption defines the properties of the variable to create.
1277
1378
  */
1278
1379
  type CreateVariableOption = {
1279
1380
  /**
1280
- * Value of the variable to create
1381
+ * Value of the variable to create. Special characters will be retained. Line endings will be normalized to LF to
1382
+ * match the behaviour of browsers. Encode the data with Base64 if line endings should be retained.
1281
1383
  */
1282
1384
  value: string;
1283
1385
  };
@@ -1481,7 +1583,13 @@ type EditHookOption = {
1481
1583
  * EditIssueCommentOption options for editing a comment
1482
1584
  */
1483
1585
  type EditIssueCommentOption = {
1586
+ /**
1587
+ * The body of the comment
1588
+ */
1484
1589
  body: string;
1590
+ /**
1591
+ * The time of the comment's update, needs admin or repository owner permission
1592
+ */
1485
1593
  updated_at?: string;
1486
1594
  };
1487
1595
  /**
@@ -2920,6 +3028,31 @@ type Reference = {
2920
3028
  ref?: string;
2921
3029
  url?: string;
2922
3030
  };
3031
+ /**
3032
+ * RegisterRunnerOptions declares the accepted options for registering runners.
3033
+ */
3034
+ type RegisterRunnerOptions = {
3035
+ /**
3036
+ * Description of the runner to register.
3037
+ */
3038
+ description?: string;
3039
+ /**
3040
+ * Register as ephemeral runner https://forgejo.org/docs/latest/admin/actions/security/#ephemeral-runner
3041
+ */
3042
+ ephemeral?: boolean;
3043
+ /**
3044
+ * Name of the runner to register. The name of the runner does not have to be unique.
3045
+ */
3046
+ name: string;
3047
+ };
3048
+ /**
3049
+ * RegisterRunnerResponse contains the details of the just registered runner.
3050
+ */
3051
+ type RegisterRunnerResponse = {
3052
+ id?: number;
3053
+ token?: string;
3054
+ uuid?: string;
3055
+ };
2923
3056
  /**
2924
3057
  * RegistrationToken is a string used to register a runner with a server
2925
3058
  */
@@ -2992,6 +3125,16 @@ type RepoCommit = {
2992
3125
  url?: string;
2993
3126
  verification?: PayloadCommitVerification;
2994
3127
  };
3128
+ type RepoTargetOption = {
3129
+ /**
3130
+ * Name of repository
3131
+ */
3132
+ name: string;
3133
+ /**
3134
+ * Name of user or organisation that owns the repository
3135
+ */
3136
+ owner: string;
3137
+ };
2995
3138
  /**
2996
3139
  * RepoTopicOptions a collection of repo topic names
2997
3140
  */
@@ -3043,7 +3186,14 @@ type Repository = {
3043
3186
  has_projects?: boolean;
3044
3187
  has_pull_requests?: boolean;
3045
3188
  has_releases?: boolean;
3189
+ /**
3190
+ * is the wiki enabled
3191
+ */
3046
3192
  has_wiki?: boolean;
3193
+ /**
3194
+ * have wiki pages ever been created
3195
+ */
3196
+ has_wiki_contents?: boolean;
3047
3197
  html_url?: string;
3048
3198
  id?: number;
3049
3199
  ignore_whitespace_conflicts?: boolean;
@@ -3079,6 +3229,8 @@ type Repository = {
3079
3229
  watchers_count?: number;
3080
3230
  website?: string;
3081
3231
  wiki_branch?: string;
3232
+ wiki_clone_url?: string;
3233
+ wiki_ssh_url?: string;
3082
3234
  };
3083
3235
  /**
3084
3236
  * RepositoryMeta basic repository information
@@ -3359,15 +3511,17 @@ type UpdateUserAvatarOption = {
3359
3511
  image?: string;
3360
3512
  };
3361
3513
  /**
3362
- * UpdateVariableOption the option when updating variable
3514
+ * UpdateVariableOption defines the properties of the variable to update.
3363
3515
  */
3364
3516
  type UpdateVariableOption = {
3365
3517
  /**
3366
- * New name for the variable. If the field is empty, the variable name won't be updated.
3518
+ * New name for the variable. If the field is empty, the variable name won't be updated. Forgejo will convert it to
3519
+ * uppercase.
3367
3520
  */
3368
3521
  name?: string;
3369
3522
  /**
3370
- * Value of the variable to update
3523
+ * Value of the variable to update. Special characters will be retained. Line endings will be normalized to LF to
3524
+ * match the behaviour of browsers. Encode the data with Base64 if line endings should be retained.
3371
3525
  */
3372
3526
  value: string;
3373
3527
  };
@@ -3757,6 +3911,166 @@ type ActivitypubPersonFeedResponses = {
3757
3911
  200: ForgeOutbox;
3758
3912
  };
3759
3913
  type ActivitypubPersonFeedResponse = ActivitypubPersonFeedResponses[keyof ActivitypubPersonFeedResponses];
3914
+ type GetAdminRunnersData = {
3915
+ body?: never;
3916
+ path?: never;
3917
+ query?: {
3918
+ /**
3919
+ * whether to include all visible runners (true) or only those that are directly owned by the instance (false)
3920
+ */
3921
+ visible?: boolean;
3922
+ /**
3923
+ * page number of results to return (1-based)
3924
+ */
3925
+ page?: number;
3926
+ /**
3927
+ * page size of results
3928
+ */
3929
+ limit?: number;
3930
+ };
3931
+ url: '/admin/actions/runners';
3932
+ };
3933
+ type GetAdminRunnersErrors = {
3934
+ /**
3935
+ * APIError is error format response
3936
+ */
3937
+ 400: ApiError;
3938
+ /**
3939
+ * APINotFound is a not found error response
3940
+ */
3941
+ 404: ApiNotFound;
3942
+ };
3943
+ type GetAdminRunnersError = GetAdminRunnersErrors[keyof GetAdminRunnersErrors];
3944
+ type GetAdminRunnersResponses = {
3945
+ /**
3946
+ * ActionRunnerList is a list of Forgejo Action runners
3947
+ */
3948
+ 200: Array<ActionRunner>;
3949
+ };
3950
+ type GetAdminRunnersResponse = GetAdminRunnersResponses[keyof GetAdminRunnersResponses];
3951
+ type RegisterAdminRunnerData = {
3952
+ body?: RegisterRunnerOptions;
3953
+ path?: never;
3954
+ query?: never;
3955
+ url: '/admin/actions/runners';
3956
+ };
3957
+ type RegisterAdminRunnerErrors = {
3958
+ /**
3959
+ * APIError is error format response
3960
+ */
3961
+ 400: ApiError;
3962
+ /**
3963
+ * APIUnauthorizedError is a unauthorized error response
3964
+ */
3965
+ 401: ApiUnauthorizedError;
3966
+ /**
3967
+ * APINotFound is a not found error response
3968
+ */
3969
+ 404: ApiNotFound;
3970
+ };
3971
+ type RegisterAdminRunnerError = RegisterAdminRunnerErrors[keyof RegisterAdminRunnerErrors];
3972
+ type RegisterAdminRunnerResponses = {
3973
+ /**
3974
+ * RegisterRunnerResponse contains the details of the just registered runner.
3975
+ */
3976
+ 201: RegisterRunnerResponse;
3977
+ };
3978
+ type RegisterAdminRunnerResponse = RegisterAdminRunnerResponses[keyof RegisterAdminRunnerResponses];
3979
+ type AdminGetActionRunJobsData = {
3980
+ body?: never;
3981
+ path?: never;
3982
+ query?: {
3983
+ /**
3984
+ * a comma separated list of labels to search for
3985
+ */
3986
+ labels?: string;
3987
+ };
3988
+ url: '/admin/actions/runners/jobs';
3989
+ };
3990
+ type AdminGetActionRunJobsErrors = {
3991
+ /**
3992
+ * APIForbiddenError is a forbidden error response
3993
+ */
3994
+ 403: ApiForbiddenError;
3995
+ };
3996
+ type AdminGetActionRunJobsError = AdminGetActionRunJobsErrors[keyof AdminGetActionRunJobsErrors];
3997
+ type AdminGetActionRunJobsResponses = {
3998
+ /**
3999
+ * RunJobList is a list of action run jobs
4000
+ */
4001
+ 200: Array<ActionRunJob>;
4002
+ };
4003
+ type AdminGetActionRunJobsResponse = AdminGetActionRunJobsResponses[keyof AdminGetActionRunJobsResponses];
4004
+ type AdminGetRunnerRegistrationTokenData = {
4005
+ body?: never;
4006
+ path?: never;
4007
+ query?: never;
4008
+ url: '/admin/actions/runners/registration-token';
4009
+ };
4010
+ type AdminGetRunnerRegistrationTokenResponses = {
4011
+ /**
4012
+ * RegistrationToken is a string used to register a runner with a server
4013
+ */
4014
+ 200: RegistrationToken;
4015
+ };
4016
+ type AdminGetRunnerRegistrationTokenResponse = AdminGetRunnerRegistrationTokenResponses[keyof AdminGetRunnerRegistrationTokenResponses];
4017
+ type DeleteAdminRunnerData = {
4018
+ body?: never;
4019
+ path: {
4020
+ /**
4021
+ * ID of the runner
4022
+ */
4023
+ runner_id: string;
4024
+ };
4025
+ query?: never;
4026
+ url: '/admin/actions/runners/{runner_id}';
4027
+ };
4028
+ type DeleteAdminRunnerErrors = {
4029
+ /**
4030
+ * APIError is error format response
4031
+ */
4032
+ 400: ApiError;
4033
+ /**
4034
+ * APINotFound is a not found error response
4035
+ */
4036
+ 404: ApiNotFound;
4037
+ };
4038
+ type DeleteAdminRunnerError = DeleteAdminRunnerErrors[keyof DeleteAdminRunnerErrors];
4039
+ type DeleteAdminRunnerResponses = {
4040
+ /**
4041
+ * runner has been deleted
4042
+ */
4043
+ 204: unknown;
4044
+ };
4045
+ type GetAdminRunnerData = {
4046
+ body?: never;
4047
+ path: {
4048
+ /**
4049
+ * ID of the runner
4050
+ */
4051
+ runner_id: string;
4052
+ };
4053
+ query?: never;
4054
+ url: '/admin/actions/runners/{runner_id}';
4055
+ };
4056
+ type GetAdminRunnerErrors = {
4057
+ /**
4058
+ * APIError is error format response
4059
+ */
4060
+ 400: ApiError;
4061
+ /**
4062
+ * APINotFound is a not found error response
4063
+ */
4064
+ 404: ApiNotFound;
4065
+ };
4066
+ type GetAdminRunnerError = GetAdminRunnerErrors[keyof GetAdminRunnerErrors];
4067
+ type GetAdminRunnerResponses = {
4068
+ /**
4069
+ * ActionRunner represents a runner
4070
+ */
4071
+ 200: ActionRunner;
4072
+ };
4073
+ type GetAdminRunnerResponse = GetAdminRunnerResponses[keyof GetAdminRunnerResponses];
3760
4074
  type AdminCronListData = {
3761
4075
  body?: never;
3762
4076
  path?: never;
@@ -3889,7 +4203,7 @@ type AdminListHooksData = {
3889
4203
  };
3890
4204
  type AdminListHooksResponses = {
3891
4205
  /**
3892
- * HookList
4206
+ * HookListWithoutPagination - Hooks without pagination headers
3893
4207
  */
3894
4208
  200: Array<Hook>;
3895
4209
  };
@@ -4484,19 +4798,19 @@ type AdminSearchRunJobsResponses = {
4484
4798
  200: Array<ActionRunJob>;
4485
4799
  };
4486
4800
  type AdminSearchRunJobsResponse = AdminSearchRunJobsResponses[keyof AdminSearchRunJobsResponses];
4487
- type AdminGetRunnerRegistrationTokenData = {
4801
+ type AdminGetRegistrationTokenData = {
4488
4802
  body?: never;
4489
4803
  path?: never;
4490
4804
  query?: never;
4491
4805
  url: '/admin/runners/registration-token';
4492
4806
  };
4493
- type AdminGetRunnerRegistrationTokenResponses = {
4807
+ type AdminGetRegistrationTokenResponses = {
4494
4808
  /**
4495
4809
  * RegistrationToken is a string used to register a runner with a server
4496
4810
  */
4497
4811
  200: RegistrationToken;
4498
4812
  };
4499
- type AdminGetRunnerRegistrationTokenResponse = AdminGetRunnerRegistrationTokenResponses[keyof AdminGetRunnerRegistrationTokenResponses];
4813
+ type AdminGetRegistrationTokenResponse = AdminGetRegistrationTokenResponses[keyof AdminGetRegistrationTokenResponses];
4500
4814
  type AdminUnadoptedListData = {
4501
4815
  body?: never;
4502
4816
  path?: never;
@@ -5278,7 +5592,7 @@ type NotifyReadListData = {
5278
5592
  };
5279
5593
  type NotifyReadListResponses = {
5280
5594
  /**
5281
- * NotificationThreadList
5595
+ * NotificationThreadListWithoutPagination - Notification threads without pagination headers
5282
5596
  */
5283
5597
  205: Array<NotificationThread>;
5284
5598
  };
@@ -5516,6 +5830,81 @@ type OrgEditResponses = {
5516
5830
  200: Organization;
5517
5831
  };
5518
5832
  type OrgEditResponse = OrgEditResponses[keyof OrgEditResponses];
5833
+ type GetOrgRunnersData = {
5834
+ body?: never;
5835
+ path: {
5836
+ /**
5837
+ * name of the organization
5838
+ */
5839
+ org: string;
5840
+ };
5841
+ query?: {
5842
+ /**
5843
+ * whether to include all visible runners (true) or only those that are directly owned by the organization (false)
5844
+ */
5845
+ visible?: boolean;
5846
+ /**
5847
+ * page number of results to return (1-based)
5848
+ */
5849
+ page?: number;
5850
+ /**
5851
+ * page size of results
5852
+ */
5853
+ limit?: number;
5854
+ };
5855
+ url: '/orgs/{org}/actions/runners';
5856
+ };
5857
+ type GetOrgRunnersErrors = {
5858
+ /**
5859
+ * APIError is error format response
5860
+ */
5861
+ 400: ApiError;
5862
+ /**
5863
+ * APINotFound is a not found error response
5864
+ */
5865
+ 404: ApiNotFound;
5866
+ };
5867
+ type GetOrgRunnersError = GetOrgRunnersErrors[keyof GetOrgRunnersErrors];
5868
+ type GetOrgRunnersResponses = {
5869
+ /**
5870
+ * ActionRunnerList is a list of Forgejo Action runners
5871
+ */
5872
+ 200: Array<ActionRunner>;
5873
+ };
5874
+ type GetOrgRunnersResponse = GetOrgRunnersResponses[keyof GetOrgRunnersResponses];
5875
+ type RegisterOrgRunnerData = {
5876
+ body?: RegisterRunnerOptions;
5877
+ path: {
5878
+ /**
5879
+ * name of the organization
5880
+ */
5881
+ org: string;
5882
+ };
5883
+ query?: never;
5884
+ url: '/orgs/{org}/actions/runners';
5885
+ };
5886
+ type RegisterOrgRunnerErrors = {
5887
+ /**
5888
+ * APIError is error format response
5889
+ */
5890
+ 400: ApiError;
5891
+ /**
5892
+ * APIUnauthorizedError is a unauthorized error response
5893
+ */
5894
+ 401: ApiUnauthorizedError;
5895
+ /**
5896
+ * APINotFound is a not found error response
5897
+ */
5898
+ 404: ApiNotFound;
5899
+ };
5900
+ type RegisterOrgRunnerError = RegisterOrgRunnerErrors[keyof RegisterOrgRunnerErrors];
5901
+ type RegisterOrgRunnerResponses = {
5902
+ /**
5903
+ * RegisterRunnerResponse contains the details of the just registered runner.
5904
+ */
5905
+ 201: RegisterRunnerResponse;
5906
+ };
5907
+ type RegisterOrgRunnerResponse = RegisterOrgRunnerResponses[keyof RegisterOrgRunnerResponses];
5519
5908
  type OrgSearchRunJobsData = {
5520
5909
  body?: never;
5521
5910
  path: {
@@ -5564,6 +5953,71 @@ type OrgGetRunnerRegistrationTokenResponses = {
5564
5953
  200: RegistrationToken;
5565
5954
  };
5566
5955
  type OrgGetRunnerRegistrationTokenResponse = OrgGetRunnerRegistrationTokenResponses[keyof OrgGetRunnerRegistrationTokenResponses];
5956
+ type DeleteOrgRunnerData = {
5957
+ body?: never;
5958
+ path: {
5959
+ /**
5960
+ * name of the organization
5961
+ */
5962
+ org: string;
5963
+ /**
5964
+ * ID of the runner
5965
+ */
5966
+ runner_id: string;
5967
+ };
5968
+ query?: never;
5969
+ url: '/orgs/{org}/actions/runners/{runner_id}';
5970
+ };
5971
+ type DeleteOrgRunnerErrors = {
5972
+ /**
5973
+ * APIError is error format response
5974
+ */
5975
+ 400: ApiError;
5976
+ /**
5977
+ * APINotFound is a not found error response
5978
+ */
5979
+ 404: ApiNotFound;
5980
+ };
5981
+ type DeleteOrgRunnerError = DeleteOrgRunnerErrors[keyof DeleteOrgRunnerErrors];
5982
+ type DeleteOrgRunnerResponses = {
5983
+ /**
5984
+ * runner has been deleted
5985
+ */
5986
+ 204: unknown;
5987
+ };
5988
+ type GetOrgRunnerData = {
5989
+ body?: never;
5990
+ path: {
5991
+ /**
5992
+ * name of the organization
5993
+ */
5994
+ org: string;
5995
+ /**
5996
+ * ID of the runner
5997
+ */
5998
+ runner_id: string;
5999
+ };
6000
+ query?: never;
6001
+ url: '/orgs/{org}/actions/runners/{runner_id}';
6002
+ };
6003
+ type GetOrgRunnerErrors = {
6004
+ /**
6005
+ * APIError is error format response
6006
+ */
6007
+ 400: ApiError;
6008
+ /**
6009
+ * APINotFound is a not found error response
6010
+ */
6011
+ 404: ApiNotFound;
6012
+ };
6013
+ type GetOrgRunnerError = GetOrgRunnerErrors[keyof GetOrgRunnerErrors];
6014
+ type GetOrgRunnerResponses = {
6015
+ /**
6016
+ * ActionRunner represents a runner
6017
+ */
6018
+ 200: ActionRunner;
6019
+ };
6020
+ type GetOrgRunnerResponse = GetOrgRunnerResponses[keyof GetOrgRunnerResponses];
5567
6021
  type OrgListActionsSecretsData = {
5568
6022
  body?: never;
5569
6023
  path: {
@@ -5988,7 +6442,7 @@ type OrgListHooksErrors = {
5988
6442
  type OrgListHooksError = OrgListHooksErrors[keyof OrgListHooksErrors];
5989
6443
  type OrgListHooksResponses = {
5990
6444
  /**
5991
- * HookList
6445
+ * HookListWithoutPagination - Hooks without pagination headers
5992
6446
  */
5993
6447
  200: Array<Hook>;
5994
6448
  };
@@ -7454,12 +7908,151 @@ type RepoEditErrors = {
7454
7908
  type RepoEditError = RepoEditErrors[keyof RepoEditErrors];
7455
7909
  type RepoEditResponses = {
7456
7910
  /**
7457
- * Repository
7911
+ * Repository
7912
+ */
7913
+ 200: Repository;
7914
+ };
7915
+ type RepoEditResponse = RepoEditResponses[keyof RepoEditResponses];
7916
+ type GetRepoRunnersData = {
7917
+ body?: never;
7918
+ path: {
7919
+ /**
7920
+ * owner of the repo
7921
+ */
7922
+ owner: string;
7923
+ /**
7924
+ * name of the repo
7925
+ */
7926
+ repo: string;
7927
+ };
7928
+ query?: {
7929
+ /**
7930
+ * whether to include all visible runners (true) or only those that are directly owned by the repository (false)
7931
+ */
7932
+ visible?: boolean;
7933
+ /**
7934
+ * page number of results to return (1-based)
7935
+ */
7936
+ page?: number;
7937
+ /**
7938
+ * page size of results
7939
+ */
7940
+ limit?: number;
7941
+ };
7942
+ url: '/repos/{owner}/{repo}/actions/runners';
7943
+ };
7944
+ type GetRepoRunnersErrors = {
7945
+ /**
7946
+ * APIError is error format response
7947
+ */
7948
+ 400: ApiError;
7949
+ /**
7950
+ * APINotFound is a not found error response
7951
+ */
7952
+ 404: ApiNotFound;
7953
+ };
7954
+ type GetRepoRunnersError = GetRepoRunnersErrors[keyof GetRepoRunnersErrors];
7955
+ type GetRepoRunnersResponses = {
7956
+ /**
7957
+ * ActionRunnerList is a list of Forgejo Action runners
7958
+ */
7959
+ 200: Array<ActionRunner>;
7960
+ };
7961
+ type GetRepoRunnersResponse = GetRepoRunnersResponses[keyof GetRepoRunnersResponses];
7962
+ type RegisterRepoRunnerData = {
7963
+ body?: RegisterRunnerOptions;
7964
+ path: {
7965
+ /**
7966
+ * owner of the repo
7967
+ */
7968
+ owner: string;
7969
+ /**
7970
+ * name of the repo
7971
+ */
7972
+ repo: string;
7973
+ };
7974
+ query?: never;
7975
+ url: '/repos/{owner}/{repo}/actions/runners';
7976
+ };
7977
+ type RegisterRepoRunnerErrors = {
7978
+ /**
7979
+ * APIError is error format response
7980
+ */
7981
+ 400: ApiError;
7982
+ /**
7983
+ * APIUnauthorizedError is a unauthorized error response
7984
+ */
7985
+ 401: ApiUnauthorizedError;
7986
+ /**
7987
+ * APINotFound is a not found error response
7988
+ */
7989
+ 404: ApiNotFound;
7990
+ };
7991
+ type RegisterRepoRunnerError = RegisterRepoRunnerErrors[keyof RegisterRepoRunnerErrors];
7992
+ type RegisterRepoRunnerResponses = {
7993
+ /**
7994
+ * RegisterRunnerResponse contains the details of the just registered runner.
7995
+ */
7996
+ 201: RegisterRunnerResponse;
7997
+ };
7998
+ type RegisterRepoRunnerResponse = RegisterRepoRunnerResponses[keyof RegisterRepoRunnerResponses];
7999
+ type RepoSearchRunJobsData = {
8000
+ body?: never;
8001
+ path: {
8002
+ /**
8003
+ * owner of the repo
8004
+ */
8005
+ owner: string;
8006
+ /**
8007
+ * name of the repo
8008
+ */
8009
+ repo: string;
8010
+ };
8011
+ query?: {
8012
+ /**
8013
+ * a comma separated list of run job labels to search for
8014
+ */
8015
+ labels?: string;
8016
+ };
8017
+ url: '/repos/{owner}/{repo}/actions/runners/jobs';
8018
+ };
8019
+ type RepoSearchRunJobsErrors = {
8020
+ /**
8021
+ * APIForbiddenError is a forbidden error response
8022
+ */
8023
+ 403: ApiForbiddenError;
8024
+ };
8025
+ type RepoSearchRunJobsError = RepoSearchRunJobsErrors[keyof RepoSearchRunJobsErrors];
8026
+ type RepoSearchRunJobsResponses = {
8027
+ /**
8028
+ * RunJobList is a list of action run jobs
8029
+ */
8030
+ 200: Array<ActionRunJob>;
8031
+ };
8032
+ type RepoSearchRunJobsResponse = RepoSearchRunJobsResponses[keyof RepoSearchRunJobsResponses];
8033
+ type RepoGetRunnerRegistrationTokenData = {
8034
+ body?: never;
8035
+ path: {
8036
+ /**
8037
+ * owner of the repo
8038
+ */
8039
+ owner: string;
8040
+ /**
8041
+ * name of the repo
8042
+ */
8043
+ repo: string;
8044
+ };
8045
+ query?: never;
8046
+ url: '/repos/{owner}/{repo}/actions/runners/registration-token';
8047
+ };
8048
+ type RepoGetRunnerRegistrationTokenResponses = {
8049
+ /**
8050
+ * RegistrationToken is a string used to register a runner with a server
7458
8051
  */
7459
- 200: Repository;
8052
+ 200: RegistrationToken;
7460
8053
  };
7461
- type RepoEditResponse = RepoEditResponses[keyof RepoEditResponses];
7462
- type RepoSearchRunJobsData = {
8054
+ type RepoGetRunnerRegistrationTokenResponse = RepoGetRunnerRegistrationTokenResponses[keyof RepoGetRunnerRegistrationTokenResponses];
8055
+ type DeleteRepoRunnerData = {
7463
8056
  body?: never;
7464
8057
  path: {
7465
8058
  /**
@@ -7470,30 +8063,32 @@ type RepoSearchRunJobsData = {
7470
8063
  * name of the repo
7471
8064
  */
7472
8065
  repo: string;
7473
- };
7474
- query?: {
7475
8066
  /**
7476
- * a comma separated list of run job labels to search for
8067
+ * ID of the runner
7477
8068
  */
7478
- labels?: string;
8069
+ runner_id: string;
7479
8070
  };
7480
- url: '/repos/{owner}/{repo}/actions/runners/jobs';
8071
+ query?: never;
8072
+ url: '/repos/{owner}/{repo}/actions/runners/{runner_id}';
7481
8073
  };
7482
- type RepoSearchRunJobsErrors = {
8074
+ type DeleteRepoRunnerErrors = {
7483
8075
  /**
7484
- * APIForbiddenError is a forbidden error response
8076
+ * APIError is error format response
7485
8077
  */
7486
- 403: ApiForbiddenError;
8078
+ 400: ApiError;
8079
+ /**
8080
+ * APINotFound is a not found error response
8081
+ */
8082
+ 404: ApiNotFound;
7487
8083
  };
7488
- type RepoSearchRunJobsError = RepoSearchRunJobsErrors[keyof RepoSearchRunJobsErrors];
7489
- type RepoSearchRunJobsResponses = {
8084
+ type DeleteRepoRunnerError = DeleteRepoRunnerErrors[keyof DeleteRepoRunnerErrors];
8085
+ type DeleteRepoRunnerResponses = {
7490
8086
  /**
7491
- * RunJobList is a list of action run jobs
8087
+ * runner has been deleted
7492
8088
  */
7493
- 200: Array<ActionRunJob>;
8089
+ 204: unknown;
7494
8090
  };
7495
- type RepoSearchRunJobsResponse = RepoSearchRunJobsResponses[keyof RepoSearchRunJobsResponses];
7496
- type RepoGetRunnerRegistrationTokenData = {
8091
+ type GetRepoRunnerData = {
7497
8092
  body?: never;
7498
8093
  path: {
7499
8094
  /**
@@ -7504,17 +8099,32 @@ type RepoGetRunnerRegistrationTokenData = {
7504
8099
  * name of the repo
7505
8100
  */
7506
8101
  repo: string;
8102
+ /**
8103
+ * ID of the runner
8104
+ */
8105
+ runner_id: string;
7507
8106
  };
7508
8107
  query?: never;
7509
- url: '/repos/{owner}/{repo}/actions/runners/registration-token';
8108
+ url: '/repos/{owner}/{repo}/actions/runners/{runner_id}';
7510
8109
  };
7511
- type RepoGetRunnerRegistrationTokenResponses = {
8110
+ type GetRepoRunnerErrors = {
7512
8111
  /**
7513
- * RegistrationToken is a string used to register a runner with a server
8112
+ * APIError is error format response
7514
8113
  */
7515
- 200: RegistrationToken;
8114
+ 400: ApiError;
8115
+ /**
8116
+ * APINotFound is a not found error response
8117
+ */
8118
+ 404: ApiNotFound;
7516
8119
  };
7517
- type RepoGetRunnerRegistrationTokenResponse = RepoGetRunnerRegistrationTokenResponses[keyof RepoGetRunnerRegistrationTokenResponses];
8120
+ type GetRepoRunnerError = GetRepoRunnerErrors[keyof GetRepoRunnerErrors];
8121
+ type GetRepoRunnerResponses = {
8122
+ /**
8123
+ * ActionRunner represents a runner
8124
+ */
8125
+ 200: ActionRunner;
8126
+ };
8127
+ type GetRepoRunnerResponse = GetRepoRunnerResponses[keyof GetRepoRunnerResponses];
7518
8128
  type ListActionRunsData = {
7519
8129
  body?: never;
7520
8130
  path: {
@@ -7554,6 +8164,14 @@ type ListActionRunsData = {
7554
8164
  * Only returns workflow runs that are associated with the specified head_sha.
7555
8165
  */
7556
8166
  head_sha?: string;
8167
+ /**
8168
+ * Only return workflow runs that involve the given Git reference, for example, `refs/heads/main`.
8169
+ */
8170
+ ref?: string;
8171
+ /**
8172
+ * Only return workflow runs that involve the given workflow ID.
8173
+ */
8174
+ workflow_id?: string;
7557
8175
  };
7558
8176
  url: '/repos/{owner}/{repo}/actions/runs';
7559
8177
  };
@@ -7751,6 +8369,12 @@ type ListActionTasksData = {
7751
8369
  * page size of results, default maximum page size is 50
7752
8370
  */
7753
8371
  limit?: number;
8372
+ /**
8373
+ * Returns workflow tasks with the check run status or conclusion that is specified.
8374
+ * For example, a conclusion can be success or a status can be in_progress.
8375
+ *
8376
+ */
8377
+ status?: Array<'unknown' | 'waiting' | 'running' | 'success' | 'failure' | 'cancelled' | 'skipped' | 'blocked'>;
7754
8378
  };
7755
8379
  url: '/repos/{owner}/{repo}/actions/tasks';
7756
8380
  };
@@ -10543,6 +11167,10 @@ type IssueListIssuesErrors = {
10543
11167
  * APINotFound is a not found error response
10544
11168
  */
10545
11169
  404: ApiNotFound;
11170
+ /**
11171
+ * APIValidationError is error format response related to input validation
11172
+ */
11173
+ 422: ApiValidationError;
10546
11174
  };
10547
11175
  type IssueListIssuesError = IssueListIssuesErrors[keyof IssueListIssuesErrors];
10548
11176
  type IssueListIssuesResponses = {
@@ -11067,7 +11695,7 @@ type IssueGetCommentReactionsErrors = {
11067
11695
  type IssueGetCommentReactionsError = IssueGetCommentReactionsErrors[keyof IssueGetCommentReactionsErrors];
11068
11696
  type IssueGetCommentReactionsResponses = {
11069
11697
  /**
11070
- * ReactionList
11698
+ * ReactionListWithoutPagination - Reactions for a specific comment (no pagination headers)
11071
11699
  */
11072
11700
  200: Array<Reaction>;
11073
11701
  };
@@ -11137,7 +11765,7 @@ type RepoListPinnedIssuesErrors = {
11137
11765
  type RepoListPinnedIssuesError = RepoListPinnedIssuesErrors[keyof RepoListPinnedIssuesErrors];
11138
11766
  type RepoListPinnedIssuesResponses = {
11139
11767
  /**
11140
- * IssueList
11768
+ * IssueListWithoutPagination - Issues without pagination headers (used for pinned issues, dependencies, etc.)
11141
11769
  */
11142
11770
  200: Array<Issue>;
11143
11771
  };
@@ -11540,7 +12168,7 @@ type IssueListBlocksErrors = {
11540
12168
  type IssueListBlocksError = IssueListBlocksErrors[keyof IssueListBlocksErrors];
11541
12169
  type IssueListBlocksResponses = {
11542
12170
  /**
11543
- * IssueList
12171
+ * IssueListWithoutPagination - Issues without pagination headers (used for pinned issues, dependencies, etc.)
11544
12172
  */
11545
12173
  200: Array<Issue>;
11546
12174
  };
@@ -11872,7 +12500,7 @@ type IssueListIssueDependenciesErrors = {
11872
12500
  type IssueListIssueDependenciesError = IssueListIssueDependenciesErrors[keyof IssueListIssueDependenciesErrors];
11873
12501
  type IssueListIssueDependenciesResponses = {
11874
12502
  /**
11875
- * IssueList
12503
+ * IssueListWithoutPagination - Issues without pagination headers (used for pinned issues, dependencies, etc.)
11876
12504
  */
11877
12505
  200: Array<Issue>;
11878
12506
  };
@@ -11978,7 +12606,7 @@ type IssueGetLabelsErrors = {
11978
12606
  type IssueGetLabelsError = IssueGetLabelsErrors[keyof IssueGetLabelsErrors];
11979
12607
  type IssueGetLabelsResponses = {
11980
12608
  /**
11981
- * LabelList
12609
+ * LabelListWithoutPagination - Labels for a specific issue (no pagination headers)
11982
12610
  */
11983
12611
  200: Array<Label>;
11984
12612
  };
@@ -12015,7 +12643,7 @@ type IssueAddLabelErrors = {
12015
12643
  type IssueAddLabelError = IssueAddLabelErrors[keyof IssueAddLabelErrors];
12016
12644
  type IssueAddLabelResponses = {
12017
12645
  /**
12018
- * LabelList
12646
+ * LabelListWithoutPagination - Labels for a specific issue (no pagination headers)
12019
12647
  */
12020
12648
  200: Array<Label>;
12021
12649
  };
@@ -12052,7 +12680,7 @@ type IssueReplaceLabelsErrors = {
12052
12680
  type IssueReplaceLabelsError = IssueReplaceLabelsErrors[keyof IssueReplaceLabelsErrors];
12053
12681
  type IssueReplaceLabelsResponses = {
12054
12682
  /**
12055
- * LabelList
12683
+ * LabelListWithoutPagination - Labels for a specific issue (no pagination headers)
12056
12684
  */
12057
12685
  200: Array<Label>;
12058
12686
  };
@@ -12750,10 +13378,18 @@ type IssueTrackedTimesData = {
12750
13378
  url: '/repos/{owner}/{repo}/issues/{index}/times';
12751
13379
  };
12752
13380
  type IssueTrackedTimesErrors = {
13381
+ /**
13382
+ * APIForbiddenError is a forbidden error response
13383
+ */
13384
+ 403: ApiForbiddenError;
12753
13385
  /**
12754
13386
  * APINotFound is a not found error response
12755
13387
  */
12756
13388
  404: ApiNotFound;
13389
+ /**
13390
+ * APIValidationError is error format response related to input validation
13391
+ */
13392
+ 422: ApiValidationError;
12757
13393
  };
12758
13394
  type IssueTrackedTimesError = IssueTrackedTimesErrors[keyof IssueTrackedTimesErrors];
12759
13395
  type IssueTrackedTimesResponses = {
@@ -13564,7 +14200,7 @@ type NotifyReadRepoListData = {
13564
14200
  };
13565
14201
  type NotifyReadRepoListResponses = {
13566
14202
  /**
13567
- * NotificationThreadList
14203
+ * NotificationThreadListWithoutPagination - Notification threads without pagination headers
13568
14204
  */
13569
14205
  205: Array<NotificationThread>;
13570
14206
  };
@@ -13614,6 +14250,10 @@ type RepoListPullRequestsData = {
13614
14250
  url: '/repos/{owner}/{repo}/pulls';
13615
14251
  };
13616
14252
  type RepoListPullRequestsErrors = {
14253
+ /**
14254
+ * APIError is error format response
14255
+ */
14256
+ 400: ApiError;
13617
14257
  /**
13618
14258
  * APINotFound is a not found error response
13619
14259
  */
@@ -13961,7 +14601,7 @@ type RepoGetPullRequestFilesErrors = {
13961
14601
  type RepoGetPullRequestFilesError = RepoGetPullRequestFilesErrors[keyof RepoGetPullRequestFilesErrors];
13962
14602
  type RepoGetPullRequestFilesResponses = {
13963
14603
  /**
13964
- * ChangedFileList
14604
+ * ChangedFileListWithPagination
13965
14605
  */
13966
14606
  200: Array<ChangedFile>;
13967
14607
  };
@@ -14145,6 +14785,10 @@ type RepoCreatePullReviewRequestsData = {
14145
14785
  url: '/repos/{owner}/{repo}/pulls/{index}/requested_reviewers';
14146
14786
  };
14147
14787
  type RepoCreatePullReviewRequestsErrors = {
14788
+ /**
14789
+ * APIForbiddenError is a forbidden error response
14790
+ */
14791
+ 403: ApiForbiddenError;
14148
14792
  /**
14149
14793
  * APINotFound is a not found error response
14150
14794
  */
@@ -14157,7 +14801,7 @@ type RepoCreatePullReviewRequestsErrors = {
14157
14801
  type RepoCreatePullReviewRequestsError = RepoCreatePullReviewRequestsErrors[keyof RepoCreatePullReviewRequestsErrors];
14158
14802
  type RepoCreatePullReviewRequestsResponses = {
14159
14803
  /**
14160
- * PullReviewList
14804
+ * PullReviewListWithoutPagination - Review requests without pagination headers
14161
14805
  */
14162
14806
  201: Array<PullReview>;
14163
14807
  };
@@ -16197,11 +16841,15 @@ type RepoListTeamsErrors = {
16197
16841
  * APINotFound is a not found error response
16198
16842
  */
16199
16843
  404: ApiNotFound;
16844
+ /**
16845
+ * APIError is error format response
16846
+ */
16847
+ 405: ApiError;
16200
16848
  };
16201
16849
  type RepoListTeamsError = RepoListTeamsErrors[keyof RepoListTeamsErrors];
16202
16850
  type RepoListTeamsResponses = {
16203
16851
  /**
16204
- * TeamList
16852
+ * TeamListWithoutPagination - Teams without pagination headers
16205
16853
  */
16206
16854
  200: Array<Team>;
16207
16855
  };
@@ -16372,6 +17020,10 @@ type RepoTrackedTimesErrors = {
16372
17020
  * APINotFound is a not found error response
16373
17021
  */
16374
17022
  404: ApiNotFound;
17023
+ /**
17024
+ * APIValidationError is error format response related to input validation
17025
+ */
17026
+ 422: ApiValidationError;
16375
17027
  };
16376
17028
  type RepoTrackedTimesError = RepoTrackedTimesErrors[keyof RepoTrackedTimesErrors];
16377
17029
  type RepoTrackedTimesResponses = {
@@ -16417,7 +17069,7 @@ type UserTrackedTimesErrors = {
16417
17069
  type UserTrackedTimesError = UserTrackedTimesErrors[keyof UserTrackedTimesErrors];
16418
17070
  type UserTrackedTimesResponses = {
16419
17071
  /**
16420
- * TrackedTimeList
17072
+ * TrackedTimeListWithoutPagination - Tracked times for a specific user (no pagination headers)
16421
17073
  */
16422
17074
  200: Array<TrackedTime>;
16423
17075
  };
@@ -17511,6 +18163,75 @@ type UserGetCurrentResponses = {
17511
18163
  200: User;
17512
18164
  };
17513
18165
  type UserGetCurrentResponse = UserGetCurrentResponses[keyof UserGetCurrentResponses];
18166
+ type GetUserRunnersData = {
18167
+ body?: never;
18168
+ path?: never;
18169
+ query?: {
18170
+ /**
18171
+ * whether to include all visible runners (true) or only those that are directly owned by the user (false)
18172
+ */
18173
+ visible?: boolean;
18174
+ /**
18175
+ * page number of results to return (1-based)
18176
+ */
18177
+ page?: number;
18178
+ /**
18179
+ * page size of results
18180
+ */
18181
+ limit?: number;
18182
+ };
18183
+ url: '/user/actions/runners';
18184
+ };
18185
+ type GetUserRunnersErrors = {
18186
+ /**
18187
+ * APIError is error format response
18188
+ */
18189
+ 400: ApiError;
18190
+ /**
18191
+ * APIUnauthorizedError is a unauthorized error response
18192
+ */
18193
+ 401: ApiUnauthorizedError;
18194
+ /**
18195
+ * APINotFound is a not found error response
18196
+ */
18197
+ 404: ApiNotFound;
18198
+ };
18199
+ type GetUserRunnersError = GetUserRunnersErrors[keyof GetUserRunnersErrors];
18200
+ type GetUserRunnersResponses = {
18201
+ /**
18202
+ * ActionRunnerList is a list of Forgejo Action runners
18203
+ */
18204
+ 200: Array<ActionRunner>;
18205
+ };
18206
+ type GetUserRunnersResponse = GetUserRunnersResponses[keyof GetUserRunnersResponses];
18207
+ type RegisterUserRunnerData = {
18208
+ body?: RegisterRunnerOptions;
18209
+ path?: never;
18210
+ query?: never;
18211
+ url: '/user/actions/runners';
18212
+ };
18213
+ type RegisterUserRunnerErrors = {
18214
+ /**
18215
+ * APIError is error format response
18216
+ */
18217
+ 400: ApiError;
18218
+ /**
18219
+ * APIUnauthorizedError is a unauthorized error response
18220
+ */
18221
+ 401: ApiUnauthorizedError;
18222
+ /**
18223
+ * APINotFound is a not found error response
18224
+ */
18225
+ 404: ApiNotFound;
18226
+ };
18227
+ type RegisterUserRunnerError = RegisterUserRunnerErrors[keyof RegisterUserRunnerErrors];
18228
+ type RegisterUserRunnerResponses = {
18229
+ /**
18230
+ * RegisterRunnerResponse contains the details of the just registered runner.
18231
+ */
18232
+ 201: RegisterRunnerResponse;
18233
+ };
18234
+ type RegisterUserRunnerResponse = RegisterUserRunnerResponses[keyof RegisterUserRunnerResponses];
17514
18235
  type UserSearchRunJobsData = {
17515
18236
  body?: never;
17516
18237
  path?: never;
@@ -17564,6 +18285,71 @@ type UserGetRunnerRegistrationTokenResponses = {
17564
18285
  200: RegistrationToken;
17565
18286
  };
17566
18287
  type UserGetRunnerRegistrationTokenResponse = UserGetRunnerRegistrationTokenResponses[keyof UserGetRunnerRegistrationTokenResponses];
18288
+ type DeleteUserRunnerData = {
18289
+ body?: never;
18290
+ path: {
18291
+ /**
18292
+ * ID of the runner
18293
+ */
18294
+ runner_id: string;
18295
+ };
18296
+ query?: never;
18297
+ url: '/user/actions/runners/{runner_id}';
18298
+ };
18299
+ type DeleteUserRunnerErrors = {
18300
+ /**
18301
+ * APIError is error format response
18302
+ */
18303
+ 400: ApiError;
18304
+ /**
18305
+ * APIUnauthorizedError is a unauthorized error response
18306
+ */
18307
+ 401: ApiUnauthorizedError;
18308
+ /**
18309
+ * APINotFound is a not found error response
18310
+ */
18311
+ 404: ApiNotFound;
18312
+ };
18313
+ type DeleteUserRunnerError = DeleteUserRunnerErrors[keyof DeleteUserRunnerErrors];
18314
+ type DeleteUserRunnerResponses = {
18315
+ /**
18316
+ * runner has been deleted
18317
+ */
18318
+ 204: unknown;
18319
+ };
18320
+ type GetUserRunnerData = {
18321
+ body?: never;
18322
+ path: {
18323
+ /**
18324
+ * ID of the runner
18325
+ */
18326
+ runner_id: string;
18327
+ };
18328
+ query?: never;
18329
+ url: '/user/actions/runners/{runner_id}';
18330
+ };
18331
+ type GetUserRunnerErrors = {
18332
+ /**
18333
+ * APIError is error format response
18334
+ */
18335
+ 400: ApiError;
18336
+ /**
18337
+ * APIUnauthorizedError is a unauthorized error response
18338
+ */
18339
+ 401: ApiUnauthorizedError;
18340
+ /**
18341
+ * APINotFound is a not found error response
18342
+ */
18343
+ 404: ApiNotFound;
18344
+ };
18345
+ type GetUserRunnerError = GetUserRunnerErrors[keyof GetUserRunnerErrors];
18346
+ type GetUserRunnerResponses = {
18347
+ /**
18348
+ * ActionRunner represents a runner
18349
+ */
18350
+ 200: ActionRunner;
18351
+ };
18352
+ type GetUserRunnerResponse = GetUserRunnerResponses[keyof GetUserRunnerResponses];
17567
18353
  type DeleteUserSecretData = {
17568
18354
  body?: never;
17569
18355
  path: {
@@ -17866,7 +18652,7 @@ type UserGetOAuth2ApplicationsErrors = {
17866
18652
  type UserGetOAuth2ApplicationsError = UserGetOAuth2ApplicationsErrors[keyof UserGetOAuth2ApplicationsErrors];
17867
18653
  type UserGetOAuth2ApplicationsResponses = {
17868
18654
  /**
17869
- * OAuth2ApplicationList represents a list of OAuth2 applications.
18655
+ * OAuth2ApplicationList
17870
18656
  */
17871
18657
  200: Array<OAuth2Application>;
17872
18658
  };
@@ -18538,7 +19324,7 @@ type UserListHooksErrors = {
18538
19324
  type UserListHooksError = UserListHooksErrors[keyof UserListHooksErrors];
18539
19325
  type UserListHooksResponses = {
18540
19326
  /**
18541
- * HookList
19327
+ * HookListWithoutPagination - Hooks without pagination headers
18542
19328
  */
18543
19329
  200: Array<Hook>;
18544
19330
  };
@@ -18848,7 +19634,7 @@ type OrgListCurrentUserOrgsErrors = {
18848
19634
  type OrgListCurrentUserOrgsError = OrgListCurrentUserOrgsErrors[keyof OrgListCurrentUserOrgsErrors];
18849
19635
  type OrgListCurrentUserOrgsResponses = {
18850
19636
  /**
18851
- * OrganizationList
19637
+ * OrganizationListWithoutPagination - Organizations without pagination headers
18852
19638
  */
18853
19639
  200: Array<Organization>;
18854
19640
  };
@@ -19783,7 +20569,7 @@ type OrgListUserOrgsErrors = {
19783
20569
  type OrgListUserOrgsError = OrgListUserOrgsErrors[keyof OrgListUserOrgsErrors];
19784
20570
  type OrgListUserOrgsResponses = {
19785
20571
  /**
19786
- * OrganizationList
20572
+ * OrganizationListWithoutPagination - Organizations without pagination headers
19787
20573
  */
19788
20574
  200: Array<Organization>;
19789
20575
  };
@@ -19956,7 +20742,7 @@ type UserGetTokensErrors = {
19956
20742
  type UserGetTokensError = UserGetTokensErrors[keyof UserGetTokensErrors];
19957
20743
  type UserGetTokensResponses = {
19958
20744
  /**
19959
- * AccessTokenList represents a list of API access token.
20745
+ * AccessTokenList
19960
20746
  */
19961
20747
  200: Array<AccessToken>;
19962
20748
  };
@@ -20101,6 +20887,35 @@ declare const activitypubPersonInbox: <ThrowOnError extends boolean = false>(opt
20101
20887
  * List the user's recorded activity
20102
20888
  */
20103
20889
  declare const activitypubPersonFeed: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonFeedData, ThrowOnError>) => RequestResult<ActivitypubPersonFeedResponses, ActivitypubPersonFeedErrors, ThrowOnError>;
20890
+ /**
20891
+ * Get all runners, no matter whether they are global runners or scoped to an organization, user, or repository
20892
+ */
20893
+ declare const getAdminRunners: <ThrowOnError extends boolean = false>(options?: Options<GetAdminRunnersData, ThrowOnError>) => RequestResult<GetAdminRunnersResponses, GetAdminRunnersErrors, ThrowOnError>;
20894
+ /**
20895
+ * Register a new global runner
20896
+ */
20897
+ declare const registerAdminRunner: <ThrowOnError extends boolean = false>(options?: Options<RegisterAdminRunnerData, ThrowOnError>) => RequestResult<RegisterAdminRunnerResponses, RegisterAdminRunnerErrors, ThrowOnError>;
20898
+ /**
20899
+ * Get action run jobs
20900
+ */
20901
+ declare const adminGetActionRunJobs: <ThrowOnError extends boolean = false>(options?: Options<AdminGetActionRunJobsData, ThrowOnError>) => RequestResult<AdminGetActionRunJobsResponses, AdminGetActionRunJobsErrors, ThrowOnError>;
20902
+ /**
20903
+ * Get a runner registration token for registering global runners
20904
+ *
20905
+ * This operation has been deprecated in Forgejo 15. Use the web UI or [`/admin/actions/runners`](#/admin/registerAdminRunner) instead.
20906
+ *
20907
+ *
20908
+ * @deprecated
20909
+ */
20910
+ declare const adminGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<AdminGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<AdminGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
20911
+ /**
20912
+ * Delete a particular runner, no matter whether it is a global runner or scoped to an organization, user, or repository
20913
+ */
20914
+ declare const deleteAdminRunner: <ThrowOnError extends boolean = false>(options: Options<DeleteAdminRunnerData, ThrowOnError>) => RequestResult<DeleteAdminRunnerResponses, DeleteAdminRunnerErrors, ThrowOnError>;
20915
+ /**
20916
+ * Get a particular runner, no matter whether it is a global runner or scoped to an organization, user, or repository
20917
+ */
20918
+ declare const getAdminRunner: <ThrowOnError extends boolean = false>(options: Options<GetAdminRunnerData, ThrowOnError>) => RequestResult<GetAdminRunnerResponses, GetAdminRunnerErrors, ThrowOnError>;
20104
20919
  /**
20105
20920
  * List cron tasks
20106
20921
  */
@@ -20198,13 +21013,23 @@ declare const adminGetQuotaRule: <ThrowOnError extends boolean = false>(options:
20198
21013
  */
20199
21014
  declare const adminEditQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminEditQuotaRuleData, ThrowOnError>) => RequestResult<AdminEditQuotaRuleResponses, AdminEditQuotaRuleErrors, ThrowOnError>;
20200
21015
  /**
20201
- * Search action jobs according filter conditions
21016
+ * Search action jobs according to filter conditions
21017
+ *
21018
+ * This operation has been deprecated in Forgejo 15. Use [`/admin/actions/runners/jobs`](#/admin/adminGetActionRunJobs) instead.
21019
+ *
21020
+ *
21021
+ * @deprecated
20202
21022
  */
20203
21023
  declare const adminSearchRunJobs: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchRunJobsData, ThrowOnError>) => RequestResult<AdminSearchRunJobsResponses, AdminSearchRunJobsErrors, ThrowOnError>;
20204
21024
  /**
20205
- * Get an global actions runner registration token
21025
+ * Get a runner registration token for registering global runners
21026
+ *
21027
+ * This operation has been deprecated in Forgejo 15. Use the web UI or [`/admin/actions/runners`](#/admin/registerAdminRunner) instead.
21028
+ *
21029
+ *
21030
+ * @deprecated
20206
21031
  */
20207
- declare const adminGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<AdminGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<AdminGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
21032
+ declare const adminGetRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<AdminGetRegistrationTokenData, ThrowOnError>) => RequestResult<AdminGetRegistrationTokenResponses, unknown, ThrowOnError>;
20208
21033
  /**
20209
21034
  * List unadopted repositories
20210
21035
  */
@@ -20355,14 +21180,35 @@ declare const orgGet: <ThrowOnError extends boolean = false>(options: Options<Or
20355
21180
  * Edit an organization
20356
21181
  */
20357
21182
  declare const orgEdit: <ThrowOnError extends boolean = false>(options: Options<OrgEditData, ThrowOnError>) => RequestResult<OrgEditResponses, OrgEditErrors, ThrowOnError>;
21183
+ /**
21184
+ * Get the organization's runners
21185
+ */
21186
+ declare const getOrgRunners: <ThrowOnError extends boolean = false>(options: Options<GetOrgRunnersData, ThrowOnError>) => RequestResult<GetOrgRunnersResponses, GetOrgRunnersErrors, ThrowOnError>;
21187
+ /**
21188
+ * Register a new organization-level runner
21189
+ */
21190
+ declare const registerOrgRunner: <ThrowOnError extends boolean = false>(options: Options<RegisterOrgRunnerData, ThrowOnError>) => RequestResult<RegisterOrgRunnerResponses, RegisterOrgRunnerErrors, ThrowOnError>;
20358
21191
  /**
20359
21192
  * Search for organization's action jobs according filter conditions
20360
21193
  */
20361
21194
  declare const orgSearchRunJobs: <ThrowOnError extends boolean = false>(options: Options<OrgSearchRunJobsData, ThrowOnError>) => RequestResult<OrgSearchRunJobsResponses, OrgSearchRunJobsErrors, ThrowOnError>;
20362
21195
  /**
20363
- * Get an organization's actions runner registration token
21196
+ * Get the organization's runner registration token
21197
+ *
21198
+ * This operation has been deprecated in Forgejo 15. Use the web UI or [`/orgs/{org}/actions/runners`](#/organization/registerOrgRunner) instead.
21199
+ *
21200
+ *
21201
+ * @deprecated
20364
21202
  */
20365
21203
  declare const orgGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options: Options<OrgGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<OrgGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
21204
+ /**
21205
+ * Delete a particular runner that belongs to the organization
21206
+ */
21207
+ declare const deleteOrgRunner: <ThrowOnError extends boolean = false>(options: Options<DeleteOrgRunnerData, ThrowOnError>) => RequestResult<DeleteOrgRunnerResponses, DeleteOrgRunnerErrors, ThrowOnError>;
21208
+ /**
21209
+ * Get a particular runner that belongs to the organization
21210
+ */
21211
+ declare const getOrgRunner: <ThrowOnError extends boolean = false>(options: Options<GetOrgRunnerData, ThrowOnError>) => RequestResult<GetOrgRunnerResponses, GetOrgRunnerErrors, ThrowOnError>;
20366
21212
  /**
20367
21213
  * List actions secrets of an organization
20368
21214
  */
@@ -20579,14 +21425,35 @@ declare const repoGet: <ThrowOnError extends boolean = false>(options: Options<R
20579
21425
  * Edit a repository's properties. Only fields that are set will be changed.
20580
21426
  */
20581
21427
  declare const repoEdit: <ThrowOnError extends boolean = false>(options: Options<RepoEditData, ThrowOnError>) => RequestResult<RepoEditResponses, RepoEditErrors, ThrowOnError>;
21428
+ /**
21429
+ * Get runners belonging to the repository
21430
+ */
21431
+ declare const getRepoRunners: <ThrowOnError extends boolean = false>(options: Options<GetRepoRunnersData, ThrowOnError>) => RequestResult<GetRepoRunnersResponses, GetRepoRunnersErrors, ThrowOnError>;
21432
+ /**
21433
+ * Register a new repository-level runner
21434
+ */
21435
+ declare const registerRepoRunner: <ThrowOnError extends boolean = false>(options: Options<RegisterRepoRunnerData, ThrowOnError>) => RequestResult<RegisterRepoRunnerResponses, RegisterRepoRunnerErrors, ThrowOnError>;
20582
21436
  /**
20583
21437
  * Search for repository's action jobs according filter conditions
20584
21438
  */
20585
21439
  declare const repoSearchRunJobs: <ThrowOnError extends boolean = false>(options: Options<RepoSearchRunJobsData, ThrowOnError>) => RequestResult<RepoSearchRunJobsResponses, RepoSearchRunJobsErrors, ThrowOnError>;
20586
21440
  /**
20587
- * Get a repository's actions runner registration token
21441
+ * Get a repository's runner registration token
21442
+ *
21443
+ * This operation has been deprecated in Forgejo 15. Use the web UI or [`/repos/{owner}/{repo}/actions/runners`](#/repository/registerRepoRunner) instead.
21444
+ *
21445
+ *
21446
+ * @deprecated
20588
21447
  */
20589
21448
  declare const repoGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options: Options<RepoGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<RepoGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
21449
+ /**
21450
+ * Delete a particular runner that belongs to a repository
21451
+ */
21452
+ declare const deleteRepoRunner: <ThrowOnError extends boolean = false>(options: Options<DeleteRepoRunnerData, ThrowOnError>) => RequestResult<DeleteRepoRunnerResponses, DeleteRepoRunnerErrors, ThrowOnError>;
21453
+ /**
21454
+ * Get a particular runner that belongs to the repository
21455
+ */
21456
+ declare const getRepoRunner: <ThrowOnError extends boolean = false>(options: Options<GetRepoRunnerData, ThrowOnError>) => RequestResult<GetRepoRunnerResponses, GetRepoRunnerErrors, ThrowOnError>;
20590
21457
  /**
20591
21458
  * List a repository's action runs
20592
21459
  */
@@ -21649,14 +22516,35 @@ declare const topicSearch: <ThrowOnError extends boolean = false>(options: Optio
21649
22516
  * Get the authenticated user
21650
22517
  */
21651
22518
  declare const userGetCurrent: <ThrowOnError extends boolean = false>(options?: Options<UserGetCurrentData, ThrowOnError>) => RequestResult<UserGetCurrentResponses, UserGetCurrentErrors, ThrowOnError>;
22519
+ /**
22520
+ * Get the user's runners
22521
+ */
22522
+ declare const getUserRunners: <ThrowOnError extends boolean = false>(options?: Options<GetUserRunnersData, ThrowOnError>) => RequestResult<GetUserRunnersResponses, GetUserRunnersErrors, ThrowOnError>;
22523
+ /**
22524
+ * Register a new user-level runner
22525
+ */
22526
+ declare const registerUserRunner: <ThrowOnError extends boolean = false>(options?: Options<RegisterUserRunnerData, ThrowOnError>) => RequestResult<RegisterUserRunnerResponses, RegisterUserRunnerErrors, ThrowOnError>;
21652
22527
  /**
21653
22528
  * Search for user's action jobs according filter conditions
21654
22529
  */
21655
22530
  declare const userSearchRunJobs: <ThrowOnError extends boolean = false>(options?: Options<UserSearchRunJobsData, ThrowOnError>) => RequestResult<UserSearchRunJobsResponses, UserSearchRunJobsErrors, ThrowOnError>;
21656
22531
  /**
21657
- * Get an user's actions runner registration token
22532
+ * Get the user's runner registration token
22533
+ *
22534
+ * This operation has been deprecated in Forgejo 15. Use the web UI or [`/user/actions/runners`](#/user/registerUserRunner) instead.
22535
+ *
22536
+ *
22537
+ * @deprecated
21658
22538
  */
21659
22539
  declare const userGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<UserGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<UserGetRunnerRegistrationTokenResponses, UserGetRunnerRegistrationTokenErrors, ThrowOnError>;
22540
+ /**
22541
+ * Delete a particular user-level runner
22542
+ */
22543
+ declare const deleteUserRunner: <ThrowOnError extends boolean = false>(options: Options<DeleteUserRunnerData, ThrowOnError>) => RequestResult<DeleteUserRunnerResponses, DeleteUserRunnerErrors, ThrowOnError>;
22544
+ /**
22545
+ * Get a particular runner that belongs to the user
22546
+ */
22547
+ declare const getUserRunner: <ThrowOnError extends boolean = false>(options: Options<GetUserRunnerData, ThrowOnError>) => RequestResult<GetUserRunnerResponses, GetUserRunnerErrors, ThrowOnError>;
21660
22548
  /**
21661
22549
  * Delete a secret in a user scope
21662
22550
  */
@@ -21962,4 +22850,4 @@ declare const userDeleteAccessToken: <ThrowOnError extends boolean = false>(opti
21962
22850
  */
21963
22851
  declare const getVersion: <ThrowOnError extends boolean = false>(options?: Options<GetVersionData, ThrowOnError>) => RequestResult<GetVersionResponses, unknown, ThrowOnError>;
21964
22852
 
21965
- 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 };
22853
+ 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 ActionRunner, 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 AdminGetActionRunJobsData, type AdminGetActionRunJobsError, type AdminGetActionRunJobsErrors, type AdminGetActionRunJobsResponse, type AdminGetActionRunJobsResponses, 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 AdminGetRegistrationTokenData, type AdminGetRegistrationTokenResponse, type AdminGetRegistrationTokenResponses, 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 DeleteAdminRunnerData, type DeleteAdminRunnerError, type DeleteAdminRunnerErrors, type DeleteAdminRunnerResponses, type DeleteEmailOption, type DeleteFileOptions, type DeleteLabelsOption, type DeleteOrgRunnerData, type DeleteOrgRunnerError, type DeleteOrgRunnerErrors, type DeleteOrgRunnerResponses, 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 DeleteRepoRunnerData, type DeleteRepoRunnerError, type DeleteRepoRunnerErrors, type DeleteRepoRunnerResponses, type DeleteRepoSecretData, type DeleteRepoSecretError, type DeleteRepoSecretErrors, type DeleteRepoSecretResponses, type DeleteRepoVariableData, type DeleteRepoVariableError, type DeleteRepoVariableErrors, type DeleteRepoVariableResponses, type DeleteUserRunnerData, type DeleteUserRunnerError, type DeleteUserRunnerErrors, type DeleteUserRunnerResponses, 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 GetAdminRunnerData, type GetAdminRunnerError, type GetAdminRunnerErrors, type GetAdminRunnerResponse, type GetAdminRunnerResponses, type GetAdminRunnersData, type GetAdminRunnersError, type GetAdminRunnersErrors, type GetAdminRunnersResponse, type GetAdminRunnersResponses, 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 GetOrgRunnerData, type GetOrgRunnerError, type GetOrgRunnerErrors, type GetOrgRunnerResponse, type GetOrgRunnerResponses, type GetOrgRunnersData, type GetOrgRunnersError, type GetOrgRunnersErrors, type GetOrgRunnersResponse, type GetOrgRunnersResponses, 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 GetRepoRunnerData, type GetRepoRunnerError, type GetRepoRunnerErrors, type GetRepoRunnerResponse, type GetRepoRunnerResponses, type GetRepoRunnersData, type GetRepoRunnersError, type GetRepoRunnersErrors, type GetRepoRunnersResponse, type GetRepoRunnersResponses, 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 GetUserRunnerData, type GetUserRunnerError, type GetUserRunnerErrors, type GetUserRunnerResponse, type GetUserRunnerResponses, type GetUserRunnersData, type GetUserRunnersError, type GetUserRunnersErrors, type GetUserRunnersResponse, type GetUserRunnersResponses, 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 RegisterAdminRunnerData, type RegisterAdminRunnerError, type RegisterAdminRunnerErrors, type RegisterAdminRunnerResponse, type RegisterAdminRunnerResponses, type RegisterOrgRunnerData, type RegisterOrgRunnerError, type RegisterOrgRunnerErrors, type RegisterOrgRunnerResponse, type RegisterOrgRunnerResponses, type RegisterRepoRunnerData, type RegisterRepoRunnerError, type RegisterRepoRunnerErrors, type RegisterRepoRunnerResponse, type RegisterRepoRunnerResponses, type RegisterRunnerOptions, type RegisterRunnerResponse, type RegisterUserRunnerData, type RegisterUserRunnerError, type RegisterUserRunnerErrors, type RegisterUserRunnerResponse, type RegisterUserRunnerResponses, 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 RepoTargetOption, 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, adminGetActionRunJobs, adminGetAllEmails, adminGetAllOrgs, adminGetHook, adminGetQuotaGroup, adminGetQuotaRule, adminGetRegistrationToken, adminGetRunnerRegistrationToken, adminGetUserQuota, adminListHooks, adminListQuotaGroups, adminListQuotaRules, adminListUserEmails, adminListUsersInQuotaGroup, adminRemoveRuleFromQuotaGroup, adminRemoveUserFromQuotaGroup, adminRenameUser, adminSearchEmails, adminSearchRunJobs, adminSearchUsers, adminSetUserQuotaGroups, adminUnadoptedList, createCurrentUserRepo, createFork, createOrgRepo, createOrgRepoDeprecated, createOrgVariable, createRepoVariable, createUserVariable, deleteAdminRunner, deleteOrgRunner, deleteOrgSecret, deleteOrgVariable, deletePackage, deleteRepoRunner, deleteRepoSecret, deleteRepoVariable, deleteUserRunner, deleteUserSecret, deleteUserVariable, dispatchWorkflow, generateRepo, getAdminRunner, getAdminRunners, getAnnotatedTag, getBlob, getBlobs, getGeneralApiSettings, getGeneralAttachmentSettings, getGeneralRepositorySettings, getGeneralUiSettings, getGitignoreTemplateInfo, getLabelTemplateInfo, getLicenseTemplateInfo, getNodeInfo, getOrgRunner, getOrgRunners, getOrgVariable, getOrgVariablesList, getPackage, getRepoRunner, getRepoRunners, getRepoVariable, getRepoVariablesList, getSigningKey, getSshSigningKey, getTree, getUserRunner, getUserRunners, 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, registerAdminRunner, registerOrgRunner, registerRepoRunner, registerUserRunner, 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 };