@llamaduck/forgejo-ts 14.0.2-2 → 14.0.2-3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,3 +1,5 @@
1
+ import { CreateAxiosDefaults, AxiosStatic, AxiosInstance, AxiosRequestHeaders, AxiosResponse, AxiosError } from 'axios';
2
+
1
3
  type AuthToken = string | undefined;
2
4
  interface Auth {
3
5
  /**
@@ -183,59 +185,25 @@ type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> =
183
185
  stream: AsyncGenerator<TData extends Record<string, unknown> ? TData[keyof TData] : TData, TReturn, TNext>;
184
186
  };
185
187
 
186
- type ErrInterceptor<Err, Res, Req, Options> = (error: Err, response: Res, request: Req, options: Options) => Err | Promise<Err>;
187
- type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
188
- type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
189
- declare class Interceptors<Interceptor> {
190
- fns: Array<Interceptor | null>;
191
- clear(): void;
192
- eject(id: number | Interceptor): void;
193
- exists(id: number | Interceptor): boolean;
194
- getInterceptorIndex(id: number | Interceptor): number;
195
- update(id: number | Interceptor, fn: Interceptor): number | Interceptor | false;
196
- use(fn: Interceptor): number;
197
- }
198
- interface Middleware<Req, Res, Err, Options> {
199
- error: Interceptors<ErrInterceptor<Err, Res, Req, Options>>;
200
- request: Interceptors<ReqInterceptor<Req, Options>>;
201
- response: Interceptors<ResInterceptor<Res, Req, Options>>;
202
- }
203
-
204
- type ResponseStyle = 'data' | 'fields';
205
- interface Config<T extends ClientOptions$1 = ClientOptions$1> extends Omit<RequestInit, 'body' | 'headers' | 'method'>, Config$1 {
206
- /**
207
- * Base URL for all requests made by this client.
208
- */
209
- baseUrl?: T['baseUrl'];
210
- /**
211
- * Fetch API implementation. You can use this option to provide a custom
212
- * fetch instance.
213
- *
214
- * @default globalThis.fetch
215
- */
216
- fetch?: typeof fetch;
188
+ interface Config<T extends ClientOptions$1 = ClientOptions$1> extends Omit<CreateAxiosDefaults, 'auth' | 'baseURL' | 'headers' | 'method'>, Config$1 {
217
189
  /**
218
- * Please don't use the Fetch client for Next.js applications. The `next`
219
- * options won't have any effect.
190
+ * Axios implementation. You can use this option to provide either an
191
+ * `AxiosStatic` or an `AxiosInstance`.
220
192
  *
221
- * Install {@link https://www.npmjs.com/package/@hey-api/client-next `@hey-api/client-next`} instead.
193
+ * @default axios
222
194
  */
223
- next?: never;
195
+ axios?: AxiosStatic | AxiosInstance;
224
196
  /**
225
- * Return the response data parsed in a specified format. By default, `auto`
226
- * will infer the appropriate method from the `Content-Type` response header.
227
- * You can override this behavior with any of the {@link Body} methods.
228
- * Select `stream` if you don't want to parse response data at all.
229
- *
230
- * @default 'auto'
197
+ * Base URL for all requests made by this client.
231
198
  */
232
- parseAs?: 'arrayBuffer' | 'auto' | 'blob' | 'formData' | 'json' | 'stream' | 'text';
199
+ baseURL?: T['baseURL'];
233
200
  /**
234
- * Should we return only data or multiple fields (data, error, response, etc.)?
201
+ * An object containing any HTTP headers that you want to pre-populate your
202
+ * `Headers` object with.
235
203
  *
236
- * @default 'fields'
204
+ * {@link https://developer.mozilla.org/docs/Web/API/Headers/Headers#init See more}
237
205
  */
238
- responseStyle?: ResponseStyle;
206
+ headers?: AxiosRequestHeaders | Record<string, string | number | boolean | (string | number | boolean)[] | null | undefined | unknown>;
239
207
  /**
240
208
  * Throw an error instead of returning it in the response?
241
209
  *
@@ -243,8 +211,7 @@ interface Config<T extends ClientOptions$1 = ClientOptions$1> extends Omit<Reque
243
211
  */
244
212
  throwOnError?: T['throwOnError'];
245
213
  }
246
- interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
247
- responseStyle: TResponseStyle;
214
+ interface RequestOptions<TData = unknown, ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
248
215
  throwOnError: ThrowOnError;
249
216
  }>, Pick<ServerSentEventsOptions<TData>, 'onSseError' | 'onSseEvent' | 'sseDefaultRetryDelay' | 'sseMaxRetryAttempts' | 'sseMaxRetryDelay'> {
250
217
  /**
@@ -261,31 +228,19 @@ interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle =
261
228
  security?: ReadonlyArray<Auth>;
262
229
  url: Url;
263
230
  }
264
- interface ResolvedRequestOptions<TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends RequestOptions<unknown, TResponseStyle, ThrowOnError, Url> {
265
- serializedBody?: string;
231
+ interface ClientOptions$1 {
232
+ baseURL?: string;
233
+ throwOnError?: boolean;
266
234
  }
267
- type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boolean = boolean, TResponseStyle extends ResponseStyle = 'fields'> = ThrowOnError extends true ? Promise<TResponseStyle extends 'data' ? TData extends Record<string, unknown> ? TData[keyof TData] : TData : {
268
- data: TData extends Record<string, unknown> ? TData[keyof TData] : TData;
269
- request: Request;
270
- response: Response;
271
- }> : Promise<TResponseStyle extends 'data' ? (TData extends Record<string, unknown> ? TData[keyof TData] : TData) | undefined : ({
272
- data: TData extends Record<string, unknown> ? TData[keyof TData] : TData;
235
+ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boolean = boolean> = ThrowOnError extends true ? Promise<AxiosResponse<TData extends Record<string, unknown> ? TData[keyof TData] : TData>> : Promise<(AxiosResponse<TData extends Record<string, unknown> ? TData[keyof TData] : TData> & {
273
236
  error: undefined;
274
- } | {
237
+ }) | (AxiosError<TError extends Record<string, unknown> ? TError[keyof TError] : TError> & {
275
238
  data: undefined;
276
239
  error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
277
- }) & {
278
- request: Request;
279
- response: Response;
280
- }>;
281
- interface ClientOptions$1 {
282
- baseUrl?: string;
283
- responseStyle?: ResponseStyle;
284
- throwOnError?: boolean;
285
- }
286
- type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
287
- type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
288
- type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
240
+ })>;
241
+ type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions<TData, ThrowOnError>, 'method'>) => RequestResult<TData, TError, ThrowOnError>;
242
+ type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions<TData, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
243
+ type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false>(options: Omit<RequestOptions<TData, ThrowOnError>, 'method'> & Pick<Required<RequestOptions<TData, ThrowOnError>>, 'method'>) => RequestResult<TData, TError, ThrowOnError>;
289
244
  type BuildUrlFn = <TData extends {
290
245
  body?: unknown;
291
246
  path?: Record<string, unknown>;
@@ -293,7 +248,7 @@ type BuildUrlFn = <TData extends {
293
248
  url: string;
294
249
  }>(options: TData & Options$1<TData>) => string;
295
250
  type Client = Client$1<RequestFn, Config, MethodFn, BuildUrlFn, SseFn> & {
296
- interceptors: Middleware<Request, Response, unknown, ResolvedRequestOptions>;
251
+ instance: AxiosInstance;
297
252
  };
298
253
  interface TDataShape {
299
254
  body?: unknown;
@@ -303,10 +258,10 @@ interface TDataShape {
303
258
  url: string;
304
259
  }
305
260
  type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
306
- type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
261
+ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = OmitKeys<RequestOptions<TResponse, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
307
262
 
308
263
  type ClientOptions = {
309
- baseUrl: `https://${string}/api/v1` | `http://${string}/api/v1` | (string & {});
264
+ baseURL: 'https://swagger.json/api/v1' | 'http://swagger.json/api/v1' | (string & {});
310
265
  };
311
266
  /**
312
267
  * APIError is an api error with a message
@@ -20105,1906 +20060,1906 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
20105
20060
  /**
20106
20061
  * Returns the instance's Actor
20107
20062
  */
20108
- declare const activitypubInstanceActor: <ThrowOnError extends boolean = false>(options?: Options<ActivitypubInstanceActorData, ThrowOnError>) => RequestResult<ActivitypubInstanceActorResponses, unknown, ThrowOnError, "fields">;
20063
+ declare const activitypubInstanceActor: <ThrowOnError extends boolean = false>(options?: Options<ActivitypubInstanceActorData, ThrowOnError>) => RequestResult<ActivitypubInstanceActorResponses, unknown, ThrowOnError>;
20109
20064
  /**
20110
20065
  * Send to the inbox
20111
20066
  */
20112
- declare const activitypubInstanceActorInbox: <ThrowOnError extends boolean = false>(options?: Options<ActivitypubInstanceActorInboxData, ThrowOnError>) => RequestResult<ActivitypubInstanceActorInboxResponses, unknown, ThrowOnError, "fields">;
20067
+ declare const activitypubInstanceActorInbox: <ThrowOnError extends boolean = false>(options?: Options<ActivitypubInstanceActorInboxData, ThrowOnError>) => RequestResult<ActivitypubInstanceActorInboxResponses, unknown, ThrowOnError>;
20113
20068
  /**
20114
20069
  * Display the outbox (always empty)
20115
20070
  */
20116
- declare const activitypubInstanceActorOutbox: <ThrowOnError extends boolean = false>(options?: Options<ActivitypubInstanceActorOutboxData, ThrowOnError>) => RequestResult<ActivitypubInstanceActorOutboxResponses, unknown, ThrowOnError, "fields">;
20071
+ declare const activitypubInstanceActorOutbox: <ThrowOnError extends boolean = false>(options?: Options<ActivitypubInstanceActorOutboxData, ThrowOnError>) => RequestResult<ActivitypubInstanceActorOutboxResponses, unknown, ThrowOnError>;
20117
20072
  /**
20118
20073
  * Returns the Repository actor for a repo
20119
20074
  */
20120
- declare const activitypubRepository: <ThrowOnError extends boolean = false>(options: Options<ActivitypubRepositoryData, ThrowOnError>) => RequestResult<ActivitypubRepositoryResponses, unknown, ThrowOnError, "fields">;
20075
+ declare const activitypubRepository: <ThrowOnError extends boolean = false>(options: Options<ActivitypubRepositoryData, ThrowOnError>) => RequestResult<ActivitypubRepositoryResponses, unknown, ThrowOnError>;
20121
20076
  /**
20122
20077
  * Send to the inbox
20123
20078
  */
20124
- declare const activitypubRepositoryInbox: <ThrowOnError extends boolean = false>(options: Options<ActivitypubRepositoryInboxData, ThrowOnError>) => RequestResult<ActivitypubRepositoryInboxResponses, unknown, ThrowOnError, "fields">;
20079
+ declare const activitypubRepositoryInbox: <ThrowOnError extends boolean = false>(options: Options<ActivitypubRepositoryInboxData, ThrowOnError>) => RequestResult<ActivitypubRepositoryInboxResponses, unknown, ThrowOnError>;
20125
20080
  /**
20126
20081
  * Display the outbox
20127
20082
  */
20128
- declare const activitypubRepositoryOutbox: <ThrowOnError extends boolean = false>(options: Options<ActivitypubRepositoryOutboxData, ThrowOnError>) => RequestResult<ActivitypubRepositoryOutboxResponses, unknown, ThrowOnError, "fields">;
20083
+ declare const activitypubRepositoryOutbox: <ThrowOnError extends boolean = false>(options: Options<ActivitypubRepositoryOutboxData, ThrowOnError>) => RequestResult<ActivitypubRepositoryOutboxResponses, unknown, ThrowOnError>;
20129
20084
  /**
20130
20085
  * Returns the Person actor for a user
20131
20086
  */
20132
- declare const activitypubPerson: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonData, ThrowOnError>) => RequestResult<ActivitypubPersonResponses, unknown, ThrowOnError, "fields">;
20087
+ declare const activitypubPerson: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonData, ThrowOnError>) => RequestResult<ActivitypubPersonResponses, unknown, ThrowOnError>;
20133
20088
  /**
20134
20089
  * Get a specific activity object of the user
20135
20090
  */
20136
- declare const activitypubPersonActivityNote: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonActivityNoteData, ThrowOnError>) => RequestResult<ActivitypubPersonActivityNoteResponses, unknown, ThrowOnError, "fields">;
20091
+ declare const activitypubPersonActivityNote: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonActivityNoteData, ThrowOnError>) => RequestResult<ActivitypubPersonActivityNoteResponses, unknown, ThrowOnError>;
20137
20092
  /**
20138
20093
  * Get a specific activity of the user
20139
20094
  */
20140
- declare const activitypubPersonActivity: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonActivityData, ThrowOnError>) => RequestResult<ActivitypubPersonActivityResponses, unknown, ThrowOnError, "fields">;
20095
+ declare const activitypubPersonActivity: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonActivityData, ThrowOnError>) => RequestResult<ActivitypubPersonActivityResponses, unknown, ThrowOnError>;
20141
20096
  /**
20142
20097
  * Send to the inbox
20143
20098
  */
20144
- declare const activitypubPersonInbox: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonInboxData, ThrowOnError>) => RequestResult<ActivitypubPersonInboxResponses, unknown, ThrowOnError, "fields">;
20099
+ declare const activitypubPersonInbox: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonInboxData, ThrowOnError>) => RequestResult<ActivitypubPersonInboxResponses, unknown, ThrowOnError>;
20145
20100
  /**
20146
20101
  * List the user's recorded activity
20147
20102
  */
20148
- declare const activitypubPersonFeed: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonFeedData, ThrowOnError>) => RequestResult<ActivitypubPersonFeedResponses, ActivitypubPersonFeedErrors, ThrowOnError, "fields">;
20103
+ declare const activitypubPersonFeed: <ThrowOnError extends boolean = false>(options: Options<ActivitypubPersonFeedData, ThrowOnError>) => RequestResult<ActivitypubPersonFeedResponses, ActivitypubPersonFeedErrors, ThrowOnError>;
20149
20104
  /**
20150
20105
  * List cron tasks
20151
20106
  */
20152
- declare const adminCronList: <ThrowOnError extends boolean = false>(options?: Options<AdminCronListData, ThrowOnError>) => RequestResult<AdminCronListResponses, AdminCronListErrors, ThrowOnError, "fields">;
20107
+ declare const adminCronList: <ThrowOnError extends boolean = false>(options?: Options<AdminCronListData, ThrowOnError>) => RequestResult<AdminCronListResponses, AdminCronListErrors, ThrowOnError>;
20153
20108
  /**
20154
20109
  * Run cron task
20155
20110
  */
20156
- declare const adminCronRun: <ThrowOnError extends boolean = false>(options: Options<AdminCronRunData, ThrowOnError>) => RequestResult<AdminCronRunResponses, AdminCronRunErrors, ThrowOnError, "fields">;
20111
+ declare const adminCronRun: <ThrowOnError extends boolean = false>(options: Options<AdminCronRunData, ThrowOnError>) => RequestResult<AdminCronRunResponses, AdminCronRunErrors, ThrowOnError>;
20157
20112
  /**
20158
20113
  * List all users' email addresses
20159
20114
  */
20160
- declare const adminGetAllEmails: <ThrowOnError extends boolean = false>(options?: Options<AdminGetAllEmailsData, ThrowOnError>) => RequestResult<AdminGetAllEmailsResponses, AdminGetAllEmailsErrors, ThrowOnError, "fields">;
20115
+ declare const adminGetAllEmails: <ThrowOnError extends boolean = false>(options?: Options<AdminGetAllEmailsData, ThrowOnError>) => RequestResult<AdminGetAllEmailsResponses, AdminGetAllEmailsErrors, ThrowOnError>;
20161
20116
  /**
20162
20117
  * Search users' email addresses
20163
20118
  */
20164
- declare const adminSearchEmails: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchEmailsData, ThrowOnError>) => RequestResult<AdminSearchEmailsResponses, AdminSearchEmailsErrors, ThrowOnError, "fields">;
20119
+ declare const adminSearchEmails: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchEmailsData, ThrowOnError>) => RequestResult<AdminSearchEmailsResponses, AdminSearchEmailsErrors, ThrowOnError>;
20165
20120
  /**
20166
20121
  * List global (system) webhooks
20167
20122
  */
20168
- declare const adminListHooks: <ThrowOnError extends boolean = false>(options?: Options<AdminListHooksData, ThrowOnError>) => RequestResult<AdminListHooksResponses, unknown, ThrowOnError, "fields">;
20123
+ declare const adminListHooks: <ThrowOnError extends boolean = false>(options?: Options<AdminListHooksData, ThrowOnError>) => RequestResult<AdminListHooksResponses, unknown, ThrowOnError>;
20169
20124
  /**
20170
20125
  * Create a hook
20171
20126
  */
20172
- declare const adminCreateHook: <ThrowOnError extends boolean = false>(options: Options<AdminCreateHookData, ThrowOnError>) => RequestResult<AdminCreateHookResponses, unknown, ThrowOnError, "fields">;
20127
+ declare const adminCreateHook: <ThrowOnError extends boolean = false>(options: Options<AdminCreateHookData, ThrowOnError>) => RequestResult<AdminCreateHookResponses, unknown, ThrowOnError>;
20173
20128
  /**
20174
20129
  * Delete a hook
20175
20130
  */
20176
- declare const adminDeleteHook: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteHookData, ThrowOnError>) => RequestResult<AdminDeleteHookResponses, unknown, ThrowOnError, "fields">;
20131
+ declare const adminDeleteHook: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteHookData, ThrowOnError>) => RequestResult<AdminDeleteHookResponses, unknown, ThrowOnError>;
20177
20132
  /**
20178
20133
  * Get a hook
20179
20134
  */
20180
- declare const adminGetHook: <ThrowOnError extends boolean = false>(options: Options<AdminGetHookData, ThrowOnError>) => RequestResult<AdminGetHookResponses, unknown, ThrowOnError, "fields">;
20135
+ declare const adminGetHook: <ThrowOnError extends boolean = false>(options: Options<AdminGetHookData, ThrowOnError>) => RequestResult<AdminGetHookResponses, unknown, ThrowOnError>;
20181
20136
  /**
20182
20137
  * Update a hook
20183
20138
  */
20184
- declare const adminEditHook: <ThrowOnError extends boolean = false>(options: Options<AdminEditHookData, ThrowOnError>) => RequestResult<AdminEditHookResponses, unknown, ThrowOnError, "fields">;
20139
+ declare const adminEditHook: <ThrowOnError extends boolean = false>(options: Options<AdminEditHookData, ThrowOnError>) => RequestResult<AdminEditHookResponses, unknown, ThrowOnError>;
20185
20140
  /**
20186
20141
  * List all organizations
20187
20142
  */
20188
- declare const adminGetAllOrgs: <ThrowOnError extends boolean = false>(options?: Options<AdminGetAllOrgsData, ThrowOnError>) => RequestResult<AdminGetAllOrgsResponses, AdminGetAllOrgsErrors, ThrowOnError, "fields">;
20143
+ declare const adminGetAllOrgs: <ThrowOnError extends boolean = false>(options?: Options<AdminGetAllOrgsData, ThrowOnError>) => RequestResult<AdminGetAllOrgsResponses, AdminGetAllOrgsErrors, ThrowOnError>;
20189
20144
  /**
20190
20145
  * List the available quota groups
20191
20146
  */
20192
- declare const adminListQuotaGroups: <ThrowOnError extends boolean = false>(options?: Options<AdminListQuotaGroupsData, ThrowOnError>) => RequestResult<AdminListQuotaGroupsResponses, AdminListQuotaGroupsErrors, ThrowOnError, "fields">;
20147
+ declare const adminListQuotaGroups: <ThrowOnError extends boolean = false>(options?: Options<AdminListQuotaGroupsData, ThrowOnError>) => RequestResult<AdminListQuotaGroupsResponses, AdminListQuotaGroupsErrors, ThrowOnError>;
20193
20148
  /**
20194
20149
  * Create a new quota group
20195
20150
  */
20196
- declare const adminCreateQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminCreateQuotaGroupData, ThrowOnError>) => RequestResult<AdminCreateQuotaGroupResponses, AdminCreateQuotaGroupErrors, ThrowOnError, "fields">;
20151
+ declare const adminCreateQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminCreateQuotaGroupData, ThrowOnError>) => RequestResult<AdminCreateQuotaGroupResponses, AdminCreateQuotaGroupErrors, ThrowOnError>;
20197
20152
  /**
20198
20153
  * Delete a quota group
20199
20154
  */
20200
- declare const adminDeleteQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteQuotaGroupData, ThrowOnError>) => RequestResult<AdminDeleteQuotaGroupResponses, AdminDeleteQuotaGroupErrors, ThrowOnError, "fields">;
20155
+ declare const adminDeleteQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteQuotaGroupData, ThrowOnError>) => RequestResult<AdminDeleteQuotaGroupResponses, AdminDeleteQuotaGroupErrors, ThrowOnError>;
20201
20156
  /**
20202
20157
  * Get information about the quota group
20203
20158
  */
20204
- declare const adminGetQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminGetQuotaGroupData, ThrowOnError>) => RequestResult<AdminGetQuotaGroupResponses, AdminGetQuotaGroupErrors, ThrowOnError, "fields">;
20159
+ declare const adminGetQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminGetQuotaGroupData, ThrowOnError>) => RequestResult<AdminGetQuotaGroupResponses, AdminGetQuotaGroupErrors, ThrowOnError>;
20205
20160
  /**
20206
20161
  * Removes a rule from a quota group
20207
20162
  */
20208
- declare const adminRemoveRuleFromQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminRemoveRuleFromQuotaGroupData, ThrowOnError>) => RequestResult<AdminRemoveRuleFromQuotaGroupResponses, AdminRemoveRuleFromQuotaGroupErrors, ThrowOnError, "fields">;
20163
+ declare const adminRemoveRuleFromQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminRemoveRuleFromQuotaGroupData, ThrowOnError>) => RequestResult<AdminRemoveRuleFromQuotaGroupResponses, AdminRemoveRuleFromQuotaGroupErrors, ThrowOnError>;
20209
20164
  /**
20210
20165
  * Adds a rule to a quota group
20211
20166
  */
20212
- declare const adminAddRuleToQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminAddRuleToQuotaGroupData, ThrowOnError>) => RequestResult<AdminAddRuleToQuotaGroupResponses, AdminAddRuleToQuotaGroupErrors, ThrowOnError, "fields">;
20167
+ declare const adminAddRuleToQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminAddRuleToQuotaGroupData, ThrowOnError>) => RequestResult<AdminAddRuleToQuotaGroupResponses, AdminAddRuleToQuotaGroupErrors, ThrowOnError>;
20213
20168
  /**
20214
20169
  * List users in a quota group
20215
20170
  */
20216
- declare const adminListUsersInQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminListUsersInQuotaGroupData, ThrowOnError>) => RequestResult<AdminListUsersInQuotaGroupResponses, AdminListUsersInQuotaGroupErrors, ThrowOnError, "fields">;
20171
+ declare const adminListUsersInQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminListUsersInQuotaGroupData, ThrowOnError>) => RequestResult<AdminListUsersInQuotaGroupResponses, AdminListUsersInQuotaGroupErrors, ThrowOnError>;
20217
20172
  /**
20218
20173
  * Remove a user from a quota group
20219
20174
  */
20220
- declare const adminRemoveUserFromQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminRemoveUserFromQuotaGroupData, ThrowOnError>) => RequestResult<AdminRemoveUserFromQuotaGroupResponses, AdminRemoveUserFromQuotaGroupErrors, ThrowOnError, "fields">;
20175
+ declare const adminRemoveUserFromQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminRemoveUserFromQuotaGroupData, ThrowOnError>) => RequestResult<AdminRemoveUserFromQuotaGroupResponses, AdminRemoveUserFromQuotaGroupErrors, ThrowOnError>;
20221
20176
  /**
20222
20177
  * Add a user to a quota group
20223
20178
  */
20224
- declare const adminAddUserToQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminAddUserToQuotaGroupData, ThrowOnError>) => RequestResult<AdminAddUserToQuotaGroupResponses, AdminAddUserToQuotaGroupErrors, ThrowOnError, "fields">;
20179
+ declare const adminAddUserToQuotaGroup: <ThrowOnError extends boolean = false>(options: Options<AdminAddUserToQuotaGroupData, ThrowOnError>) => RequestResult<AdminAddUserToQuotaGroupResponses, AdminAddUserToQuotaGroupErrors, ThrowOnError>;
20225
20180
  /**
20226
20181
  * List the available quota rules
20227
20182
  */
20228
- declare const adminListQuotaRules: <ThrowOnError extends boolean = false>(options?: Options<AdminListQuotaRulesData, ThrowOnError>) => RequestResult<AdminListQuotaRulesResponses, AdminListQuotaRulesErrors, ThrowOnError, "fields">;
20183
+ declare const adminListQuotaRules: <ThrowOnError extends boolean = false>(options?: Options<AdminListQuotaRulesData, ThrowOnError>) => RequestResult<AdminListQuotaRulesResponses, AdminListQuotaRulesErrors, ThrowOnError>;
20229
20184
  /**
20230
20185
  * Create a new quota rule
20231
20186
  */
20232
- declare const adminCreateQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminCreateQuotaRuleData, ThrowOnError>) => RequestResult<AdminCreateQuotaRuleResponses, AdminCreateQuotaRuleErrors, ThrowOnError, "fields">;
20187
+ declare const adminCreateQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminCreateQuotaRuleData, ThrowOnError>) => RequestResult<AdminCreateQuotaRuleResponses, AdminCreateQuotaRuleErrors, ThrowOnError>;
20233
20188
  /**
20234
20189
  * Deletes a quota rule
20235
20190
  */
20236
- declare const adminDeleteQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteQuotaRuleData, ThrowOnError>) => RequestResult<AdminDeleteQuotaRuleResponses, AdminDeleteQuotaRuleErrors, ThrowOnError, "fields">;
20191
+ declare const adminDeleteQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteQuotaRuleData, ThrowOnError>) => RequestResult<AdminDeleteQuotaRuleResponses, AdminDeleteQuotaRuleErrors, ThrowOnError>;
20237
20192
  /**
20238
20193
  * Get information about a quota rule
20239
20194
  */
20240
- declare const adminGetQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminGetQuotaRuleData, ThrowOnError>) => RequestResult<AdminGetQuotaRuleResponses, AdminGetQuotaRuleErrors, ThrowOnError, "fields">;
20195
+ declare const adminGetQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminGetQuotaRuleData, ThrowOnError>) => RequestResult<AdminGetQuotaRuleResponses, AdminGetQuotaRuleErrors, ThrowOnError>;
20241
20196
  /**
20242
20197
  * Change an existing quota rule
20243
20198
  */
20244
- declare const adminEditQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminEditQuotaRuleData, ThrowOnError>) => RequestResult<AdminEditQuotaRuleResponses, AdminEditQuotaRuleErrors, ThrowOnError, "fields">;
20199
+ declare const adminEditQuotaRule: <ThrowOnError extends boolean = false>(options: Options<AdminEditQuotaRuleData, ThrowOnError>) => RequestResult<AdminEditQuotaRuleResponses, AdminEditQuotaRuleErrors, ThrowOnError>;
20245
20200
  /**
20246
20201
  * Search action jobs according filter conditions
20247
20202
  */
20248
- declare const adminSearchRunJobs: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchRunJobsData, ThrowOnError>) => RequestResult<AdminSearchRunJobsResponses, AdminSearchRunJobsErrors, ThrowOnError, "fields">;
20203
+ declare const adminSearchRunJobs: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchRunJobsData, ThrowOnError>) => RequestResult<AdminSearchRunJobsResponses, AdminSearchRunJobsErrors, ThrowOnError>;
20249
20204
  /**
20250
20205
  * Get an global actions runner registration token
20251
20206
  */
20252
- declare const adminGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<AdminGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<AdminGetRunnerRegistrationTokenResponses, unknown, ThrowOnError, "fields">;
20207
+ declare const adminGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<AdminGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<AdminGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
20253
20208
  /**
20254
20209
  * List unadopted repositories
20255
20210
  */
20256
- declare const adminUnadoptedList: <ThrowOnError extends boolean = false>(options?: Options<AdminUnadoptedListData, ThrowOnError>) => RequestResult<AdminUnadoptedListResponses, AdminUnadoptedListErrors, ThrowOnError, "fields">;
20211
+ declare const adminUnadoptedList: <ThrowOnError extends boolean = false>(options?: Options<AdminUnadoptedListData, ThrowOnError>) => RequestResult<AdminUnadoptedListResponses, AdminUnadoptedListErrors, ThrowOnError>;
20257
20212
  /**
20258
20213
  * Delete unadopted files
20259
20214
  */
20260
- declare const adminDeleteUnadoptedRepository: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUnadoptedRepositoryData, ThrowOnError>) => RequestResult<AdminDeleteUnadoptedRepositoryResponses, AdminDeleteUnadoptedRepositoryErrors, ThrowOnError, "fields">;
20215
+ declare const adminDeleteUnadoptedRepository: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUnadoptedRepositoryData, ThrowOnError>) => RequestResult<AdminDeleteUnadoptedRepositoryResponses, AdminDeleteUnadoptedRepositoryErrors, ThrowOnError>;
20261
20216
  /**
20262
20217
  * Adopt unadopted files as a repository
20263
20218
  */
20264
- declare const adminAdoptRepository: <ThrowOnError extends boolean = false>(options: Options<AdminAdoptRepositoryData, ThrowOnError>) => RequestResult<AdminAdoptRepositoryResponses, AdminAdoptRepositoryErrors, ThrowOnError, "fields">;
20219
+ declare const adminAdoptRepository: <ThrowOnError extends boolean = false>(options: Options<AdminAdoptRepositoryData, ThrowOnError>) => RequestResult<AdminAdoptRepositoryResponses, AdminAdoptRepositoryErrors, ThrowOnError>;
20265
20220
  /**
20266
20221
  * Search users according filter conditions
20267
20222
  */
20268
- declare const adminSearchUsers: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchUsersData, ThrowOnError>) => RequestResult<AdminSearchUsersResponses, AdminSearchUsersErrors, ThrowOnError, "fields">;
20223
+ declare const adminSearchUsers: <ThrowOnError extends boolean = false>(options?: Options<AdminSearchUsersData, ThrowOnError>) => RequestResult<AdminSearchUsersResponses, AdminSearchUsersErrors, ThrowOnError>;
20269
20224
  /**
20270
20225
  * Create a user account
20271
20226
  */
20272
- declare const adminCreateUser: <ThrowOnError extends boolean = false>(options?: Options<AdminCreateUserData, ThrowOnError>) => RequestResult<AdminCreateUserResponses, AdminCreateUserErrors, ThrowOnError, "fields">;
20227
+ declare const adminCreateUser: <ThrowOnError extends boolean = false>(options?: Options<AdminCreateUserData, ThrowOnError>) => RequestResult<AdminCreateUserResponses, AdminCreateUserErrors, ThrowOnError>;
20273
20228
  /**
20274
20229
  * Delete user account
20275
20230
  */
20276
- declare const adminDeleteUser: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUserData, ThrowOnError>) => RequestResult<AdminDeleteUserResponses, AdminDeleteUserErrors, ThrowOnError, "fields">;
20231
+ declare const adminDeleteUser: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUserData, ThrowOnError>) => RequestResult<AdminDeleteUserResponses, AdminDeleteUserErrors, ThrowOnError>;
20277
20232
  /**
20278
20233
  * Edit an existing user
20279
20234
  */
20280
- declare const adminEditUser: <ThrowOnError extends boolean = false>(options: Options<AdminEditUserData, ThrowOnError>) => RequestResult<AdminEditUserResponses, AdminEditUserErrors, ThrowOnError, "fields">;
20235
+ declare const adminEditUser: <ThrowOnError extends boolean = false>(options: Options<AdminEditUserData, ThrowOnError>) => RequestResult<AdminEditUserResponses, AdminEditUserErrors, ThrowOnError>;
20281
20236
  /**
20282
20237
  * Delete email addresses from a user's account
20283
20238
  */
20284
- declare const adminDeleteUserEmails: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUserEmailsData, ThrowOnError>) => RequestResult<AdminDeleteUserEmailsResponses, AdminDeleteUserEmailsErrors, ThrowOnError, "fields">;
20239
+ declare const adminDeleteUserEmails: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUserEmailsData, ThrowOnError>) => RequestResult<AdminDeleteUserEmailsResponses, AdminDeleteUserEmailsErrors, ThrowOnError>;
20285
20240
  /**
20286
20241
  * List all email addresses for a user
20287
20242
  */
20288
- declare const adminListUserEmails: <ThrowOnError extends boolean = false>(options: Options<AdminListUserEmailsData, ThrowOnError>) => RequestResult<AdminListUserEmailsResponses, AdminListUserEmailsErrors, ThrowOnError, "fields">;
20243
+ declare const adminListUserEmails: <ThrowOnError extends boolean = false>(options: Options<AdminListUserEmailsData, ThrowOnError>) => RequestResult<AdminListUserEmailsResponses, AdminListUserEmailsErrors, ThrowOnError>;
20289
20244
  /**
20290
20245
  * Add an SSH public key to user's account
20291
20246
  */
20292
- declare const adminCreatePublicKey: <ThrowOnError extends boolean = false>(options: Options<AdminCreatePublicKeyData, ThrowOnError>) => RequestResult<AdminCreatePublicKeyResponses, AdminCreatePublicKeyErrors, ThrowOnError, "fields">;
20247
+ declare const adminCreatePublicKey: <ThrowOnError extends boolean = false>(options: Options<AdminCreatePublicKeyData, ThrowOnError>) => RequestResult<AdminCreatePublicKeyResponses, AdminCreatePublicKeyErrors, ThrowOnError>;
20293
20248
  /**
20294
20249
  * Remove a public key from user's account
20295
20250
  */
20296
- declare const adminDeleteUserPublicKey: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUserPublicKeyData, ThrowOnError>) => RequestResult<AdminDeleteUserPublicKeyResponses, AdminDeleteUserPublicKeyErrors, ThrowOnError, "fields">;
20251
+ declare const adminDeleteUserPublicKey: <ThrowOnError extends boolean = false>(options: Options<AdminDeleteUserPublicKeyData, ThrowOnError>) => RequestResult<AdminDeleteUserPublicKeyResponses, AdminDeleteUserPublicKeyErrors, ThrowOnError>;
20297
20252
  /**
20298
20253
  * Create an organization
20299
20254
  */
20300
- declare const adminCreateOrg: <ThrowOnError extends boolean = false>(options: Options<AdminCreateOrgData, ThrowOnError>) => RequestResult<AdminCreateOrgResponses, AdminCreateOrgErrors, ThrowOnError, "fields">;
20255
+ declare const adminCreateOrg: <ThrowOnError extends boolean = false>(options: Options<AdminCreateOrgData, ThrowOnError>) => RequestResult<AdminCreateOrgResponses, AdminCreateOrgErrors, ThrowOnError>;
20301
20256
  /**
20302
20257
  * Get the user's quota info
20303
20258
  */
20304
- declare const adminGetUserQuota: <ThrowOnError extends boolean = false>(options: Options<AdminGetUserQuotaData, ThrowOnError>) => RequestResult<AdminGetUserQuotaResponses, AdminGetUserQuotaErrors, ThrowOnError, "fields">;
20259
+ declare const adminGetUserQuota: <ThrowOnError extends boolean = false>(options: Options<AdminGetUserQuotaData, ThrowOnError>) => RequestResult<AdminGetUserQuotaResponses, AdminGetUserQuotaErrors, ThrowOnError>;
20305
20260
  /**
20306
20261
  * Set the user's quota groups to a given list.
20307
20262
  */
20308
- declare const adminSetUserQuotaGroups: <ThrowOnError extends boolean = false>(options: Options<AdminSetUserQuotaGroupsData, ThrowOnError>) => RequestResult<AdminSetUserQuotaGroupsResponses, AdminSetUserQuotaGroupsErrors, ThrowOnError, "fields">;
20263
+ declare const adminSetUserQuotaGroups: <ThrowOnError extends boolean = false>(options: Options<AdminSetUserQuotaGroupsData, ThrowOnError>) => RequestResult<AdminSetUserQuotaGroupsResponses, AdminSetUserQuotaGroupsErrors, ThrowOnError>;
20309
20264
  /**
20310
20265
  * Rename a user
20311
20266
  */
20312
- declare const adminRenameUser: <ThrowOnError extends boolean = false>(options: Options<AdminRenameUserData, ThrowOnError>) => RequestResult<AdminRenameUserResponses, AdminRenameUserErrors, ThrowOnError, "fields">;
20267
+ declare const adminRenameUser: <ThrowOnError extends boolean = false>(options: Options<AdminRenameUserData, ThrowOnError>) => RequestResult<AdminRenameUserResponses, AdminRenameUserErrors, ThrowOnError>;
20313
20268
  /**
20314
20269
  * Create a repository on behalf of a user
20315
20270
  */
20316
- declare const adminCreateRepo: <ThrowOnError extends boolean = false>(options: Options<AdminCreateRepoData, ThrowOnError>) => RequestResult<AdminCreateRepoResponses, AdminCreateRepoErrors, ThrowOnError, "fields">;
20271
+ declare const adminCreateRepo: <ThrowOnError extends boolean = false>(options: Options<AdminCreateRepoData, ThrowOnError>) => RequestResult<AdminCreateRepoResponses, AdminCreateRepoErrors, ThrowOnError>;
20317
20272
  /**
20318
20273
  * Returns a list of all gitignore templates
20319
20274
  */
20320
- declare const listGitignoresTemplates: <ThrowOnError extends boolean = false>(options?: Options<ListGitignoresTemplatesData, ThrowOnError>) => RequestResult<ListGitignoresTemplatesResponses, unknown, ThrowOnError, "fields">;
20275
+ declare const listGitignoresTemplates: <ThrowOnError extends boolean = false>(options?: Options<ListGitignoresTemplatesData, ThrowOnError>) => RequestResult<ListGitignoresTemplatesResponses, unknown, ThrowOnError>;
20321
20276
  /**
20322
20277
  * Returns information about a gitignore template
20323
20278
  */
20324
- declare const getGitignoreTemplateInfo: <ThrowOnError extends boolean = false>(options: Options<GetGitignoreTemplateInfoData, ThrowOnError>) => RequestResult<GetGitignoreTemplateInfoResponses, GetGitignoreTemplateInfoErrors, ThrowOnError, "fields">;
20279
+ declare const getGitignoreTemplateInfo: <ThrowOnError extends boolean = false>(options: Options<GetGitignoreTemplateInfoData, ThrowOnError>) => RequestResult<GetGitignoreTemplateInfoResponses, GetGitignoreTemplateInfoErrors, ThrowOnError>;
20325
20280
  /**
20326
20281
  * Returns a list of all label templates
20327
20282
  */
20328
- declare const listLabelTemplates: <ThrowOnError extends boolean = false>(options?: Options<ListLabelTemplatesData, ThrowOnError>) => RequestResult<ListLabelTemplatesResponses, unknown, ThrowOnError, "fields">;
20283
+ declare const listLabelTemplates: <ThrowOnError extends boolean = false>(options?: Options<ListLabelTemplatesData, ThrowOnError>) => RequestResult<ListLabelTemplatesResponses, unknown, ThrowOnError>;
20329
20284
  /**
20330
20285
  * Returns all labels in a template
20331
20286
  */
20332
- declare const getLabelTemplateInfo: <ThrowOnError extends boolean = false>(options: Options<GetLabelTemplateInfoData, ThrowOnError>) => RequestResult<GetLabelTemplateInfoResponses, GetLabelTemplateInfoErrors, ThrowOnError, "fields">;
20287
+ declare const getLabelTemplateInfo: <ThrowOnError extends boolean = false>(options: Options<GetLabelTemplateInfoData, ThrowOnError>) => RequestResult<GetLabelTemplateInfoResponses, GetLabelTemplateInfoErrors, ThrowOnError>;
20333
20288
  /**
20334
20289
  * Returns a list of all license templates
20335
20290
  */
20336
- declare const listLicenseTemplates: <ThrowOnError extends boolean = false>(options?: Options<ListLicenseTemplatesData, ThrowOnError>) => RequestResult<ListLicenseTemplatesResponses, unknown, ThrowOnError, "fields">;
20291
+ declare const listLicenseTemplates: <ThrowOnError extends boolean = false>(options?: Options<ListLicenseTemplatesData, ThrowOnError>) => RequestResult<ListLicenseTemplatesResponses, unknown, ThrowOnError>;
20337
20292
  /**
20338
20293
  * Returns information about a license template
20339
20294
  */
20340
- declare const getLicenseTemplateInfo: <ThrowOnError extends boolean = false>(options: Options<GetLicenseTemplateInfoData, ThrowOnError>) => RequestResult<GetLicenseTemplateInfoResponses, GetLicenseTemplateInfoErrors, ThrowOnError, "fields">;
20295
+ declare const getLicenseTemplateInfo: <ThrowOnError extends boolean = false>(options: Options<GetLicenseTemplateInfoData, ThrowOnError>) => RequestResult<GetLicenseTemplateInfoResponses, GetLicenseTemplateInfoErrors, ThrowOnError>;
20341
20296
  /**
20342
20297
  * Render a markdown document as HTML
20343
20298
  */
20344
- declare const renderMarkdown: <ThrowOnError extends boolean = false>(options?: Options<RenderMarkdownData, ThrowOnError>) => RequestResult<RenderMarkdownResponses, RenderMarkdownErrors, ThrowOnError, "fields">;
20299
+ declare const renderMarkdown: <ThrowOnError extends boolean = false>(options?: Options<RenderMarkdownData, ThrowOnError>) => RequestResult<RenderMarkdownResponses, RenderMarkdownErrors, ThrowOnError>;
20345
20300
  /**
20346
20301
  * Render raw markdown as HTML
20347
20302
  */
20348
- declare const renderMarkdownRaw: <ThrowOnError extends boolean = false>(options: Options<RenderMarkdownRawData, ThrowOnError>) => RequestResult<RenderMarkdownRawResponses, RenderMarkdownRawErrors, ThrowOnError, "fields">;
20303
+ declare const renderMarkdownRaw: <ThrowOnError extends boolean = false>(options: Options<RenderMarkdownRawData, ThrowOnError>) => RequestResult<RenderMarkdownRawResponses, RenderMarkdownRawErrors, ThrowOnError>;
20349
20304
  /**
20350
20305
  * Render a markup document as HTML
20351
20306
  */
20352
- declare const renderMarkup: <ThrowOnError extends boolean = false>(options?: Options<RenderMarkupData, ThrowOnError>) => RequestResult<RenderMarkupResponses, RenderMarkupErrors, ThrowOnError, "fields">;
20307
+ declare const renderMarkup: <ThrowOnError extends boolean = false>(options?: Options<RenderMarkupData, ThrowOnError>) => RequestResult<RenderMarkupResponses, RenderMarkupErrors, ThrowOnError>;
20353
20308
  /**
20354
20309
  * Returns the nodeinfo of the Forgejo application
20355
20310
  */
20356
- declare const getNodeInfo: <ThrowOnError extends boolean = false>(options?: Options<GetNodeInfoData, ThrowOnError>) => RequestResult<GetNodeInfoResponses, unknown, ThrowOnError, "fields">;
20311
+ declare const getNodeInfo: <ThrowOnError extends boolean = false>(options?: Options<GetNodeInfoData, ThrowOnError>) => RequestResult<GetNodeInfoResponses, unknown, ThrowOnError>;
20357
20312
  /**
20358
20313
  * List users's notification threads
20359
20314
  */
20360
- declare const notifyGetList: <ThrowOnError extends boolean = false>(options?: Options<NotifyGetListData, ThrowOnError>) => RequestResult<NotifyGetListResponses, unknown, ThrowOnError, "fields">;
20315
+ declare const notifyGetList: <ThrowOnError extends boolean = false>(options?: Options<NotifyGetListData, ThrowOnError>) => RequestResult<NotifyGetListResponses, unknown, ThrowOnError>;
20361
20316
  /**
20362
20317
  * Mark notification threads as read, pinned or unread
20363
20318
  */
20364
- declare const notifyReadList: <ThrowOnError extends boolean = false>(options?: Options<NotifyReadListData, ThrowOnError>) => RequestResult<NotifyReadListResponses, unknown, ThrowOnError, "fields">;
20319
+ declare const notifyReadList: <ThrowOnError extends boolean = false>(options?: Options<NotifyReadListData, ThrowOnError>) => RequestResult<NotifyReadListResponses, unknown, ThrowOnError>;
20365
20320
  /**
20366
20321
  * Check if unread notifications exist
20367
20322
  */
20368
- declare const notifyNewAvailable: <ThrowOnError extends boolean = false>(options?: Options<NotifyNewAvailableData, ThrowOnError>) => RequestResult<NotifyNewAvailableResponses, unknown, ThrowOnError, "fields">;
20323
+ declare const notifyNewAvailable: <ThrowOnError extends boolean = false>(options?: Options<NotifyNewAvailableData, ThrowOnError>) => RequestResult<NotifyNewAvailableResponses, unknown, ThrowOnError>;
20369
20324
  /**
20370
20325
  * Get notification thread by ID
20371
20326
  */
20372
- declare const notifyGetThread: <ThrowOnError extends boolean = false>(options: Options<NotifyGetThreadData, ThrowOnError>) => RequestResult<NotifyGetThreadResponses, NotifyGetThreadErrors, ThrowOnError, "fields">;
20327
+ declare const notifyGetThread: <ThrowOnError extends boolean = false>(options: Options<NotifyGetThreadData, ThrowOnError>) => RequestResult<NotifyGetThreadResponses, NotifyGetThreadErrors, ThrowOnError>;
20373
20328
  /**
20374
20329
  * Mark notification thread as read by ID
20375
20330
  */
20376
- declare const notifyReadThread: <ThrowOnError extends boolean = false>(options: Options<NotifyReadThreadData, ThrowOnError>) => RequestResult<NotifyReadThreadResponses, NotifyReadThreadErrors, ThrowOnError, "fields">;
20331
+ declare const notifyReadThread: <ThrowOnError extends boolean = false>(options: Options<NotifyReadThreadData, ThrowOnError>) => RequestResult<NotifyReadThreadResponses, NotifyReadThreadErrors, ThrowOnError>;
20377
20332
  /**
20378
20333
  * Create a repository in an organization
20379
20334
  *
20380
20335
  * @deprecated
20381
20336
  */
20382
- declare const createOrgRepoDeprecated: <ThrowOnError extends boolean = false>(options: Options<CreateOrgRepoDeprecatedData, ThrowOnError>) => RequestResult<CreateOrgRepoDeprecatedResponses, CreateOrgRepoDeprecatedErrors, ThrowOnError, "fields">;
20337
+ declare const createOrgRepoDeprecated: <ThrowOnError extends boolean = false>(options: Options<CreateOrgRepoDeprecatedData, ThrowOnError>) => RequestResult<CreateOrgRepoDeprecatedResponses, CreateOrgRepoDeprecatedErrors, ThrowOnError>;
20383
20338
  /**
20384
20339
  * List all organizations
20385
20340
  */
20386
- declare const orgGetAll: <ThrowOnError extends boolean = false>(options?: Options<OrgGetAllData, ThrowOnError>) => RequestResult<OrgGetAllResponses, unknown, ThrowOnError, "fields">;
20341
+ declare const orgGetAll: <ThrowOnError extends boolean = false>(options?: Options<OrgGetAllData, ThrowOnError>) => RequestResult<OrgGetAllResponses, unknown, ThrowOnError>;
20387
20342
  /**
20388
20343
  * Create an organization
20389
20344
  */
20390
- declare const orgCreate: <ThrowOnError extends boolean = false>(options: Options<OrgCreateData, ThrowOnError>) => RequestResult<OrgCreateResponses, OrgCreateErrors, ThrowOnError, "fields">;
20345
+ declare const orgCreate: <ThrowOnError extends boolean = false>(options: Options<OrgCreateData, ThrowOnError>) => RequestResult<OrgCreateResponses, OrgCreateErrors, ThrowOnError>;
20391
20346
  /**
20392
20347
  * Delete an organization
20393
20348
  */
20394
- declare const orgDelete: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteData, ThrowOnError>) => RequestResult<OrgDeleteResponses, OrgDeleteErrors, ThrowOnError, "fields">;
20349
+ declare const orgDelete: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteData, ThrowOnError>) => RequestResult<OrgDeleteResponses, OrgDeleteErrors, ThrowOnError>;
20395
20350
  /**
20396
20351
  * Get an organization
20397
20352
  */
20398
- declare const orgGet: <ThrowOnError extends boolean = false>(options: Options<OrgGetData, ThrowOnError>) => RequestResult<OrgGetResponses, OrgGetErrors, ThrowOnError, "fields">;
20353
+ declare const orgGet: <ThrowOnError extends boolean = false>(options: Options<OrgGetData, ThrowOnError>) => RequestResult<OrgGetResponses, OrgGetErrors, ThrowOnError>;
20399
20354
  /**
20400
20355
  * Edit an organization
20401
20356
  */
20402
- declare const orgEdit: <ThrowOnError extends boolean = false>(options: Options<OrgEditData, ThrowOnError>) => RequestResult<OrgEditResponses, OrgEditErrors, ThrowOnError, "fields">;
20357
+ declare const orgEdit: <ThrowOnError extends boolean = false>(options: Options<OrgEditData, ThrowOnError>) => RequestResult<OrgEditResponses, OrgEditErrors, ThrowOnError>;
20403
20358
  /**
20404
20359
  * Search for organization's action jobs according filter conditions
20405
20360
  */
20406
- declare const orgSearchRunJobs: <ThrowOnError extends boolean = false>(options: Options<OrgSearchRunJobsData, ThrowOnError>) => RequestResult<OrgSearchRunJobsResponses, OrgSearchRunJobsErrors, ThrowOnError, "fields">;
20361
+ declare const orgSearchRunJobs: <ThrowOnError extends boolean = false>(options: Options<OrgSearchRunJobsData, ThrowOnError>) => RequestResult<OrgSearchRunJobsResponses, OrgSearchRunJobsErrors, ThrowOnError>;
20407
20362
  /**
20408
20363
  * Get an organization's actions runner registration token
20409
20364
  */
20410
- declare const orgGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options: Options<OrgGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<OrgGetRunnerRegistrationTokenResponses, unknown, ThrowOnError, "fields">;
20365
+ declare const orgGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options: Options<OrgGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<OrgGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
20411
20366
  /**
20412
20367
  * List actions secrets of an organization
20413
20368
  */
20414
- declare const orgListActionsSecrets: <ThrowOnError extends boolean = false>(options: Options<OrgListActionsSecretsData, ThrowOnError>) => RequestResult<OrgListActionsSecretsResponses, OrgListActionsSecretsErrors, ThrowOnError, "fields">;
20369
+ declare const orgListActionsSecrets: <ThrowOnError extends boolean = false>(options: Options<OrgListActionsSecretsData, ThrowOnError>) => RequestResult<OrgListActionsSecretsResponses, OrgListActionsSecretsErrors, ThrowOnError>;
20415
20370
  /**
20416
20371
  * Delete a secret in an organization
20417
20372
  */
20418
- declare const deleteOrgSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteOrgSecretData, ThrowOnError>) => RequestResult<DeleteOrgSecretResponses, DeleteOrgSecretErrors, ThrowOnError, "fields">;
20373
+ declare const deleteOrgSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteOrgSecretData, ThrowOnError>) => RequestResult<DeleteOrgSecretResponses, DeleteOrgSecretErrors, ThrowOnError>;
20419
20374
  /**
20420
20375
  * Create or Update a secret value in an organization
20421
20376
  */
20422
- declare const updateOrgSecret: <ThrowOnError extends boolean = false>(options: Options<UpdateOrgSecretData, ThrowOnError>) => RequestResult<UpdateOrgSecretResponses, UpdateOrgSecretErrors, ThrowOnError, "fields">;
20377
+ declare const updateOrgSecret: <ThrowOnError extends boolean = false>(options: Options<UpdateOrgSecretData, ThrowOnError>) => RequestResult<UpdateOrgSecretResponses, UpdateOrgSecretErrors, ThrowOnError>;
20423
20378
  /**
20424
20379
  * List variables of an organization
20425
20380
  */
20426
- declare const getOrgVariablesList: <ThrowOnError extends boolean = false>(options: Options<GetOrgVariablesListData, ThrowOnError>) => RequestResult<GetOrgVariablesListResponses, GetOrgVariablesListErrors, ThrowOnError, "fields">;
20381
+ declare const getOrgVariablesList: <ThrowOnError extends boolean = false>(options: Options<GetOrgVariablesListData, ThrowOnError>) => RequestResult<GetOrgVariablesListResponses, GetOrgVariablesListErrors, ThrowOnError>;
20427
20382
  /**
20428
20383
  * Delete organization's variable by name
20429
20384
  */
20430
- declare const deleteOrgVariable: <ThrowOnError extends boolean = false>(options: Options<DeleteOrgVariableData, ThrowOnError>) => RequestResult<DeleteOrgVariableResponses, DeleteOrgVariableErrors, ThrowOnError, "fields">;
20385
+ declare const deleteOrgVariable: <ThrowOnError extends boolean = false>(options: Options<DeleteOrgVariableData, ThrowOnError>) => RequestResult<DeleteOrgVariableResponses, DeleteOrgVariableErrors, ThrowOnError>;
20431
20386
  /**
20432
20387
  * Get organization's variable by name
20433
20388
  */
20434
- declare const getOrgVariable: <ThrowOnError extends boolean = false>(options: Options<GetOrgVariableData, ThrowOnError>) => RequestResult<GetOrgVariableResponses, GetOrgVariableErrors, ThrowOnError, "fields">;
20389
+ declare const getOrgVariable: <ThrowOnError extends boolean = false>(options: Options<GetOrgVariableData, ThrowOnError>) => RequestResult<GetOrgVariableResponses, GetOrgVariableErrors, ThrowOnError>;
20435
20390
  /**
20436
20391
  * Create a new variable in organization
20437
20392
  */
20438
- declare const createOrgVariable: <ThrowOnError extends boolean = false>(options: Options<CreateOrgVariableData, ThrowOnError>) => RequestResult<CreateOrgVariableResponses, CreateOrgVariableErrors, ThrowOnError, "fields">;
20393
+ declare const createOrgVariable: <ThrowOnError extends boolean = false>(options: Options<CreateOrgVariableData, ThrowOnError>) => RequestResult<CreateOrgVariableResponses, CreateOrgVariableErrors, ThrowOnError>;
20439
20394
  /**
20440
20395
  * Update variable in organization
20441
20396
  */
20442
- declare const updateOrgVariable: <ThrowOnError extends boolean = false>(options: Options<UpdateOrgVariableData, ThrowOnError>) => RequestResult<UpdateOrgVariableResponses, UpdateOrgVariableErrors, ThrowOnError, "fields">;
20397
+ declare const updateOrgVariable: <ThrowOnError extends boolean = false>(options: Options<UpdateOrgVariableData, ThrowOnError>) => RequestResult<UpdateOrgVariableResponses, UpdateOrgVariableErrors, ThrowOnError>;
20443
20398
  /**
20444
20399
  * List an organization's activity feeds
20445
20400
  */
20446
- declare const orgListActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<OrgListActivityFeedsData, ThrowOnError>) => RequestResult<OrgListActivityFeedsResponses, OrgListActivityFeedsErrors, ThrowOnError, "fields">;
20401
+ declare const orgListActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<OrgListActivityFeedsData, ThrowOnError>) => RequestResult<OrgListActivityFeedsResponses, OrgListActivityFeedsErrors, ThrowOnError>;
20447
20402
  /**
20448
20403
  * Delete an organization's avatar. It will be replaced by a default one
20449
20404
  */
20450
- declare const orgDeleteAvatar: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteAvatarData, ThrowOnError>) => RequestResult<OrgDeleteAvatarResponses, OrgDeleteAvatarErrors, ThrowOnError, "fields">;
20405
+ declare const orgDeleteAvatar: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteAvatarData, ThrowOnError>) => RequestResult<OrgDeleteAvatarResponses, OrgDeleteAvatarErrors, ThrowOnError>;
20451
20406
  /**
20452
20407
  * Update an organization's avatar
20453
20408
  */
20454
- declare const orgUpdateAvatar: <ThrowOnError extends boolean = false>(options: Options<OrgUpdateAvatarData, ThrowOnError>) => RequestResult<OrgUpdateAvatarResponses, OrgUpdateAvatarErrors, ThrowOnError, "fields">;
20409
+ declare const orgUpdateAvatar: <ThrowOnError extends boolean = false>(options: Options<OrgUpdateAvatarData, ThrowOnError>) => RequestResult<OrgUpdateAvatarResponses, OrgUpdateAvatarErrors, ThrowOnError>;
20455
20410
  /**
20456
20411
  * Blocks a user from the organization
20457
20412
  */
20458
- declare const orgBlockUser: <ThrowOnError extends boolean = false>(options: Options<OrgBlockUserData, ThrowOnError>) => RequestResult<OrgBlockUserResponses, OrgBlockUserErrors, ThrowOnError, "fields">;
20413
+ declare const orgBlockUser: <ThrowOnError extends boolean = false>(options: Options<OrgBlockUserData, ThrowOnError>) => RequestResult<OrgBlockUserResponses, OrgBlockUserErrors, ThrowOnError>;
20459
20414
  /**
20460
20415
  * List an organization's webhooks
20461
20416
  */
20462
- declare const orgListHooks: <ThrowOnError extends boolean = false>(options: Options<OrgListHooksData, ThrowOnError>) => RequestResult<OrgListHooksResponses, OrgListHooksErrors, ThrowOnError, "fields">;
20417
+ declare const orgListHooks: <ThrowOnError extends boolean = false>(options: Options<OrgListHooksData, ThrowOnError>) => RequestResult<OrgListHooksResponses, OrgListHooksErrors, ThrowOnError>;
20463
20418
  /**
20464
20419
  * Create a hook
20465
20420
  */
20466
- declare const orgCreateHook: <ThrowOnError extends boolean = false>(options: Options<OrgCreateHookData, ThrowOnError>) => RequestResult<OrgCreateHookResponses, OrgCreateHookErrors, ThrowOnError, "fields">;
20421
+ declare const orgCreateHook: <ThrowOnError extends boolean = false>(options: Options<OrgCreateHookData, ThrowOnError>) => RequestResult<OrgCreateHookResponses, OrgCreateHookErrors, ThrowOnError>;
20467
20422
  /**
20468
20423
  * Delete a hook
20469
20424
  */
20470
- declare const orgDeleteHook: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteHookData, ThrowOnError>) => RequestResult<OrgDeleteHookResponses, OrgDeleteHookErrors, ThrowOnError, "fields">;
20425
+ declare const orgDeleteHook: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteHookData, ThrowOnError>) => RequestResult<OrgDeleteHookResponses, OrgDeleteHookErrors, ThrowOnError>;
20471
20426
  /**
20472
20427
  * Get a hook
20473
20428
  */
20474
- declare const orgGetHook: <ThrowOnError extends boolean = false>(options: Options<OrgGetHookData, ThrowOnError>) => RequestResult<OrgGetHookResponses, OrgGetHookErrors, ThrowOnError, "fields">;
20429
+ declare const orgGetHook: <ThrowOnError extends boolean = false>(options: Options<OrgGetHookData, ThrowOnError>) => RequestResult<OrgGetHookResponses, OrgGetHookErrors, ThrowOnError>;
20475
20430
  /**
20476
20431
  * Update a hook
20477
20432
  */
20478
- declare const orgEditHook: <ThrowOnError extends boolean = false>(options: Options<OrgEditHookData, ThrowOnError>) => RequestResult<OrgEditHookResponses, OrgEditHookErrors, ThrowOnError, "fields">;
20433
+ declare const orgEditHook: <ThrowOnError extends boolean = false>(options: Options<OrgEditHookData, ThrowOnError>) => RequestResult<OrgEditHookResponses, OrgEditHookErrors, ThrowOnError>;
20479
20434
  /**
20480
20435
  * List an organization's labels
20481
20436
  */
20482
- declare const orgListLabels: <ThrowOnError extends boolean = false>(options: Options<OrgListLabelsData, ThrowOnError>) => RequestResult<OrgListLabelsResponses, OrgListLabelsErrors, ThrowOnError, "fields">;
20437
+ declare const orgListLabels: <ThrowOnError extends boolean = false>(options: Options<OrgListLabelsData, ThrowOnError>) => RequestResult<OrgListLabelsResponses, OrgListLabelsErrors, ThrowOnError>;
20483
20438
  /**
20484
20439
  * Create a label for an organization
20485
20440
  */
20486
- declare const orgCreateLabel: <ThrowOnError extends boolean = false>(options: Options<OrgCreateLabelData, ThrowOnError>) => RequestResult<OrgCreateLabelResponses, OrgCreateLabelErrors, ThrowOnError, "fields">;
20441
+ declare const orgCreateLabel: <ThrowOnError extends boolean = false>(options: Options<OrgCreateLabelData, ThrowOnError>) => RequestResult<OrgCreateLabelResponses, OrgCreateLabelErrors, ThrowOnError>;
20487
20442
  /**
20488
20443
  * Delete a label
20489
20444
  */
20490
- declare const orgDeleteLabel: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteLabelData, ThrowOnError>) => RequestResult<OrgDeleteLabelResponses, OrgDeleteLabelErrors, ThrowOnError, "fields">;
20445
+ declare const orgDeleteLabel: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteLabelData, ThrowOnError>) => RequestResult<OrgDeleteLabelResponses, OrgDeleteLabelErrors, ThrowOnError>;
20491
20446
  /**
20492
20447
  * Get a single label
20493
20448
  */
20494
- declare const orgGetLabel: <ThrowOnError extends boolean = false>(options: Options<OrgGetLabelData, ThrowOnError>) => RequestResult<OrgGetLabelResponses, OrgGetLabelErrors, ThrowOnError, "fields">;
20449
+ declare const orgGetLabel: <ThrowOnError extends boolean = false>(options: Options<OrgGetLabelData, ThrowOnError>) => RequestResult<OrgGetLabelResponses, OrgGetLabelErrors, ThrowOnError>;
20495
20450
  /**
20496
20451
  * Update a label
20497
20452
  */
20498
- declare const orgEditLabel: <ThrowOnError extends boolean = false>(options: Options<OrgEditLabelData, ThrowOnError>) => RequestResult<OrgEditLabelResponses, OrgEditLabelErrors, ThrowOnError, "fields">;
20453
+ declare const orgEditLabel: <ThrowOnError extends boolean = false>(options: Options<OrgEditLabelData, ThrowOnError>) => RequestResult<OrgEditLabelResponses, OrgEditLabelErrors, ThrowOnError>;
20499
20454
  /**
20500
20455
  * List the organization's blocked users
20501
20456
  */
20502
- declare const orgListBlockedUsers: <ThrowOnError extends boolean = false>(options: Options<OrgListBlockedUsersData, ThrowOnError>) => RequestResult<OrgListBlockedUsersResponses, unknown, ThrowOnError, "fields">;
20457
+ declare const orgListBlockedUsers: <ThrowOnError extends boolean = false>(options: Options<OrgListBlockedUsersData, ThrowOnError>) => RequestResult<OrgListBlockedUsersResponses, unknown, ThrowOnError>;
20503
20458
  /**
20504
20459
  * List an organization's members
20505
20460
  */
20506
- declare const orgListMembers: <ThrowOnError extends boolean = false>(options: Options<OrgListMembersData, ThrowOnError>) => RequestResult<OrgListMembersResponses, OrgListMembersErrors, ThrowOnError, "fields">;
20461
+ declare const orgListMembers: <ThrowOnError extends boolean = false>(options: Options<OrgListMembersData, ThrowOnError>) => RequestResult<OrgListMembersResponses, OrgListMembersErrors, ThrowOnError>;
20507
20462
  /**
20508
20463
  * Remove a member from an organization
20509
20464
  */
20510
- declare const orgDeleteMember: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteMemberData, ThrowOnError>) => RequestResult<OrgDeleteMemberResponses, OrgDeleteMemberErrors, ThrowOnError, "fields">;
20465
+ declare const orgDeleteMember: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteMemberData, ThrowOnError>) => RequestResult<OrgDeleteMemberResponses, OrgDeleteMemberErrors, ThrowOnError>;
20511
20466
  /**
20512
20467
  * Check if a user is a member of an organization
20513
20468
  */
20514
- declare const orgIsMember: <ThrowOnError extends boolean = false>(options: Options<OrgIsMemberData, ThrowOnError>) => RequestResult<OrgIsMemberResponses, OrgIsMemberErrors, ThrowOnError, "fields">;
20469
+ declare const orgIsMember: <ThrowOnError extends boolean = false>(options: Options<OrgIsMemberData, ThrowOnError>) => RequestResult<OrgIsMemberResponses, OrgIsMemberErrors, ThrowOnError>;
20515
20470
  /**
20516
20471
  * List an organization's public members
20517
20472
  */
20518
- declare const orgListPublicMembers: <ThrowOnError extends boolean = false>(options: Options<OrgListPublicMembersData, ThrowOnError>) => RequestResult<OrgListPublicMembersResponses, OrgListPublicMembersErrors, ThrowOnError, "fields">;
20473
+ declare const orgListPublicMembers: <ThrowOnError extends boolean = false>(options: Options<OrgListPublicMembersData, ThrowOnError>) => RequestResult<OrgListPublicMembersResponses, OrgListPublicMembersErrors, ThrowOnError>;
20519
20474
  /**
20520
20475
  * Conceal a user's membership
20521
20476
  */
20522
- declare const orgConcealMember: <ThrowOnError extends boolean = false>(options: Options<OrgConcealMemberData, ThrowOnError>) => RequestResult<OrgConcealMemberResponses, OrgConcealMemberErrors, ThrowOnError, "fields">;
20477
+ declare const orgConcealMember: <ThrowOnError extends boolean = false>(options: Options<OrgConcealMemberData, ThrowOnError>) => RequestResult<OrgConcealMemberResponses, OrgConcealMemberErrors, ThrowOnError>;
20523
20478
  /**
20524
20479
  * Check if a user is a public member of an organization
20525
20480
  */
20526
- declare const orgIsPublicMember: <ThrowOnError extends boolean = false>(options: Options<OrgIsPublicMemberData, ThrowOnError>) => RequestResult<OrgIsPublicMemberResponses, OrgIsPublicMemberErrors, ThrowOnError, "fields">;
20481
+ declare const orgIsPublicMember: <ThrowOnError extends boolean = false>(options: Options<OrgIsPublicMemberData, ThrowOnError>) => RequestResult<OrgIsPublicMemberResponses, OrgIsPublicMemberErrors, ThrowOnError>;
20527
20482
  /**
20528
20483
  * Publicize a user's membership
20529
20484
  */
20530
- declare const orgPublicizeMember: <ThrowOnError extends boolean = false>(options: Options<OrgPublicizeMemberData, ThrowOnError>) => RequestResult<OrgPublicizeMemberResponses, OrgPublicizeMemberErrors, ThrowOnError, "fields">;
20485
+ declare const orgPublicizeMember: <ThrowOnError extends boolean = false>(options: Options<OrgPublicizeMemberData, ThrowOnError>) => RequestResult<OrgPublicizeMemberResponses, OrgPublicizeMemberErrors, ThrowOnError>;
20531
20486
  /**
20532
20487
  * Get quota information for an organization
20533
20488
  */
20534
- declare const orgGetQuota: <ThrowOnError extends boolean = false>(options: Options<OrgGetQuotaData, ThrowOnError>) => RequestResult<OrgGetQuotaResponses, OrgGetQuotaErrors, ThrowOnError, "fields">;
20489
+ declare const orgGetQuota: <ThrowOnError extends boolean = false>(options: Options<OrgGetQuotaData, ThrowOnError>) => RequestResult<OrgGetQuotaResponses, OrgGetQuotaErrors, ThrowOnError>;
20535
20490
  /**
20536
20491
  * List the artifacts affecting the organization's quota
20537
20492
  */
20538
- declare const orgListQuotaArtifacts: <ThrowOnError extends boolean = false>(options: Options<OrgListQuotaArtifactsData, ThrowOnError>) => RequestResult<OrgListQuotaArtifactsResponses, OrgListQuotaArtifactsErrors, ThrowOnError, "fields">;
20493
+ declare const orgListQuotaArtifacts: <ThrowOnError extends boolean = false>(options: Options<OrgListQuotaArtifactsData, ThrowOnError>) => RequestResult<OrgListQuotaArtifactsResponses, OrgListQuotaArtifactsErrors, ThrowOnError>;
20539
20494
  /**
20540
20495
  * List the attachments affecting the organization's quota
20541
20496
  */
20542
- declare const orgListQuotaAttachments: <ThrowOnError extends boolean = false>(options: Options<OrgListQuotaAttachmentsData, ThrowOnError>) => RequestResult<OrgListQuotaAttachmentsResponses, OrgListQuotaAttachmentsErrors, ThrowOnError, "fields">;
20497
+ declare const orgListQuotaAttachments: <ThrowOnError extends boolean = false>(options: Options<OrgListQuotaAttachmentsData, ThrowOnError>) => RequestResult<OrgListQuotaAttachmentsResponses, OrgListQuotaAttachmentsErrors, ThrowOnError>;
20543
20498
  /**
20544
20499
  * Check if the organization is over quota for a given subject
20545
20500
  */
20546
- declare const orgCheckQuota: <ThrowOnError extends boolean = false>(options: Options<OrgCheckQuotaData, ThrowOnError>) => RequestResult<OrgCheckQuotaResponses, OrgCheckQuotaErrors, ThrowOnError, "fields">;
20501
+ declare const orgCheckQuota: <ThrowOnError extends boolean = false>(options: Options<OrgCheckQuotaData, ThrowOnError>) => RequestResult<OrgCheckQuotaResponses, OrgCheckQuotaErrors, ThrowOnError>;
20547
20502
  /**
20548
20503
  * List the packages affecting the organization's quota
20549
20504
  */
20550
- declare const orgListQuotaPackages: <ThrowOnError extends boolean = false>(options: Options<OrgListQuotaPackagesData, ThrowOnError>) => RequestResult<OrgListQuotaPackagesResponses, OrgListQuotaPackagesErrors, ThrowOnError, "fields">;
20505
+ declare const orgListQuotaPackages: <ThrowOnError extends boolean = false>(options: Options<OrgListQuotaPackagesData, ThrowOnError>) => RequestResult<OrgListQuotaPackagesResponses, OrgListQuotaPackagesErrors, ThrowOnError>;
20551
20506
  /**
20552
20507
  * Rename an organization
20553
20508
  */
20554
- declare const renameOrg: <ThrowOnError extends boolean = false>(options: Options<RenameOrgData, ThrowOnError>) => RequestResult<RenameOrgResponses, RenameOrgErrors, ThrowOnError, "fields">;
20509
+ declare const renameOrg: <ThrowOnError extends boolean = false>(options: Options<RenameOrgData, ThrowOnError>) => RequestResult<RenameOrgResponses, RenameOrgErrors, ThrowOnError>;
20555
20510
  /**
20556
20511
  * List an organization's repos
20557
20512
  */
20558
- declare const orgListRepos: <ThrowOnError extends boolean = false>(options: Options<OrgListReposData, ThrowOnError>) => RequestResult<OrgListReposResponses, OrgListReposErrors, ThrowOnError, "fields">;
20513
+ declare const orgListRepos: <ThrowOnError extends boolean = false>(options: Options<OrgListReposData, ThrowOnError>) => RequestResult<OrgListReposResponses, OrgListReposErrors, ThrowOnError>;
20559
20514
  /**
20560
20515
  * Create a repository in an organization
20561
20516
  */
20562
- declare const createOrgRepo: <ThrowOnError extends boolean = false>(options: Options<CreateOrgRepoData, ThrowOnError>) => RequestResult<CreateOrgRepoResponses, CreateOrgRepoErrors, ThrowOnError, "fields">;
20517
+ declare const createOrgRepo: <ThrowOnError extends boolean = false>(options: Options<CreateOrgRepoData, ThrowOnError>) => RequestResult<CreateOrgRepoResponses, CreateOrgRepoErrors, ThrowOnError>;
20563
20518
  /**
20564
20519
  * List an organization's teams
20565
20520
  */
20566
- declare const orgListTeams: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamsData, ThrowOnError>) => RequestResult<OrgListTeamsResponses, OrgListTeamsErrors, ThrowOnError, "fields">;
20521
+ declare const orgListTeams: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamsData, ThrowOnError>) => RequestResult<OrgListTeamsResponses, OrgListTeamsErrors, ThrowOnError>;
20567
20522
  /**
20568
20523
  * Create a team
20569
20524
  */
20570
- declare const orgCreateTeam: <ThrowOnError extends boolean = false>(options: Options<OrgCreateTeamData, ThrowOnError>) => RequestResult<OrgCreateTeamResponses, OrgCreateTeamErrors, ThrowOnError, "fields">;
20525
+ declare const orgCreateTeam: <ThrowOnError extends boolean = false>(options: Options<OrgCreateTeamData, ThrowOnError>) => RequestResult<OrgCreateTeamResponses, OrgCreateTeamErrors, ThrowOnError>;
20571
20526
  /**
20572
20527
  * Search for teams within an organization
20573
20528
  */
20574
- declare const teamSearch: <ThrowOnError extends boolean = false>(options: Options<TeamSearchData, ThrowOnError>) => RequestResult<TeamSearchResponses, TeamSearchErrors, ThrowOnError, "fields">;
20529
+ declare const teamSearch: <ThrowOnError extends boolean = false>(options: Options<TeamSearchData, ThrowOnError>) => RequestResult<TeamSearchResponses, TeamSearchErrors, ThrowOnError>;
20575
20530
  /**
20576
20531
  * Unblock a user from the organization
20577
20532
  */
20578
- declare const orgUnblockUser: <ThrowOnError extends boolean = false>(options: Options<OrgUnblockUserData, ThrowOnError>) => RequestResult<OrgUnblockUserResponses, OrgUnblockUserErrors, ThrowOnError, "fields">;
20533
+ declare const orgUnblockUser: <ThrowOnError extends boolean = false>(options: Options<OrgUnblockUserData, ThrowOnError>) => RequestResult<OrgUnblockUserResponses, OrgUnblockUserErrors, ThrowOnError>;
20579
20534
  /**
20580
20535
  * Gets all packages of an owner
20581
20536
  */
20582
- declare const listPackages: <ThrowOnError extends boolean = false>(options: Options<ListPackagesData, ThrowOnError>) => RequestResult<ListPackagesResponses, ListPackagesErrors, ThrowOnError, "fields">;
20537
+ declare const listPackages: <ThrowOnError extends boolean = false>(options: Options<ListPackagesData, ThrowOnError>) => RequestResult<ListPackagesResponses, ListPackagesErrors, ThrowOnError>;
20583
20538
  /**
20584
20539
  * Link a package to a repository
20585
20540
  */
20586
- declare const linkPackage: <ThrowOnError extends boolean = false>(options: Options<LinkPackageData, ThrowOnError>) => RequestResult<LinkPackageResponses, LinkPackageErrors, ThrowOnError, "fields">;
20541
+ declare const linkPackage: <ThrowOnError extends boolean = false>(options: Options<LinkPackageData, ThrowOnError>) => RequestResult<LinkPackageResponses, LinkPackageErrors, ThrowOnError>;
20587
20542
  /**
20588
20543
  * Unlink a package from a repository
20589
20544
  */
20590
- declare const unlinkPackage: <ThrowOnError extends boolean = false>(options: Options<UnlinkPackageData, ThrowOnError>) => RequestResult<UnlinkPackageResponses, UnlinkPackageErrors, ThrowOnError, "fields">;
20545
+ declare const unlinkPackage: <ThrowOnError extends boolean = false>(options: Options<UnlinkPackageData, ThrowOnError>) => RequestResult<UnlinkPackageResponses, UnlinkPackageErrors, ThrowOnError>;
20591
20546
  /**
20592
20547
  * Delete a package
20593
20548
  */
20594
- declare const deletePackage: <ThrowOnError extends boolean = false>(options: Options<DeletePackageData, ThrowOnError>) => RequestResult<DeletePackageResponses, DeletePackageErrors, ThrowOnError, "fields">;
20549
+ declare const deletePackage: <ThrowOnError extends boolean = false>(options: Options<DeletePackageData, ThrowOnError>) => RequestResult<DeletePackageResponses, DeletePackageErrors, ThrowOnError>;
20595
20550
  /**
20596
20551
  * Gets a package
20597
20552
  */
20598
- declare const getPackage: <ThrowOnError extends boolean = false>(options: Options<GetPackageData, ThrowOnError>) => RequestResult<GetPackageResponses, GetPackageErrors, ThrowOnError, "fields">;
20553
+ declare const getPackage: <ThrowOnError extends boolean = false>(options: Options<GetPackageData, ThrowOnError>) => RequestResult<GetPackageResponses, GetPackageErrors, ThrowOnError>;
20599
20554
  /**
20600
20555
  * Gets all files of a package
20601
20556
  */
20602
- declare const listPackageFiles: <ThrowOnError extends boolean = false>(options: Options<ListPackageFilesData, ThrowOnError>) => RequestResult<ListPackageFilesResponses, ListPackageFilesErrors, ThrowOnError, "fields">;
20557
+ declare const listPackageFiles: <ThrowOnError extends boolean = false>(options: Options<ListPackageFilesData, ThrowOnError>) => RequestResult<ListPackageFilesResponses, ListPackageFilesErrors, ThrowOnError>;
20603
20558
  /**
20604
20559
  * Search for issues across the repositories that the user has access to
20605
20560
  */
20606
- declare const issueSearchIssues: <ThrowOnError extends boolean = false>(options?: Options<IssueSearchIssuesData, ThrowOnError>) => RequestResult<IssueSearchIssuesResponses, IssueSearchIssuesErrors, ThrowOnError, "fields">;
20561
+ declare const issueSearchIssues: <ThrowOnError extends boolean = false>(options?: Options<IssueSearchIssuesData, ThrowOnError>) => RequestResult<IssueSearchIssuesResponses, IssueSearchIssuesErrors, ThrowOnError>;
20607
20562
  /**
20608
20563
  * Migrate a remote git repository
20609
20564
  */
20610
- declare const repoMigrate: <ThrowOnError extends boolean = false>(options?: Options<RepoMigrateData, ThrowOnError>) => RequestResult<RepoMigrateResponses, RepoMigrateErrors, ThrowOnError, "fields">;
20565
+ declare const repoMigrate: <ThrowOnError extends boolean = false>(options?: Options<RepoMigrateData, ThrowOnError>) => RequestResult<RepoMigrateResponses, RepoMigrateErrors, ThrowOnError>;
20611
20566
  /**
20612
20567
  * Search for repositories
20613
20568
  */
20614
- declare const repoSearch: <ThrowOnError extends boolean = false>(options?: Options<RepoSearchData, ThrowOnError>) => RequestResult<RepoSearchResponses, RepoSearchErrors, ThrowOnError, "fields">;
20569
+ declare const repoSearch: <ThrowOnError extends boolean = false>(options?: Options<RepoSearchData, ThrowOnError>) => RequestResult<RepoSearchResponses, RepoSearchErrors, ThrowOnError>;
20615
20570
  /**
20616
20571
  * Delete a repository
20617
20572
  */
20618
- declare const repoDelete: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteData, ThrowOnError>) => RequestResult<RepoDeleteResponses, RepoDeleteErrors, ThrowOnError, "fields">;
20573
+ declare const repoDelete: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteData, ThrowOnError>) => RequestResult<RepoDeleteResponses, RepoDeleteErrors, ThrowOnError>;
20619
20574
  /**
20620
20575
  * Get a repository
20621
20576
  */
20622
- declare const repoGet: <ThrowOnError extends boolean = false>(options: Options<RepoGetData, ThrowOnError>) => RequestResult<RepoGetResponses, RepoGetErrors, ThrowOnError, "fields">;
20577
+ declare const repoGet: <ThrowOnError extends boolean = false>(options: Options<RepoGetData, ThrowOnError>) => RequestResult<RepoGetResponses, RepoGetErrors, ThrowOnError>;
20623
20578
  /**
20624
20579
  * Edit a repository's properties. Only fields that are set will be changed.
20625
20580
  */
20626
- declare const repoEdit: <ThrowOnError extends boolean = false>(options: Options<RepoEditData, ThrowOnError>) => RequestResult<RepoEditResponses, RepoEditErrors, ThrowOnError, "fields">;
20581
+ declare const repoEdit: <ThrowOnError extends boolean = false>(options: Options<RepoEditData, ThrowOnError>) => RequestResult<RepoEditResponses, RepoEditErrors, ThrowOnError>;
20627
20582
  /**
20628
20583
  * Search for repository's action jobs according filter conditions
20629
20584
  */
20630
- declare const repoSearchRunJobs: <ThrowOnError extends boolean = false>(options: Options<RepoSearchRunJobsData, ThrowOnError>) => RequestResult<RepoSearchRunJobsResponses, RepoSearchRunJobsErrors, ThrowOnError, "fields">;
20585
+ declare const repoSearchRunJobs: <ThrowOnError extends boolean = false>(options: Options<RepoSearchRunJobsData, ThrowOnError>) => RequestResult<RepoSearchRunJobsResponses, RepoSearchRunJobsErrors, ThrowOnError>;
20631
20586
  /**
20632
20587
  * Get a repository's actions runner registration token
20633
20588
  */
20634
- declare const repoGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options: Options<RepoGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<RepoGetRunnerRegistrationTokenResponses, unknown, ThrowOnError, "fields">;
20589
+ declare const repoGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options: Options<RepoGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<RepoGetRunnerRegistrationTokenResponses, unknown, ThrowOnError>;
20635
20590
  /**
20636
20591
  * List a repository's action runs
20637
20592
  */
20638
- declare const listActionRuns: <ThrowOnError extends boolean = false>(options: Options<ListActionRunsData, ThrowOnError>) => RequestResult<ListActionRunsResponses, ListActionRunsErrors, ThrowOnError, "fields">;
20593
+ declare const listActionRuns: <ThrowOnError extends boolean = false>(options: Options<ListActionRunsData, ThrowOnError>) => RequestResult<ListActionRunsResponses, ListActionRunsErrors, ThrowOnError>;
20639
20594
  /**
20640
20595
  * Get an action run
20641
20596
  */
20642
- declare const actionRun: <ThrowOnError extends boolean = false>(options: Options<ActionRunData, ThrowOnError>) => RequestResult<ActionRunResponses, ActionRunErrors, ThrowOnError, "fields">;
20597
+ declare const actionRun: <ThrowOnError extends boolean = false>(options: Options<ActionRunData, ThrowOnError>) => RequestResult<ActionRunResponses, ActionRunErrors, ThrowOnError>;
20643
20598
  /**
20644
20599
  * List an repo's actions secrets
20645
20600
  */
20646
- declare const repoListActionsSecrets: <ThrowOnError extends boolean = false>(options: Options<RepoListActionsSecretsData, ThrowOnError>) => RequestResult<RepoListActionsSecretsResponses, RepoListActionsSecretsErrors, ThrowOnError, "fields">;
20601
+ declare const repoListActionsSecrets: <ThrowOnError extends boolean = false>(options: Options<RepoListActionsSecretsData, ThrowOnError>) => RequestResult<RepoListActionsSecretsResponses, RepoListActionsSecretsErrors, ThrowOnError>;
20647
20602
  /**
20648
20603
  * Delete a secret in a repository
20649
20604
  */
20650
- declare const deleteRepoSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteRepoSecretData, ThrowOnError>) => RequestResult<DeleteRepoSecretResponses, DeleteRepoSecretErrors, ThrowOnError, "fields">;
20605
+ declare const deleteRepoSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteRepoSecretData, ThrowOnError>) => RequestResult<DeleteRepoSecretResponses, DeleteRepoSecretErrors, ThrowOnError>;
20651
20606
  /**
20652
20607
  * Create or Update a secret value in a repository
20653
20608
  */
20654
- declare const updateRepoSecret: <ThrowOnError extends boolean = false>(options: Options<UpdateRepoSecretData, ThrowOnError>) => RequestResult<UpdateRepoSecretResponses, UpdateRepoSecretErrors, ThrowOnError, "fields">;
20609
+ declare const updateRepoSecret: <ThrowOnError extends boolean = false>(options: Options<UpdateRepoSecretData, ThrowOnError>) => RequestResult<UpdateRepoSecretResponses, UpdateRepoSecretErrors, ThrowOnError>;
20655
20610
  /**
20656
20611
  * List a repository's action tasks
20657
20612
  */
20658
- declare const listActionTasks: <ThrowOnError extends boolean = false>(options: Options<ListActionTasksData, ThrowOnError>) => RequestResult<ListActionTasksResponses, ListActionTasksErrors, ThrowOnError, "fields">;
20613
+ declare const listActionTasks: <ThrowOnError extends boolean = false>(options: Options<ListActionTasksData, ThrowOnError>) => RequestResult<ListActionTasksResponses, ListActionTasksErrors, ThrowOnError>;
20659
20614
  /**
20660
20615
  * Get repo-level variables list
20661
20616
  */
20662
- declare const getRepoVariablesList: <ThrowOnError extends boolean = false>(options: Options<GetRepoVariablesListData, ThrowOnError>) => RequestResult<GetRepoVariablesListResponses, GetRepoVariablesListErrors, ThrowOnError, "fields">;
20617
+ declare const getRepoVariablesList: <ThrowOnError extends boolean = false>(options: Options<GetRepoVariablesListData, ThrowOnError>) => RequestResult<GetRepoVariablesListResponses, GetRepoVariablesListErrors, ThrowOnError>;
20663
20618
  /**
20664
20619
  * Delete a repo-level variable
20665
20620
  */
20666
- declare const deleteRepoVariable: <ThrowOnError extends boolean = false>(options: Options<DeleteRepoVariableData, ThrowOnError>) => RequestResult<DeleteRepoVariableResponses, DeleteRepoVariableErrors, ThrowOnError, "fields">;
20621
+ declare const deleteRepoVariable: <ThrowOnError extends boolean = false>(options: Options<DeleteRepoVariableData, ThrowOnError>) => RequestResult<DeleteRepoVariableResponses, DeleteRepoVariableErrors, ThrowOnError>;
20667
20622
  /**
20668
20623
  * Get a repo-level variable
20669
20624
  */
20670
- declare const getRepoVariable: <ThrowOnError extends boolean = false>(options: Options<GetRepoVariableData, ThrowOnError>) => RequestResult<GetRepoVariableResponses, GetRepoVariableErrors, ThrowOnError, "fields">;
20625
+ declare const getRepoVariable: <ThrowOnError extends boolean = false>(options: Options<GetRepoVariableData, ThrowOnError>) => RequestResult<GetRepoVariableResponses, GetRepoVariableErrors, ThrowOnError>;
20671
20626
  /**
20672
20627
  * Create a repo-level variable
20673
20628
  */
20674
- declare const createRepoVariable: <ThrowOnError extends boolean = false>(options: Options<CreateRepoVariableData, ThrowOnError>) => RequestResult<CreateRepoVariableResponses, CreateRepoVariableErrors, ThrowOnError, "fields">;
20629
+ declare const createRepoVariable: <ThrowOnError extends boolean = false>(options: Options<CreateRepoVariableData, ThrowOnError>) => RequestResult<CreateRepoVariableResponses, CreateRepoVariableErrors, ThrowOnError>;
20675
20630
  /**
20676
20631
  * Update a repo-level variable
20677
20632
  */
20678
- declare const updateRepoVariable: <ThrowOnError extends boolean = false>(options: Options<UpdateRepoVariableData, ThrowOnError>) => RequestResult<UpdateRepoVariableResponses, UpdateRepoVariableErrors, ThrowOnError, "fields">;
20633
+ declare const updateRepoVariable: <ThrowOnError extends boolean = false>(options: Options<UpdateRepoVariableData, ThrowOnError>) => RequestResult<UpdateRepoVariableResponses, UpdateRepoVariableErrors, ThrowOnError>;
20679
20634
  /**
20680
20635
  * Dispatches a workflow
20681
20636
  */
20682
- declare const dispatchWorkflow: <ThrowOnError extends boolean = false>(options: Options<DispatchWorkflowData, ThrowOnError>) => RequestResult<DispatchWorkflowResponses, DispatchWorkflowErrors, ThrowOnError, "fields">;
20637
+ declare const dispatchWorkflow: <ThrowOnError extends boolean = false>(options: Options<DispatchWorkflowData, ThrowOnError>) => RequestResult<DispatchWorkflowResponses, DispatchWorkflowErrors, ThrowOnError>;
20683
20638
  /**
20684
20639
  * List a repository's activity feeds
20685
20640
  */
20686
- declare const repoListActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<RepoListActivityFeedsData, ThrowOnError>) => RequestResult<RepoListActivityFeedsResponses, RepoListActivityFeedsErrors, ThrowOnError, "fields">;
20641
+ declare const repoListActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<RepoListActivityFeedsData, ThrowOnError>) => RequestResult<RepoListActivityFeedsResponses, RepoListActivityFeedsErrors, ThrowOnError>;
20687
20642
  /**
20688
20643
  * Get an archive of a repository
20689
20644
  */
20690
- declare const repoGetArchive: <ThrowOnError extends boolean = false>(options: Options<RepoGetArchiveData, ThrowOnError>) => RequestResult<RepoGetArchiveResponses, RepoGetArchiveErrors, ThrowOnError, "fields">;
20645
+ declare const repoGetArchive: <ThrowOnError extends boolean = false>(options: Options<RepoGetArchiveData, ThrowOnError>) => RequestResult<RepoGetArchiveResponses, RepoGetArchiveErrors, ThrowOnError>;
20691
20646
  /**
20692
20647
  * Return all users that have write access and can be assigned to issues
20693
20648
  */
20694
- declare const repoGetAssignees: <ThrowOnError extends boolean = false>(options: Options<RepoGetAssigneesData, ThrowOnError>) => RequestResult<RepoGetAssigneesResponses, RepoGetAssigneesErrors, ThrowOnError, "fields">;
20649
+ declare const repoGetAssignees: <ThrowOnError extends boolean = false>(options: Options<RepoGetAssigneesData, ThrowOnError>) => RequestResult<RepoGetAssigneesResponses, RepoGetAssigneesErrors, ThrowOnError>;
20695
20650
  /**
20696
20651
  * Delete a repository's avatar
20697
20652
  */
20698
- declare const repoDeleteAvatar: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteAvatarData, ThrowOnError>) => RequestResult<RepoDeleteAvatarResponses, RepoDeleteAvatarErrors, ThrowOnError, "fields">;
20653
+ declare const repoDeleteAvatar: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteAvatarData, ThrowOnError>) => RequestResult<RepoDeleteAvatarResponses, RepoDeleteAvatarErrors, ThrowOnError>;
20699
20654
  /**
20700
20655
  * Update a repository's avatar
20701
20656
  */
20702
- declare const repoUpdateAvatar: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateAvatarData, ThrowOnError>) => RequestResult<RepoUpdateAvatarResponses, RepoUpdateAvatarErrors, ThrowOnError, "fields">;
20657
+ declare const repoUpdateAvatar: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateAvatarData, ThrowOnError>) => RequestResult<RepoUpdateAvatarResponses, RepoUpdateAvatarErrors, ThrowOnError>;
20703
20658
  /**
20704
20659
  * List branch protections for a repository
20705
20660
  */
20706
- declare const repoListBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoListBranchProtectionData, ThrowOnError>) => RequestResult<RepoListBranchProtectionResponses, unknown, ThrowOnError, "fields">;
20661
+ declare const repoListBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoListBranchProtectionData, ThrowOnError>) => RequestResult<RepoListBranchProtectionResponses, unknown, ThrowOnError>;
20707
20662
  /**
20708
20663
  * Create a branch protections for a repository
20709
20664
  */
20710
- declare const repoCreateBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoCreateBranchProtectionData, ThrowOnError>) => RequestResult<RepoCreateBranchProtectionResponses, RepoCreateBranchProtectionErrors, ThrowOnError, "fields">;
20665
+ declare const repoCreateBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoCreateBranchProtectionData, ThrowOnError>) => RequestResult<RepoCreateBranchProtectionResponses, RepoCreateBranchProtectionErrors, ThrowOnError>;
20711
20666
  /**
20712
20667
  * Delete a specific branch protection for the repository
20713
20668
  */
20714
- declare const repoDeleteBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteBranchProtectionData, ThrowOnError>) => RequestResult<RepoDeleteBranchProtectionResponses, RepoDeleteBranchProtectionErrors, ThrowOnError, "fields">;
20669
+ declare const repoDeleteBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteBranchProtectionData, ThrowOnError>) => RequestResult<RepoDeleteBranchProtectionResponses, RepoDeleteBranchProtectionErrors, ThrowOnError>;
20715
20670
  /**
20716
20671
  * Get a specific branch protection for the repository
20717
20672
  */
20718
- declare const repoGetBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoGetBranchProtectionData, ThrowOnError>) => RequestResult<RepoGetBranchProtectionResponses, RepoGetBranchProtectionErrors, ThrowOnError, "fields">;
20673
+ declare const repoGetBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoGetBranchProtectionData, ThrowOnError>) => RequestResult<RepoGetBranchProtectionResponses, RepoGetBranchProtectionErrors, ThrowOnError>;
20719
20674
  /**
20720
20675
  * Edit a branch protections for a repository. Only fields that are set will be changed
20721
20676
  */
20722
- declare const repoEditBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoEditBranchProtectionData, ThrowOnError>) => RequestResult<RepoEditBranchProtectionResponses, RepoEditBranchProtectionErrors, ThrowOnError, "fields">;
20677
+ declare const repoEditBranchProtection: <ThrowOnError extends boolean = false>(options: Options<RepoEditBranchProtectionData, ThrowOnError>) => RequestResult<RepoEditBranchProtectionResponses, RepoEditBranchProtectionErrors, ThrowOnError>;
20723
20678
  /**
20724
20679
  * List a repository's branches
20725
20680
  */
20726
- declare const repoListBranches: <ThrowOnError extends boolean = false>(options: Options<RepoListBranchesData, ThrowOnError>) => RequestResult<RepoListBranchesResponses, unknown, ThrowOnError, "fields">;
20681
+ declare const repoListBranches: <ThrowOnError extends boolean = false>(options: Options<RepoListBranchesData, ThrowOnError>) => RequestResult<RepoListBranchesResponses, unknown, ThrowOnError>;
20727
20682
  /**
20728
20683
  * Create a branch
20729
20684
  */
20730
- declare const repoCreateBranch: <ThrowOnError extends boolean = false>(options: Options<RepoCreateBranchData, ThrowOnError>) => RequestResult<RepoCreateBranchResponses, RepoCreateBranchErrors, ThrowOnError, "fields">;
20685
+ declare const repoCreateBranch: <ThrowOnError extends boolean = false>(options: Options<RepoCreateBranchData, ThrowOnError>) => RequestResult<RepoCreateBranchResponses, RepoCreateBranchErrors, ThrowOnError>;
20731
20686
  /**
20732
20687
  * Delete a specific branch from a repository
20733
20688
  */
20734
- declare const repoDeleteBranch: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteBranchData, ThrowOnError>) => RequestResult<RepoDeleteBranchResponses, RepoDeleteBranchErrors, ThrowOnError, "fields">;
20689
+ declare const repoDeleteBranch: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteBranchData, ThrowOnError>) => RequestResult<RepoDeleteBranchResponses, RepoDeleteBranchErrors, ThrowOnError>;
20735
20690
  /**
20736
20691
  * Retrieve a specific branch from a repository, including its effective branch protection
20737
20692
  */
20738
- declare const repoGetBranch: <ThrowOnError extends boolean = false>(options: Options<RepoGetBranchData, ThrowOnError>) => RequestResult<RepoGetBranchResponses, RepoGetBranchErrors, ThrowOnError, "fields">;
20693
+ declare const repoGetBranch: <ThrowOnError extends boolean = false>(options: Options<RepoGetBranchData, ThrowOnError>) => RequestResult<RepoGetBranchResponses, RepoGetBranchErrors, ThrowOnError>;
20739
20694
  /**
20740
20695
  * Update a branch
20741
20696
  */
20742
- declare const repoUpdateBranch: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateBranchData, ThrowOnError>) => RequestResult<RepoUpdateBranchResponses, RepoUpdateBranchErrors, ThrowOnError, "fields">;
20697
+ declare const repoUpdateBranch: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateBranchData, ThrowOnError>) => RequestResult<RepoUpdateBranchResponses, RepoUpdateBranchErrors, ThrowOnError>;
20743
20698
  /**
20744
20699
  * List a repository's collaborators
20745
20700
  */
20746
- declare const repoListCollaborators: <ThrowOnError extends boolean = false>(options: Options<RepoListCollaboratorsData, ThrowOnError>) => RequestResult<RepoListCollaboratorsResponses, RepoListCollaboratorsErrors, ThrowOnError, "fields">;
20701
+ declare const repoListCollaborators: <ThrowOnError extends boolean = false>(options: Options<RepoListCollaboratorsData, ThrowOnError>) => RequestResult<RepoListCollaboratorsResponses, RepoListCollaboratorsErrors, ThrowOnError>;
20747
20702
  /**
20748
20703
  * Delete a collaborator from a repository
20749
20704
  */
20750
- declare const repoDeleteCollaborator: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteCollaboratorData, ThrowOnError>) => RequestResult<RepoDeleteCollaboratorResponses, RepoDeleteCollaboratorErrors, ThrowOnError, "fields">;
20705
+ declare const repoDeleteCollaborator: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteCollaboratorData, ThrowOnError>) => RequestResult<RepoDeleteCollaboratorResponses, RepoDeleteCollaboratorErrors, ThrowOnError>;
20751
20706
  /**
20752
20707
  * Check if a user is a collaborator of a repository
20753
20708
  *
20754
20709
  * If the user is a collaborator, return 204. If the user is not a collaborator, return 404.
20755
20710
  */
20756
- declare const repoCheckCollaborator: <ThrowOnError extends boolean = false>(options: Options<RepoCheckCollaboratorData, ThrowOnError>) => RequestResult<RepoCheckCollaboratorResponses, RepoCheckCollaboratorErrors, ThrowOnError, "fields">;
20711
+ declare const repoCheckCollaborator: <ThrowOnError extends boolean = false>(options: Options<RepoCheckCollaboratorData, ThrowOnError>) => RequestResult<RepoCheckCollaboratorResponses, RepoCheckCollaboratorErrors, ThrowOnError>;
20757
20712
  /**
20758
20713
  * Add a collaborator to a repository
20759
20714
  */
20760
- declare const repoAddCollaborator: <ThrowOnError extends boolean = false>(options: Options<RepoAddCollaboratorData, ThrowOnError>) => RequestResult<RepoAddCollaboratorResponses, RepoAddCollaboratorErrors, ThrowOnError, "fields">;
20715
+ declare const repoAddCollaborator: <ThrowOnError extends boolean = false>(options: Options<RepoAddCollaboratorData, ThrowOnError>) => RequestResult<RepoAddCollaboratorResponses, RepoAddCollaboratorErrors, ThrowOnError>;
20761
20716
  /**
20762
20717
  * Get repository permissions for a user
20763
20718
  */
20764
- declare const repoGetRepoPermissions: <ThrowOnError extends boolean = false>(options: Options<RepoGetRepoPermissionsData, ThrowOnError>) => RequestResult<RepoGetRepoPermissionsResponses, RepoGetRepoPermissionsErrors, ThrowOnError, "fields">;
20719
+ declare const repoGetRepoPermissions: <ThrowOnError extends boolean = false>(options: Options<RepoGetRepoPermissionsData, ThrowOnError>) => RequestResult<RepoGetRepoPermissionsResponses, RepoGetRepoPermissionsErrors, ThrowOnError>;
20765
20720
  /**
20766
20721
  * Get a list of all commits from a repository
20767
20722
  */
20768
- declare const repoGetAllCommits: <ThrowOnError extends boolean = false>(options: Options<RepoGetAllCommitsData, ThrowOnError>) => RequestResult<RepoGetAllCommitsResponses, RepoGetAllCommitsErrors, ThrowOnError, "fields">;
20723
+ declare const repoGetAllCommits: <ThrowOnError extends boolean = false>(options: Options<RepoGetAllCommitsData, ThrowOnError>) => RequestResult<RepoGetAllCommitsResponses, RepoGetAllCommitsErrors, ThrowOnError>;
20769
20724
  /**
20770
20725
  * Get a commit's combined status, by branch/tag/commit reference
20771
20726
  */
20772
- declare const repoGetCombinedStatusByRef: <ThrowOnError extends boolean = false>(options: Options<RepoGetCombinedStatusByRefData, ThrowOnError>) => RequestResult<RepoGetCombinedStatusByRefResponses, RepoGetCombinedStatusByRefErrors, ThrowOnError, "fields">;
20727
+ declare const repoGetCombinedStatusByRef: <ThrowOnError extends boolean = false>(options: Options<RepoGetCombinedStatusByRefData, ThrowOnError>) => RequestResult<RepoGetCombinedStatusByRefResponses, RepoGetCombinedStatusByRefErrors, ThrowOnError>;
20773
20728
  /**
20774
20729
  * Get a commit's statuses, by branch/tag/commit reference
20775
20730
  */
20776
- declare const repoListStatusesByRef: <ThrowOnError extends boolean = false>(options: Options<RepoListStatusesByRefData, ThrowOnError>) => RequestResult<RepoListStatusesByRefResponses, RepoListStatusesByRefErrors, ThrowOnError, "fields">;
20731
+ declare const repoListStatusesByRef: <ThrowOnError extends boolean = false>(options: Options<RepoListStatusesByRefData, ThrowOnError>) => RequestResult<RepoListStatusesByRefResponses, RepoListStatusesByRefErrors, ThrowOnError>;
20777
20732
  /**
20778
20733
  * Get the pull request of the commit
20779
20734
  */
20780
- declare const repoGetCommitPullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoGetCommitPullRequestData, ThrowOnError>) => RequestResult<RepoGetCommitPullRequestResponses, RepoGetCommitPullRequestErrors, ThrowOnError, "fields">;
20735
+ declare const repoGetCommitPullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoGetCommitPullRequestData, ThrowOnError>) => RequestResult<RepoGetCommitPullRequestResponses, RepoGetCommitPullRequestErrors, ThrowOnError>;
20781
20736
  /**
20782
20737
  * Get commit comparison information
20783
20738
  */
20784
- declare const repoCompareDiff: <ThrowOnError extends boolean = false>(options: Options<RepoCompareDiffData, ThrowOnError>) => RequestResult<RepoCompareDiffResponses, RepoCompareDiffErrors, ThrowOnError, "fields">;
20739
+ declare const repoCompareDiff: <ThrowOnError extends boolean = false>(options: Options<RepoCompareDiffData, ThrowOnError>) => RequestResult<RepoCompareDiffResponses, RepoCompareDiffErrors, ThrowOnError>;
20785
20740
  /**
20786
20741
  * Gets the metadata of all the entries of the root dir
20787
20742
  */
20788
- declare const repoGetContentsList: <ThrowOnError extends boolean = false>(options: Options<RepoGetContentsListData, ThrowOnError>) => RequestResult<RepoGetContentsListResponses, RepoGetContentsListErrors, ThrowOnError, "fields">;
20743
+ declare const repoGetContentsList: <ThrowOnError extends boolean = false>(options: Options<RepoGetContentsListData, ThrowOnError>) => RequestResult<RepoGetContentsListResponses, RepoGetContentsListErrors, ThrowOnError>;
20789
20744
  /**
20790
20745
  * Modify multiple files in a repository
20791
20746
  */
20792
- declare const repoChangeFiles: <ThrowOnError extends boolean = false>(options: Options<RepoChangeFilesData, ThrowOnError>) => RequestResult<RepoChangeFilesResponses, RepoChangeFilesErrors, ThrowOnError, "fields">;
20747
+ declare const repoChangeFiles: <ThrowOnError extends boolean = false>(options: Options<RepoChangeFilesData, ThrowOnError>) => RequestResult<RepoChangeFilesResponses, RepoChangeFilesErrors, ThrowOnError>;
20793
20748
  /**
20794
20749
  * Delete a file in a repository
20795
20750
  */
20796
- declare const repoDeleteFile: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteFileData, ThrowOnError>) => RequestResult<RepoDeleteFileResponses, RepoDeleteFileErrors, ThrowOnError, "fields">;
20751
+ declare const repoDeleteFile: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteFileData, ThrowOnError>) => RequestResult<RepoDeleteFileResponses, RepoDeleteFileErrors, ThrowOnError>;
20797
20752
  /**
20798
20753
  * Gets the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir
20799
20754
  */
20800
- declare const repoGetContents: <ThrowOnError extends boolean = false>(options: Options<RepoGetContentsData, ThrowOnError>) => RequestResult<RepoGetContentsResponses, RepoGetContentsErrors, ThrowOnError, "fields">;
20755
+ declare const repoGetContents: <ThrowOnError extends boolean = false>(options: Options<RepoGetContentsData, ThrowOnError>) => RequestResult<RepoGetContentsResponses, RepoGetContentsErrors, ThrowOnError>;
20801
20756
  /**
20802
20757
  * Create a file in a repository
20803
20758
  */
20804
- declare const repoCreateFile: <ThrowOnError extends boolean = false>(options: Options<RepoCreateFileData, ThrowOnError>) => RequestResult<RepoCreateFileResponses, RepoCreateFileErrors, ThrowOnError, "fields">;
20759
+ declare const repoCreateFile: <ThrowOnError extends boolean = false>(options: Options<RepoCreateFileData, ThrowOnError>) => RequestResult<RepoCreateFileResponses, RepoCreateFileErrors, ThrowOnError>;
20805
20760
  /**
20806
20761
  * Update a file in a repository
20807
20762
  */
20808
- declare const repoUpdateFile: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateFileData, ThrowOnError>) => RequestResult<RepoUpdateFileResponses, RepoUpdateFileErrors, ThrowOnError, "fields">;
20763
+ declare const repoUpdateFile: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateFileData, ThrowOnError>) => RequestResult<RepoUpdateFileResponses, RepoUpdateFileErrors, ThrowOnError>;
20809
20764
  /**
20810
20765
  * Convert a mirror repo to a normal repo.
20811
20766
  */
20812
- declare const repoConvert: <ThrowOnError extends boolean = false>(options: Options<RepoConvertData, ThrowOnError>) => RequestResult<RepoConvertResponses, RepoConvertErrors, ThrowOnError, "fields">;
20767
+ declare const repoConvert: <ThrowOnError extends boolean = false>(options: Options<RepoConvertData, ThrowOnError>) => RequestResult<RepoConvertResponses, RepoConvertErrors, ThrowOnError>;
20813
20768
  /**
20814
20769
  * Apply diff patch to repository
20815
20770
  */
20816
- declare const repoApplyDiffPatch: <ThrowOnError extends boolean = false>(options: Options<RepoApplyDiffPatchData, ThrowOnError>) => RequestResult<RepoApplyDiffPatchResponses, RepoApplyDiffPatchErrors, ThrowOnError, "fields">;
20771
+ declare const repoApplyDiffPatch: <ThrowOnError extends boolean = false>(options: Options<RepoApplyDiffPatchData, ThrowOnError>) => RequestResult<RepoApplyDiffPatchResponses, RepoApplyDiffPatchErrors, ThrowOnError>;
20817
20772
  /**
20818
20773
  * Get the EditorConfig definitions of a file in a repository
20819
20774
  */
20820
- declare const repoGetEditorConfig: <ThrowOnError extends boolean = false>(options: Options<RepoGetEditorConfigData, ThrowOnError>) => RequestResult<RepoGetEditorConfigResponses, RepoGetEditorConfigErrors, ThrowOnError, "fields">;
20775
+ declare const repoGetEditorConfig: <ThrowOnError extends boolean = false>(options: Options<RepoGetEditorConfigData, ThrowOnError>) => RequestResult<RepoGetEditorConfigResponses, RepoGetEditorConfigErrors, ThrowOnError>;
20821
20776
  /**
20822
20777
  * Remove all flags from a repository
20823
20778
  */
20824
- declare const repoDeleteAllFlags: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteAllFlagsData, ThrowOnError>) => RequestResult<RepoDeleteAllFlagsResponses, RepoDeleteAllFlagsErrors, ThrowOnError, "fields">;
20779
+ declare const repoDeleteAllFlags: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteAllFlagsData, ThrowOnError>) => RequestResult<RepoDeleteAllFlagsResponses, RepoDeleteAllFlagsErrors, ThrowOnError>;
20825
20780
  /**
20826
20781
  * List a repository's flags
20827
20782
  */
20828
- declare const repoListFlags: <ThrowOnError extends boolean = false>(options: Options<RepoListFlagsData, ThrowOnError>) => RequestResult<RepoListFlagsResponses, RepoListFlagsErrors, ThrowOnError, "fields">;
20783
+ declare const repoListFlags: <ThrowOnError extends boolean = false>(options: Options<RepoListFlagsData, ThrowOnError>) => RequestResult<RepoListFlagsResponses, RepoListFlagsErrors, ThrowOnError>;
20829
20784
  /**
20830
20785
  * Replace all flags of a repository
20831
20786
  */
20832
- declare const repoReplaceAllFlags: <ThrowOnError extends boolean = false>(options: Options<RepoReplaceAllFlagsData, ThrowOnError>) => RequestResult<RepoReplaceAllFlagsResponses, RepoReplaceAllFlagsErrors, ThrowOnError, "fields">;
20787
+ declare const repoReplaceAllFlags: <ThrowOnError extends boolean = false>(options: Options<RepoReplaceAllFlagsData, ThrowOnError>) => RequestResult<RepoReplaceAllFlagsResponses, RepoReplaceAllFlagsErrors, ThrowOnError>;
20833
20788
  /**
20834
20789
  * Remove a flag from a repository
20835
20790
  */
20836
- declare const repoDeleteFlag: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteFlagData, ThrowOnError>) => RequestResult<RepoDeleteFlagResponses, RepoDeleteFlagErrors, ThrowOnError, "fields">;
20791
+ declare const repoDeleteFlag: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteFlagData, ThrowOnError>) => RequestResult<RepoDeleteFlagResponses, RepoDeleteFlagErrors, ThrowOnError>;
20837
20792
  /**
20838
20793
  * Check if a repository has a given flag
20839
20794
  */
20840
- declare const repoCheckFlag: <ThrowOnError extends boolean = false>(options: Options<RepoCheckFlagData, ThrowOnError>) => RequestResult<RepoCheckFlagResponses, RepoCheckFlagErrors, ThrowOnError, "fields">;
20795
+ declare const repoCheckFlag: <ThrowOnError extends boolean = false>(options: Options<RepoCheckFlagData, ThrowOnError>) => RequestResult<RepoCheckFlagResponses, RepoCheckFlagErrors, ThrowOnError>;
20841
20796
  /**
20842
20797
  * Add a flag to a repository
20843
20798
  */
20844
- declare const repoAddFlag: <ThrowOnError extends boolean = false>(options: Options<RepoAddFlagData, ThrowOnError>) => RequestResult<RepoAddFlagResponses, RepoAddFlagErrors, ThrowOnError, "fields">;
20799
+ declare const repoAddFlag: <ThrowOnError extends boolean = false>(options: Options<RepoAddFlagData, ThrowOnError>) => RequestResult<RepoAddFlagResponses, RepoAddFlagErrors, ThrowOnError>;
20845
20800
  /**
20846
20801
  * List a repository's forks
20847
20802
  */
20848
- declare const listForks: <ThrowOnError extends boolean = false>(options: Options<ListForksData, ThrowOnError>) => RequestResult<ListForksResponses, ListForksErrors, ThrowOnError, "fields">;
20803
+ declare const listForks: <ThrowOnError extends boolean = false>(options: Options<ListForksData, ThrowOnError>) => RequestResult<ListForksResponses, ListForksErrors, ThrowOnError>;
20849
20804
  /**
20850
20805
  * Fork a repository
20851
20806
  */
20852
- declare const createFork: <ThrowOnError extends boolean = false>(options: Options<CreateForkData, ThrowOnError>) => RequestResult<CreateForkResponses, CreateForkErrors, ThrowOnError, "fields">;
20807
+ declare const createFork: <ThrowOnError extends boolean = false>(options: Options<CreateForkData, ThrowOnError>) => RequestResult<CreateForkResponses, CreateForkErrors, ThrowOnError>;
20853
20808
  /**
20854
20809
  * Gets multiple blobs of a repository.
20855
20810
  */
20856
- declare const getBlobs: <ThrowOnError extends boolean = false>(options: Options<GetBlobsData, ThrowOnError>) => RequestResult<GetBlobsResponses, GetBlobsErrors, ThrowOnError, "fields">;
20811
+ declare const getBlobs: <ThrowOnError extends boolean = false>(options: Options<GetBlobsData, ThrowOnError>) => RequestResult<GetBlobsResponses, GetBlobsErrors, ThrowOnError>;
20857
20812
  /**
20858
20813
  * Gets the blob of a repository.
20859
20814
  */
20860
- declare const getBlob: <ThrowOnError extends boolean = false>(options: Options<GetBlobData, ThrowOnError>) => RequestResult<GetBlobResponses, GetBlobErrors, ThrowOnError, "fields">;
20815
+ declare const getBlob: <ThrowOnError extends boolean = false>(options: Options<GetBlobData, ThrowOnError>) => RequestResult<GetBlobResponses, GetBlobErrors, ThrowOnError>;
20861
20816
  /**
20862
20817
  * Get a single commit from a repository
20863
20818
  */
20864
- declare const repoGetSingleCommit: <ThrowOnError extends boolean = false>(options: Options<RepoGetSingleCommitData, ThrowOnError>) => RequestResult<RepoGetSingleCommitResponses, RepoGetSingleCommitErrors, ThrowOnError, "fields">;
20819
+ declare const repoGetSingleCommit: <ThrowOnError extends boolean = false>(options: Options<RepoGetSingleCommitData, ThrowOnError>) => RequestResult<RepoGetSingleCommitResponses, RepoGetSingleCommitErrors, ThrowOnError>;
20865
20820
  /**
20866
20821
  * Get a commit's diff or patch
20867
20822
  */
20868
- declare const repoDownloadCommitDiffOrPatch: <ThrowOnError extends boolean = false>(options: Options<RepoDownloadCommitDiffOrPatchData, ThrowOnError>) => RequestResult<RepoDownloadCommitDiffOrPatchResponses, RepoDownloadCommitDiffOrPatchErrors, ThrowOnError, "fields">;
20823
+ declare const repoDownloadCommitDiffOrPatch: <ThrowOnError extends boolean = false>(options: Options<RepoDownloadCommitDiffOrPatchData, ThrowOnError>) => RequestResult<RepoDownloadCommitDiffOrPatchResponses, RepoDownloadCommitDiffOrPatchErrors, ThrowOnError>;
20869
20824
  /**
20870
20825
  * Removes a note corresponding to a single commit from a repository
20871
20826
  */
20872
- declare const repoRemoveNote: <ThrowOnError extends boolean = false>(options: Options<RepoRemoveNoteData, ThrowOnError>) => RequestResult<RepoRemoveNoteResponses, RepoRemoveNoteErrors, ThrowOnError, "fields">;
20827
+ declare const repoRemoveNote: <ThrowOnError extends boolean = false>(options: Options<RepoRemoveNoteData, ThrowOnError>) => RequestResult<RepoRemoveNoteResponses, RepoRemoveNoteErrors, ThrowOnError>;
20873
20828
  /**
20874
20829
  * Get a note corresponding to a single commit from a repository
20875
20830
  */
20876
- declare const repoGetNote: <ThrowOnError extends boolean = false>(options: Options<RepoGetNoteData, ThrowOnError>) => RequestResult<RepoGetNoteResponses, RepoGetNoteErrors, ThrowOnError, "fields">;
20831
+ declare const repoGetNote: <ThrowOnError extends boolean = false>(options: Options<RepoGetNoteData, ThrowOnError>) => RequestResult<RepoGetNoteResponses, RepoGetNoteErrors, ThrowOnError>;
20877
20832
  /**
20878
20833
  * Set a note corresponding to a single commit from a repository
20879
20834
  */
20880
- declare const repoSetNote: <ThrowOnError extends boolean = false>(options: Options<RepoSetNoteData, ThrowOnError>) => RequestResult<RepoSetNoteResponses, RepoSetNoteErrors, ThrowOnError, "fields">;
20835
+ declare const repoSetNote: <ThrowOnError extends boolean = false>(options: Options<RepoSetNoteData, ThrowOnError>) => RequestResult<RepoSetNoteResponses, RepoSetNoteErrors, ThrowOnError>;
20881
20836
  /**
20882
20837
  * Get specified ref or filtered repository's refs
20883
20838
  */
20884
- declare const repoListAllGitRefs: <ThrowOnError extends boolean = false>(options: Options<RepoListAllGitRefsData, ThrowOnError>) => RequestResult<RepoListAllGitRefsResponses, RepoListAllGitRefsErrors, ThrowOnError, "fields">;
20839
+ declare const repoListAllGitRefs: <ThrowOnError extends boolean = false>(options: Options<RepoListAllGitRefsData, ThrowOnError>) => RequestResult<RepoListAllGitRefsResponses, RepoListAllGitRefsErrors, ThrowOnError>;
20885
20840
  /**
20886
20841
  * Get specified ref or filtered repository's refs
20887
20842
  */
20888
- declare const repoListGitRefs: <ThrowOnError extends boolean = false>(options: Options<RepoListGitRefsData, ThrowOnError>) => RequestResult<RepoListGitRefsResponses, RepoListGitRefsErrors, ThrowOnError, "fields">;
20843
+ declare const repoListGitRefs: <ThrowOnError extends boolean = false>(options: Options<RepoListGitRefsData, ThrowOnError>) => RequestResult<RepoListGitRefsResponses, RepoListGitRefsErrors, ThrowOnError>;
20889
20844
  /**
20890
20845
  * Gets the tag object of an annotated tag (not lightweight tags)
20891
20846
  */
20892
- declare const getAnnotatedTag: <ThrowOnError extends boolean = false>(options: Options<GetAnnotatedTagData, ThrowOnError>) => RequestResult<GetAnnotatedTagResponses, GetAnnotatedTagErrors, ThrowOnError, "fields">;
20847
+ declare const getAnnotatedTag: <ThrowOnError extends boolean = false>(options: Options<GetAnnotatedTagData, ThrowOnError>) => RequestResult<GetAnnotatedTagResponses, GetAnnotatedTagErrors, ThrowOnError>;
20893
20848
  /**
20894
20849
  * Gets the tree of a repository.
20895
20850
  */
20896
- declare const getTree: <ThrowOnError extends boolean = false>(options: Options<GetTreeData, ThrowOnError>) => RequestResult<GetTreeResponses, GetTreeErrors, ThrowOnError, "fields">;
20851
+ declare const getTree: <ThrowOnError extends boolean = false>(options: Options<GetTreeData, ThrowOnError>) => RequestResult<GetTreeResponses, GetTreeErrors, ThrowOnError>;
20897
20852
  /**
20898
20853
  * List the hooks in a repository
20899
20854
  */
20900
- declare const repoListHooks: <ThrowOnError extends boolean = false>(options: Options<RepoListHooksData, ThrowOnError>) => RequestResult<RepoListHooksResponses, RepoListHooksErrors, ThrowOnError, "fields">;
20855
+ declare const repoListHooks: <ThrowOnError extends boolean = false>(options: Options<RepoListHooksData, ThrowOnError>) => RequestResult<RepoListHooksResponses, RepoListHooksErrors, ThrowOnError>;
20901
20856
  /**
20902
20857
  * Create a hook
20903
20858
  */
20904
- declare const repoCreateHook: <ThrowOnError extends boolean = false>(options: Options<RepoCreateHookData, ThrowOnError>) => RequestResult<RepoCreateHookResponses, RepoCreateHookErrors, ThrowOnError, "fields">;
20859
+ declare const repoCreateHook: <ThrowOnError extends boolean = false>(options: Options<RepoCreateHookData, ThrowOnError>) => RequestResult<RepoCreateHookResponses, RepoCreateHookErrors, ThrowOnError>;
20905
20860
  /**
20906
20861
  * List the Git hooks in a repository
20907
20862
  */
20908
- declare const repoListGitHooks: <ThrowOnError extends boolean = false>(options: Options<RepoListGitHooksData, ThrowOnError>) => RequestResult<RepoListGitHooksResponses, RepoListGitHooksErrors, ThrowOnError, "fields">;
20863
+ declare const repoListGitHooks: <ThrowOnError extends boolean = false>(options: Options<RepoListGitHooksData, ThrowOnError>) => RequestResult<RepoListGitHooksResponses, RepoListGitHooksErrors, ThrowOnError>;
20909
20864
  /**
20910
20865
  * Delete a Git hook in a repository
20911
20866
  */
20912
- declare const repoDeleteGitHook: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteGitHookData, ThrowOnError>) => RequestResult<RepoDeleteGitHookResponses, RepoDeleteGitHookErrors, ThrowOnError, "fields">;
20867
+ declare const repoDeleteGitHook: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteGitHookData, ThrowOnError>) => RequestResult<RepoDeleteGitHookResponses, RepoDeleteGitHookErrors, ThrowOnError>;
20913
20868
  /**
20914
20869
  * Get a Git hook
20915
20870
  */
20916
- declare const repoGetGitHook: <ThrowOnError extends boolean = false>(options: Options<RepoGetGitHookData, ThrowOnError>) => RequestResult<RepoGetGitHookResponses, RepoGetGitHookErrors, ThrowOnError, "fields">;
20871
+ declare const repoGetGitHook: <ThrowOnError extends boolean = false>(options: Options<RepoGetGitHookData, ThrowOnError>) => RequestResult<RepoGetGitHookResponses, RepoGetGitHookErrors, ThrowOnError>;
20917
20872
  /**
20918
20873
  * Edit a Git hook in a repository
20919
20874
  */
20920
- declare const repoEditGitHook: <ThrowOnError extends boolean = false>(options: Options<RepoEditGitHookData, ThrowOnError>) => RequestResult<RepoEditGitHookResponses, RepoEditGitHookErrors, ThrowOnError, "fields">;
20875
+ declare const repoEditGitHook: <ThrowOnError extends boolean = false>(options: Options<RepoEditGitHookData, ThrowOnError>) => RequestResult<RepoEditGitHookResponses, RepoEditGitHookErrors, ThrowOnError>;
20921
20876
  /**
20922
20877
  * Delete a hook in a repository
20923
20878
  */
20924
- declare const repoDeleteHook: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteHookData, ThrowOnError>) => RequestResult<RepoDeleteHookResponses, RepoDeleteHookErrors, ThrowOnError, "fields">;
20879
+ declare const repoDeleteHook: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteHookData, ThrowOnError>) => RequestResult<RepoDeleteHookResponses, RepoDeleteHookErrors, ThrowOnError>;
20925
20880
  /**
20926
20881
  * Get a hook
20927
20882
  */
20928
- declare const repoGetHook: <ThrowOnError extends boolean = false>(options: Options<RepoGetHookData, ThrowOnError>) => RequestResult<RepoGetHookResponses, RepoGetHookErrors, ThrowOnError, "fields">;
20883
+ declare const repoGetHook: <ThrowOnError extends boolean = false>(options: Options<RepoGetHookData, ThrowOnError>) => RequestResult<RepoGetHookResponses, RepoGetHookErrors, ThrowOnError>;
20929
20884
  /**
20930
20885
  * Edit a hook in a repository
20931
20886
  */
20932
- declare const repoEditHook: <ThrowOnError extends boolean = false>(options: Options<RepoEditHookData, ThrowOnError>) => RequestResult<RepoEditHookResponses, RepoEditHookErrors, ThrowOnError, "fields">;
20887
+ declare const repoEditHook: <ThrowOnError extends boolean = false>(options: Options<RepoEditHookData, ThrowOnError>) => RequestResult<RepoEditHookResponses, RepoEditHookErrors, ThrowOnError>;
20933
20888
  /**
20934
20889
  * Test a push webhook
20935
20890
  */
20936
- declare const repoTestHook: <ThrowOnError extends boolean = false>(options: Options<RepoTestHookData, ThrowOnError>) => RequestResult<RepoTestHookResponses, RepoTestHookErrors, ThrowOnError, "fields">;
20891
+ declare const repoTestHook: <ThrowOnError extends boolean = false>(options: Options<RepoTestHookData, ThrowOnError>) => RequestResult<RepoTestHookResponses, RepoTestHookErrors, ThrowOnError>;
20937
20892
  /**
20938
20893
  * Returns the issue config for a repo
20939
20894
  */
20940
- declare const repoGetIssueConfig: <ThrowOnError extends boolean = false>(options: Options<RepoGetIssueConfigData, ThrowOnError>) => RequestResult<RepoGetIssueConfigResponses, RepoGetIssueConfigErrors, ThrowOnError, "fields">;
20895
+ declare const repoGetIssueConfig: <ThrowOnError extends boolean = false>(options: Options<RepoGetIssueConfigData, ThrowOnError>) => RequestResult<RepoGetIssueConfigResponses, RepoGetIssueConfigErrors, ThrowOnError>;
20941
20896
  /**
20942
20897
  * Returns the validation information for a issue config
20943
20898
  */
20944
- declare const repoValidateIssueConfig: <ThrowOnError extends boolean = false>(options: Options<RepoValidateIssueConfigData, ThrowOnError>) => RequestResult<RepoValidateIssueConfigResponses, RepoValidateIssueConfigErrors, ThrowOnError, "fields">;
20899
+ declare const repoValidateIssueConfig: <ThrowOnError extends boolean = false>(options: Options<RepoValidateIssueConfigData, ThrowOnError>) => RequestResult<RepoValidateIssueConfigResponses, RepoValidateIssueConfigErrors, ThrowOnError>;
20945
20900
  /**
20946
20901
  * Get available issue templates for a repository
20947
20902
  */
20948
- declare const repoGetIssueTemplates: <ThrowOnError extends boolean = false>(options: Options<RepoGetIssueTemplatesData, ThrowOnError>) => RequestResult<RepoGetIssueTemplatesResponses, RepoGetIssueTemplatesErrors, ThrowOnError, "fields">;
20903
+ declare const repoGetIssueTemplates: <ThrowOnError extends boolean = false>(options: Options<RepoGetIssueTemplatesData, ThrowOnError>) => RequestResult<RepoGetIssueTemplatesResponses, RepoGetIssueTemplatesErrors, ThrowOnError>;
20949
20904
  /**
20950
20905
  * List a repository's issues
20951
20906
  */
20952
- declare const issueListIssues: <ThrowOnError extends boolean = false>(options: Options<IssueListIssuesData, ThrowOnError>) => RequestResult<IssueListIssuesResponses, IssueListIssuesErrors, ThrowOnError, "fields">;
20907
+ declare const issueListIssues: <ThrowOnError extends boolean = false>(options: Options<IssueListIssuesData, ThrowOnError>) => RequestResult<IssueListIssuesResponses, IssueListIssuesErrors, ThrowOnError>;
20953
20908
  /**
20954
20909
  * Create an issue. If using deadline only the date will be taken into account, and time of day ignored.
20955
20910
  */
20956
- declare const issueCreateIssue: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueData, ThrowOnError>) => RequestResult<IssueCreateIssueResponses, IssueCreateIssueErrors, ThrowOnError, "fields">;
20911
+ declare const issueCreateIssue: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueData, ThrowOnError>) => RequestResult<IssueCreateIssueResponses, IssueCreateIssueErrors, ThrowOnError>;
20957
20912
  /**
20958
20913
  * List all comments in a repository
20959
20914
  */
20960
- declare const issueGetRepoComments: <ThrowOnError extends boolean = false>(options: Options<IssueGetRepoCommentsData, ThrowOnError>) => RequestResult<IssueGetRepoCommentsResponses, IssueGetRepoCommentsErrors, ThrowOnError, "fields">;
20915
+ declare const issueGetRepoComments: <ThrowOnError extends boolean = false>(options: Options<IssueGetRepoCommentsData, ThrowOnError>) => RequestResult<IssueGetRepoCommentsResponses, IssueGetRepoCommentsErrors, ThrowOnError>;
20961
20916
  /**
20962
20917
  * Delete a comment
20963
20918
  */
20964
- declare const issueDeleteComment: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteCommentData, ThrowOnError>) => RequestResult<IssueDeleteCommentResponses, IssueDeleteCommentErrors, ThrowOnError, "fields">;
20919
+ declare const issueDeleteComment: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteCommentData, ThrowOnError>) => RequestResult<IssueDeleteCommentResponses, IssueDeleteCommentErrors, ThrowOnError>;
20965
20920
  /**
20966
20921
  * Get a comment
20967
20922
  */
20968
- declare const issueGetComment: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentData, ThrowOnError>) => RequestResult<IssueGetCommentResponses, IssueGetCommentErrors, ThrowOnError, "fields">;
20923
+ declare const issueGetComment: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentData, ThrowOnError>) => RequestResult<IssueGetCommentResponses, IssueGetCommentErrors, ThrowOnError>;
20969
20924
  /**
20970
20925
  * Edit a comment
20971
20926
  */
20972
- declare const issueEditComment: <ThrowOnError extends boolean = false>(options: Options<IssueEditCommentData, ThrowOnError>) => RequestResult<IssueEditCommentResponses, IssueEditCommentErrors, ThrowOnError, "fields">;
20927
+ declare const issueEditComment: <ThrowOnError extends boolean = false>(options: Options<IssueEditCommentData, ThrowOnError>) => RequestResult<IssueEditCommentResponses, IssueEditCommentErrors, ThrowOnError>;
20973
20928
  /**
20974
20929
  * List comment's attachments
20975
20930
  */
20976
- declare const issueListIssueCommentAttachments: <ThrowOnError extends boolean = false>(options: Options<IssueListIssueCommentAttachmentsData, ThrowOnError>) => RequestResult<IssueListIssueCommentAttachmentsResponses, IssueListIssueCommentAttachmentsErrors, ThrowOnError, "fields">;
20931
+ declare const issueListIssueCommentAttachments: <ThrowOnError extends boolean = false>(options: Options<IssueListIssueCommentAttachmentsData, ThrowOnError>) => RequestResult<IssueListIssueCommentAttachmentsResponses, IssueListIssueCommentAttachmentsErrors, ThrowOnError>;
20977
20932
  /**
20978
20933
  * Create a comment attachment
20979
20934
  */
20980
- declare const issueCreateIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueCreateIssueCommentAttachmentResponses, IssueCreateIssueCommentAttachmentErrors, ThrowOnError, "fields">;
20935
+ declare const issueCreateIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueCreateIssueCommentAttachmentResponses, IssueCreateIssueCommentAttachmentErrors, ThrowOnError>;
20981
20936
  /**
20982
20937
  * Delete a comment attachment
20983
20938
  */
20984
- declare const issueDeleteIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueDeleteIssueCommentAttachmentResponses, IssueDeleteIssueCommentAttachmentErrors, ThrowOnError, "fields">;
20939
+ declare const issueDeleteIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueDeleteIssueCommentAttachmentResponses, IssueDeleteIssueCommentAttachmentErrors, ThrowOnError>;
20985
20940
  /**
20986
20941
  * Get a comment attachment
20987
20942
  */
20988
- declare const issueGetIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueGetIssueCommentAttachmentResponses, IssueGetIssueCommentAttachmentErrors, ThrowOnError, "fields">;
20943
+ declare const issueGetIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueGetIssueCommentAttachmentResponses, IssueGetIssueCommentAttachmentErrors, ThrowOnError>;
20989
20944
  /**
20990
20945
  * Edit a comment attachment
20991
20946
  */
20992
- declare const issueEditIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueEditIssueCommentAttachmentResponses, IssueEditIssueCommentAttachmentErrors, ThrowOnError, "fields">;
20947
+ declare const issueEditIssueCommentAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueCommentAttachmentData, ThrowOnError>) => RequestResult<IssueEditIssueCommentAttachmentResponses, IssueEditIssueCommentAttachmentErrors, ThrowOnError>;
20993
20948
  /**
20994
20949
  * Remove a reaction from a comment of an issue
20995
20950
  */
20996
- declare const issueDeleteCommentReaction: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteCommentReactionData, ThrowOnError>) => RequestResult<IssueDeleteCommentReactionResponses, IssueDeleteCommentReactionErrors, ThrowOnError, "fields">;
20951
+ declare const issueDeleteCommentReaction: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteCommentReactionData, ThrowOnError>) => RequestResult<IssueDeleteCommentReactionResponses, IssueDeleteCommentReactionErrors, ThrowOnError>;
20997
20952
  /**
20998
20953
  * Get a list of reactions from a comment of an issue
20999
20954
  */
21000
- declare const issueGetCommentReactions: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentReactionsData, ThrowOnError>) => RequestResult<IssueGetCommentReactionsResponses, IssueGetCommentReactionsErrors, ThrowOnError, "fields">;
20955
+ declare const issueGetCommentReactions: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentReactionsData, ThrowOnError>) => RequestResult<IssueGetCommentReactionsResponses, IssueGetCommentReactionsErrors, ThrowOnError>;
21001
20956
  /**
21002
20957
  * Add a reaction to a comment of an issue
21003
20958
  */
21004
- declare const issuePostCommentReaction: <ThrowOnError extends boolean = false>(options: Options<IssuePostCommentReactionData, ThrowOnError>) => RequestResult<IssuePostCommentReactionResponses, IssuePostCommentReactionErrors, ThrowOnError, "fields">;
20959
+ declare const issuePostCommentReaction: <ThrowOnError extends boolean = false>(options: Options<IssuePostCommentReactionData, ThrowOnError>) => RequestResult<IssuePostCommentReactionResponses, IssuePostCommentReactionErrors, ThrowOnError>;
21005
20960
  /**
21006
20961
  * List a repo's pinned issues
21007
20962
  */
21008
- declare const repoListPinnedIssues: <ThrowOnError extends boolean = false>(options: Options<RepoListPinnedIssuesData, ThrowOnError>) => RequestResult<RepoListPinnedIssuesResponses, RepoListPinnedIssuesErrors, ThrowOnError, "fields">;
20963
+ declare const repoListPinnedIssues: <ThrowOnError extends boolean = false>(options: Options<RepoListPinnedIssuesData, ThrowOnError>) => RequestResult<RepoListPinnedIssuesResponses, RepoListPinnedIssuesErrors, ThrowOnError>;
21009
20964
  /**
21010
20965
  * Delete an issue
21011
20966
  */
21012
- declare const issueDelete: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteData, ThrowOnError>) => RequestResult<IssueDeleteResponses, IssueDeleteErrors, ThrowOnError, "fields">;
20967
+ declare const issueDelete: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteData, ThrowOnError>) => RequestResult<IssueDeleteResponses, IssueDeleteErrors, ThrowOnError>;
21013
20968
  /**
21014
20969
  * Get an issue
21015
20970
  */
21016
- declare const issueGetIssue: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueData, ThrowOnError>) => RequestResult<IssueGetIssueResponses, IssueGetIssueErrors, ThrowOnError, "fields">;
20971
+ declare const issueGetIssue: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueData, ThrowOnError>) => RequestResult<IssueGetIssueResponses, IssueGetIssueErrors, ThrowOnError>;
21017
20972
  /**
21018
20973
  * Edit an issue. If using deadline only the date will be taken into account, and time of day ignored.
21019
20974
  */
21020
- declare const issueEditIssue: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueData, ThrowOnError>) => RequestResult<IssueEditIssueResponses, IssueEditIssueErrors, ThrowOnError, "fields">;
20975
+ declare const issueEditIssue: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueData, ThrowOnError>) => RequestResult<IssueEditIssueResponses, IssueEditIssueErrors, ThrowOnError>;
21021
20976
  /**
21022
20977
  * List issue's attachments
21023
20978
  */
21024
- declare const issueListIssueAttachments: <ThrowOnError extends boolean = false>(options: Options<IssueListIssueAttachmentsData, ThrowOnError>) => RequestResult<IssueListIssueAttachmentsResponses, IssueListIssueAttachmentsErrors, ThrowOnError, "fields">;
20979
+ declare const issueListIssueAttachments: <ThrowOnError extends boolean = false>(options: Options<IssueListIssueAttachmentsData, ThrowOnError>) => RequestResult<IssueListIssueAttachmentsResponses, IssueListIssueAttachmentsErrors, ThrowOnError>;
21025
20980
  /**
21026
20981
  * Create an issue attachment
21027
20982
  */
21028
- declare const issueCreateIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueAttachmentData, ThrowOnError>) => RequestResult<IssueCreateIssueAttachmentResponses, IssueCreateIssueAttachmentErrors, ThrowOnError, "fields">;
20983
+ declare const issueCreateIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueAttachmentData, ThrowOnError>) => RequestResult<IssueCreateIssueAttachmentResponses, IssueCreateIssueAttachmentErrors, ThrowOnError>;
21029
20984
  /**
21030
20985
  * Delete an issue attachment
21031
20986
  */
21032
- declare const issueDeleteIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteIssueAttachmentData, ThrowOnError>) => RequestResult<IssueDeleteIssueAttachmentResponses, IssueDeleteIssueAttachmentErrors, ThrowOnError, "fields">;
20987
+ declare const issueDeleteIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteIssueAttachmentData, ThrowOnError>) => RequestResult<IssueDeleteIssueAttachmentResponses, IssueDeleteIssueAttachmentErrors, ThrowOnError>;
21033
20988
  /**
21034
20989
  * Get an issue attachment
21035
20990
  */
21036
- declare const issueGetIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueAttachmentData, ThrowOnError>) => RequestResult<IssueGetIssueAttachmentResponses, IssueGetIssueAttachmentErrors, ThrowOnError, "fields">;
20991
+ declare const issueGetIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueAttachmentData, ThrowOnError>) => RequestResult<IssueGetIssueAttachmentResponses, IssueGetIssueAttachmentErrors, ThrowOnError>;
21037
20992
  /**
21038
20993
  * Edit an issue attachment
21039
20994
  */
21040
- declare const issueEditIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueAttachmentData, ThrowOnError>) => RequestResult<IssueEditIssueAttachmentResponses, IssueEditIssueAttachmentErrors, ThrowOnError, "fields">;
20995
+ declare const issueEditIssueAttachment: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueAttachmentData, ThrowOnError>) => RequestResult<IssueEditIssueAttachmentResponses, IssueEditIssueAttachmentErrors, ThrowOnError>;
21041
20996
  /**
21042
20997
  * Unblock the issue given in the body by the issue in path
21043
20998
  */
21044
- declare const issueRemoveIssueBlocking: <ThrowOnError extends boolean = false>(options: Options<IssueRemoveIssueBlockingData, ThrowOnError>) => RequestResult<IssueRemoveIssueBlockingResponses, IssueRemoveIssueBlockingErrors, ThrowOnError, "fields">;
20999
+ declare const issueRemoveIssueBlocking: <ThrowOnError extends boolean = false>(options: Options<IssueRemoveIssueBlockingData, ThrowOnError>) => RequestResult<IssueRemoveIssueBlockingResponses, IssueRemoveIssueBlockingErrors, ThrowOnError>;
21045
21000
  /**
21046
21001
  * List issues that are blocked by this issue
21047
21002
  */
21048
- declare const issueListBlocks: <ThrowOnError extends boolean = false>(options: Options<IssueListBlocksData, ThrowOnError>) => RequestResult<IssueListBlocksResponses, IssueListBlocksErrors, ThrowOnError, "fields">;
21003
+ declare const issueListBlocks: <ThrowOnError extends boolean = false>(options: Options<IssueListBlocksData, ThrowOnError>) => RequestResult<IssueListBlocksResponses, IssueListBlocksErrors, ThrowOnError>;
21049
21004
  /**
21050
21005
  * Block the issue given in the body by the issue in path
21051
21006
  */
21052
- declare const issueCreateIssueBlocking: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueBlockingData, ThrowOnError>) => RequestResult<IssueCreateIssueBlockingResponses, IssueCreateIssueBlockingErrors, ThrowOnError, "fields">;
21007
+ declare const issueCreateIssueBlocking: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueBlockingData, ThrowOnError>) => RequestResult<IssueCreateIssueBlockingResponses, IssueCreateIssueBlockingErrors, ThrowOnError>;
21053
21008
  /**
21054
21009
  * List all comments on an issue
21055
21010
  */
21056
- declare const issueGetComments: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentsData, ThrowOnError>) => RequestResult<IssueGetCommentsResponses, IssueGetCommentsErrors, ThrowOnError, "fields">;
21011
+ declare const issueGetComments: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentsData, ThrowOnError>) => RequestResult<IssueGetCommentsResponses, IssueGetCommentsErrors, ThrowOnError>;
21057
21012
  /**
21058
21013
  * Add a comment to an issue
21059
21014
  */
21060
- declare const issueCreateComment: <ThrowOnError extends boolean = false>(options: Options<IssueCreateCommentData, ThrowOnError>) => RequestResult<IssueCreateCommentResponses, IssueCreateCommentErrors, ThrowOnError, "fields">;
21015
+ declare const issueCreateComment: <ThrowOnError extends boolean = false>(options: Options<IssueCreateCommentData, ThrowOnError>) => RequestResult<IssueCreateCommentResponses, IssueCreateCommentErrors, ThrowOnError>;
21061
21016
  /**
21062
21017
  * Delete a comment
21063
21018
  *
21064
21019
  * @deprecated
21065
21020
  */
21066
- declare const issueDeleteCommentDeprecated: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteCommentDeprecatedData, ThrowOnError>) => RequestResult<IssueDeleteCommentDeprecatedResponses, IssueDeleteCommentDeprecatedErrors, ThrowOnError, "fields">;
21021
+ declare const issueDeleteCommentDeprecated: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteCommentDeprecatedData, ThrowOnError>) => RequestResult<IssueDeleteCommentDeprecatedResponses, IssueDeleteCommentDeprecatedErrors, ThrowOnError>;
21067
21022
  /**
21068
21023
  * Edit a comment
21069
21024
  *
21070
21025
  * @deprecated
21071
21026
  */
21072
- declare const issueEditCommentDeprecated: <ThrowOnError extends boolean = false>(options: Options<IssueEditCommentDeprecatedData, ThrowOnError>) => RequestResult<IssueEditCommentDeprecatedResponses, IssueEditCommentDeprecatedErrors, ThrowOnError, "fields">;
21027
+ declare const issueEditCommentDeprecated: <ThrowOnError extends boolean = false>(options: Options<IssueEditCommentDeprecatedData, ThrowOnError>) => RequestResult<IssueEditCommentDeprecatedResponses, IssueEditCommentDeprecatedErrors, ThrowOnError>;
21073
21028
  /**
21074
21029
  * Set an issue deadline. If set to null, the deadline is deleted. If using deadline only the date will be taken into account, and time of day ignored.
21075
21030
  */
21076
- declare const issueEditIssueDeadline: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueDeadlineData, ThrowOnError>) => RequestResult<IssueEditIssueDeadlineResponses, IssueEditIssueDeadlineErrors, ThrowOnError, "fields">;
21031
+ declare const issueEditIssueDeadline: <ThrowOnError extends boolean = false>(options: Options<IssueEditIssueDeadlineData, ThrowOnError>) => RequestResult<IssueEditIssueDeadlineResponses, IssueEditIssueDeadlineErrors, ThrowOnError>;
21077
21032
  /**
21078
21033
  * Remove an issue dependency
21079
21034
  */
21080
- declare const issueRemoveIssueDependencies: <ThrowOnError extends boolean = false>(options: Options<IssueRemoveIssueDependenciesData, ThrowOnError>) => RequestResult<IssueRemoveIssueDependenciesResponses, IssueRemoveIssueDependenciesErrors, ThrowOnError, "fields">;
21035
+ declare const issueRemoveIssueDependencies: <ThrowOnError extends boolean = false>(options: Options<IssueRemoveIssueDependenciesData, ThrowOnError>) => RequestResult<IssueRemoveIssueDependenciesResponses, IssueRemoveIssueDependenciesErrors, ThrowOnError>;
21081
21036
  /**
21082
21037
  * List an issue's dependencies, i.e all issues that block this issue.
21083
21038
  */
21084
- declare const issueListIssueDependencies: <ThrowOnError extends boolean = false>(options: Options<IssueListIssueDependenciesData, ThrowOnError>) => RequestResult<IssueListIssueDependenciesResponses, IssueListIssueDependenciesErrors, ThrowOnError, "fields">;
21039
+ declare const issueListIssueDependencies: <ThrowOnError extends boolean = false>(options: Options<IssueListIssueDependenciesData, ThrowOnError>) => RequestResult<IssueListIssueDependenciesResponses, IssueListIssueDependenciesErrors, ThrowOnError>;
21085
21040
  /**
21086
21041
  * Make the issue in the url depend on the issue in the form.
21087
21042
  */
21088
- declare const issueCreateIssueDependencies: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueDependenciesData, ThrowOnError>) => RequestResult<IssueCreateIssueDependenciesResponses, IssueCreateIssueDependenciesErrors, ThrowOnError, "fields">;
21043
+ declare const issueCreateIssueDependencies: <ThrowOnError extends boolean = false>(options: Options<IssueCreateIssueDependenciesData, ThrowOnError>) => RequestResult<IssueCreateIssueDependenciesResponses, IssueCreateIssueDependenciesErrors, ThrowOnError>;
21089
21044
  /**
21090
21045
  * Remove all labels from an issue
21091
21046
  */
21092
- declare const issueClearLabels: <ThrowOnError extends boolean = false>(options: Options<IssueClearLabelsData, ThrowOnError>) => RequestResult<IssueClearLabelsResponses, IssueClearLabelsErrors, ThrowOnError, "fields">;
21047
+ declare const issueClearLabels: <ThrowOnError extends boolean = false>(options: Options<IssueClearLabelsData, ThrowOnError>) => RequestResult<IssueClearLabelsResponses, IssueClearLabelsErrors, ThrowOnError>;
21093
21048
  /**
21094
21049
  * Get an issue's labels
21095
21050
  */
21096
- declare const issueGetLabels: <ThrowOnError extends boolean = false>(options: Options<IssueGetLabelsData, ThrowOnError>) => RequestResult<IssueGetLabelsResponses, IssueGetLabelsErrors, ThrowOnError, "fields">;
21051
+ declare const issueGetLabels: <ThrowOnError extends boolean = false>(options: Options<IssueGetLabelsData, ThrowOnError>) => RequestResult<IssueGetLabelsResponses, IssueGetLabelsErrors, ThrowOnError>;
21097
21052
  /**
21098
21053
  * Add a label to an issue
21099
21054
  */
21100
- declare const issueAddLabel: <ThrowOnError extends boolean = false>(options: Options<IssueAddLabelData, ThrowOnError>) => RequestResult<IssueAddLabelResponses, IssueAddLabelErrors, ThrowOnError, "fields">;
21055
+ declare const issueAddLabel: <ThrowOnError extends boolean = false>(options: Options<IssueAddLabelData, ThrowOnError>) => RequestResult<IssueAddLabelResponses, IssueAddLabelErrors, ThrowOnError>;
21101
21056
  /**
21102
21057
  * Replace an issue's labels
21103
21058
  */
21104
- declare const issueReplaceLabels: <ThrowOnError extends boolean = false>(options: Options<IssueReplaceLabelsData, ThrowOnError>) => RequestResult<IssueReplaceLabelsResponses, IssueReplaceLabelsErrors, ThrowOnError, "fields">;
21059
+ declare const issueReplaceLabels: <ThrowOnError extends boolean = false>(options: Options<IssueReplaceLabelsData, ThrowOnError>) => RequestResult<IssueReplaceLabelsResponses, IssueReplaceLabelsErrors, ThrowOnError>;
21105
21060
  /**
21106
21061
  * Remove a label from an issue
21107
21062
  */
21108
- declare const issueRemoveLabel: <ThrowOnError extends boolean = false>(options: Options<IssueRemoveLabelData, ThrowOnError>) => RequestResult<IssueRemoveLabelResponses, IssueRemoveLabelErrors, ThrowOnError, "fields">;
21063
+ declare const issueRemoveLabel: <ThrowOnError extends boolean = false>(options: Options<IssueRemoveLabelData, ThrowOnError>) => RequestResult<IssueRemoveLabelResponses, IssueRemoveLabelErrors, ThrowOnError>;
21109
21064
  /**
21110
21065
  * Unpin an Issue
21111
21066
  */
21112
- declare const unpinIssue: <ThrowOnError extends boolean = false>(options: Options<UnpinIssueData, ThrowOnError>) => RequestResult<UnpinIssueResponses, UnpinIssueErrors, ThrowOnError, "fields">;
21067
+ declare const unpinIssue: <ThrowOnError extends boolean = false>(options: Options<UnpinIssueData, ThrowOnError>) => RequestResult<UnpinIssueResponses, UnpinIssueErrors, ThrowOnError>;
21113
21068
  /**
21114
21069
  * Pin an Issue
21115
21070
  */
21116
- declare const pinIssue: <ThrowOnError extends boolean = false>(options: Options<PinIssueData, ThrowOnError>) => RequestResult<PinIssueResponses, PinIssueErrors, ThrowOnError, "fields">;
21071
+ declare const pinIssue: <ThrowOnError extends boolean = false>(options: Options<PinIssueData, ThrowOnError>) => RequestResult<PinIssueResponses, PinIssueErrors, ThrowOnError>;
21117
21072
  /**
21118
21073
  * Moves the Pin to the given Position
21119
21074
  */
21120
- declare const moveIssuePin: <ThrowOnError extends boolean = false>(options: Options<MoveIssuePinData, ThrowOnError>) => RequestResult<MoveIssuePinResponses, MoveIssuePinErrors, ThrowOnError, "fields">;
21075
+ declare const moveIssuePin: <ThrowOnError extends boolean = false>(options: Options<MoveIssuePinData, ThrowOnError>) => RequestResult<MoveIssuePinResponses, MoveIssuePinErrors, ThrowOnError>;
21121
21076
  /**
21122
21077
  * Remove a reaction from an issue
21123
21078
  */
21124
- declare const issueDeleteIssueReaction: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteIssueReactionData, ThrowOnError>) => RequestResult<IssueDeleteIssueReactionResponses, IssueDeleteIssueReactionErrors, ThrowOnError, "fields">;
21079
+ declare const issueDeleteIssueReaction: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteIssueReactionData, ThrowOnError>) => RequestResult<IssueDeleteIssueReactionResponses, IssueDeleteIssueReactionErrors, ThrowOnError>;
21125
21080
  /**
21126
21081
  * Get a list reactions of an issue
21127
21082
  */
21128
- declare const issueGetIssueReactions: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueReactionsData, ThrowOnError>) => RequestResult<IssueGetIssueReactionsResponses, IssueGetIssueReactionsErrors, ThrowOnError, "fields">;
21083
+ declare const issueGetIssueReactions: <ThrowOnError extends boolean = false>(options: Options<IssueGetIssueReactionsData, ThrowOnError>) => RequestResult<IssueGetIssueReactionsResponses, IssueGetIssueReactionsErrors, ThrowOnError>;
21129
21084
  /**
21130
21085
  * Add a reaction to an issue
21131
21086
  */
21132
- declare const issuePostIssueReaction: <ThrowOnError extends boolean = false>(options: Options<IssuePostIssueReactionData, ThrowOnError>) => RequestResult<IssuePostIssueReactionResponses, IssuePostIssueReactionErrors, ThrowOnError, "fields">;
21087
+ declare const issuePostIssueReaction: <ThrowOnError extends boolean = false>(options: Options<IssuePostIssueReactionData, ThrowOnError>) => RequestResult<IssuePostIssueReactionResponses, IssuePostIssueReactionErrors, ThrowOnError>;
21133
21088
  /**
21134
21089
  * Delete an issue's existing stopwatch.
21135
21090
  */
21136
- declare const issueDeleteStopWatch: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteStopWatchData, ThrowOnError>) => RequestResult<IssueDeleteStopWatchResponses, IssueDeleteStopWatchErrors, ThrowOnError, "fields">;
21091
+ declare const issueDeleteStopWatch: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteStopWatchData, ThrowOnError>) => RequestResult<IssueDeleteStopWatchResponses, IssueDeleteStopWatchErrors, ThrowOnError>;
21137
21092
  /**
21138
21093
  * Start stopwatch on an issue.
21139
21094
  */
21140
- declare const issueStartStopWatch: <ThrowOnError extends boolean = false>(options: Options<IssueStartStopWatchData, ThrowOnError>) => RequestResult<IssueStartStopWatchResponses, IssueStartStopWatchErrors, ThrowOnError, "fields">;
21095
+ declare const issueStartStopWatch: <ThrowOnError extends boolean = false>(options: Options<IssueStartStopWatchData, ThrowOnError>) => RequestResult<IssueStartStopWatchResponses, IssueStartStopWatchErrors, ThrowOnError>;
21141
21096
  /**
21142
21097
  * Stop an issue's existing stopwatch.
21143
21098
  */
21144
- declare const issueStopStopWatch: <ThrowOnError extends boolean = false>(options: Options<IssueStopStopWatchData, ThrowOnError>) => RequestResult<IssueStopStopWatchResponses, IssueStopStopWatchErrors, ThrowOnError, "fields">;
21099
+ declare const issueStopStopWatch: <ThrowOnError extends boolean = false>(options: Options<IssueStopStopWatchData, ThrowOnError>) => RequestResult<IssueStopStopWatchResponses, IssueStopStopWatchErrors, ThrowOnError>;
21145
21100
  /**
21146
21101
  * Get users who subscribed on an issue.
21147
21102
  */
21148
- declare const issueSubscriptions: <ThrowOnError extends boolean = false>(options: Options<IssueSubscriptionsData, ThrowOnError>) => RequestResult<IssueSubscriptionsResponses, IssueSubscriptionsErrors, ThrowOnError, "fields">;
21103
+ declare const issueSubscriptions: <ThrowOnError extends boolean = false>(options: Options<IssueSubscriptionsData, ThrowOnError>) => RequestResult<IssueSubscriptionsResponses, IssueSubscriptionsErrors, ThrowOnError>;
21149
21104
  /**
21150
21105
  * Check if user is subscribed to an issue
21151
21106
  */
21152
- declare const issueCheckSubscription: <ThrowOnError extends boolean = false>(options: Options<IssueCheckSubscriptionData, ThrowOnError>) => RequestResult<IssueCheckSubscriptionResponses, IssueCheckSubscriptionErrors, ThrowOnError, "fields">;
21107
+ declare const issueCheckSubscription: <ThrowOnError extends boolean = false>(options: Options<IssueCheckSubscriptionData, ThrowOnError>) => RequestResult<IssueCheckSubscriptionResponses, IssueCheckSubscriptionErrors, ThrowOnError>;
21153
21108
  /**
21154
21109
  * Unsubscribe user from issue
21155
21110
  */
21156
- declare const issueDeleteSubscription: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteSubscriptionData, ThrowOnError>) => RequestResult<IssueDeleteSubscriptionResponses, IssueDeleteSubscriptionErrors, ThrowOnError, "fields">;
21111
+ declare const issueDeleteSubscription: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteSubscriptionData, ThrowOnError>) => RequestResult<IssueDeleteSubscriptionResponses, IssueDeleteSubscriptionErrors, ThrowOnError>;
21157
21112
  /**
21158
21113
  * Subscribe user to issue
21159
21114
  */
21160
- declare const issueAddSubscription: <ThrowOnError extends boolean = false>(options: Options<IssueAddSubscriptionData, ThrowOnError>) => RequestResult<IssueAddSubscriptionResponses, IssueAddSubscriptionErrors, ThrowOnError, "fields">;
21115
+ declare const issueAddSubscription: <ThrowOnError extends boolean = false>(options: Options<IssueAddSubscriptionData, ThrowOnError>) => RequestResult<IssueAddSubscriptionResponses, IssueAddSubscriptionErrors, ThrowOnError>;
21161
21116
  /**
21162
21117
  * List all comments and events on an issue
21163
21118
  */
21164
- declare const issueGetCommentsAndTimeline: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentsAndTimelineData, ThrowOnError>) => RequestResult<IssueGetCommentsAndTimelineResponses, IssueGetCommentsAndTimelineErrors, ThrowOnError, "fields">;
21119
+ declare const issueGetCommentsAndTimeline: <ThrowOnError extends boolean = false>(options: Options<IssueGetCommentsAndTimelineData, ThrowOnError>) => RequestResult<IssueGetCommentsAndTimelineResponses, IssueGetCommentsAndTimelineErrors, ThrowOnError>;
21165
21120
  /**
21166
21121
  * Reset a tracked time of an issue
21167
21122
  */
21168
- declare const issueResetTime: <ThrowOnError extends boolean = false>(options: Options<IssueResetTimeData, ThrowOnError>) => RequestResult<IssueResetTimeResponses, IssueResetTimeErrors, ThrowOnError, "fields">;
21123
+ declare const issueResetTime: <ThrowOnError extends boolean = false>(options: Options<IssueResetTimeData, ThrowOnError>) => RequestResult<IssueResetTimeResponses, IssueResetTimeErrors, ThrowOnError>;
21169
21124
  /**
21170
21125
  * List an issue's tracked times
21171
21126
  */
21172
- declare const issueTrackedTimes: <ThrowOnError extends boolean = false>(options: Options<IssueTrackedTimesData, ThrowOnError>) => RequestResult<IssueTrackedTimesResponses, IssueTrackedTimesErrors, ThrowOnError, "fields">;
21127
+ declare const issueTrackedTimes: <ThrowOnError extends boolean = false>(options: Options<IssueTrackedTimesData, ThrowOnError>) => RequestResult<IssueTrackedTimesResponses, IssueTrackedTimesErrors, ThrowOnError>;
21173
21128
  /**
21174
21129
  * Add tracked time to a issue
21175
21130
  */
21176
- declare const issueAddTime: <ThrowOnError extends boolean = false>(options: Options<IssueAddTimeData, ThrowOnError>) => RequestResult<IssueAddTimeResponses, IssueAddTimeErrors, ThrowOnError, "fields">;
21131
+ declare const issueAddTime: <ThrowOnError extends boolean = false>(options: Options<IssueAddTimeData, ThrowOnError>) => RequestResult<IssueAddTimeResponses, IssueAddTimeErrors, ThrowOnError>;
21177
21132
  /**
21178
21133
  * Delete specific tracked time
21179
21134
  */
21180
- declare const issueDeleteTime: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteTimeData, ThrowOnError>) => RequestResult<IssueDeleteTimeResponses, IssueDeleteTimeErrors, ThrowOnError, "fields">;
21135
+ declare const issueDeleteTime: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteTimeData, ThrowOnError>) => RequestResult<IssueDeleteTimeResponses, IssueDeleteTimeErrors, ThrowOnError>;
21181
21136
  /**
21182
21137
  * List a repository's keys
21183
21138
  */
21184
- declare const repoListKeys: <ThrowOnError extends boolean = false>(options: Options<RepoListKeysData, ThrowOnError>) => RequestResult<RepoListKeysResponses, RepoListKeysErrors, ThrowOnError, "fields">;
21139
+ declare const repoListKeys: <ThrowOnError extends boolean = false>(options: Options<RepoListKeysData, ThrowOnError>) => RequestResult<RepoListKeysResponses, RepoListKeysErrors, ThrowOnError>;
21185
21140
  /**
21186
21141
  * Add a key to a repository
21187
21142
  */
21188
- declare const repoCreateKey: <ThrowOnError extends boolean = false>(options: Options<RepoCreateKeyData, ThrowOnError>) => RequestResult<RepoCreateKeyResponses, RepoCreateKeyErrors, ThrowOnError, "fields">;
21143
+ declare const repoCreateKey: <ThrowOnError extends boolean = false>(options: Options<RepoCreateKeyData, ThrowOnError>) => RequestResult<RepoCreateKeyResponses, RepoCreateKeyErrors, ThrowOnError>;
21189
21144
  /**
21190
21145
  * Delete a key from a repository
21191
21146
  */
21192
- declare const repoDeleteKey: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteKeyData, ThrowOnError>) => RequestResult<RepoDeleteKeyResponses, RepoDeleteKeyErrors, ThrowOnError, "fields">;
21147
+ declare const repoDeleteKey: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteKeyData, ThrowOnError>) => RequestResult<RepoDeleteKeyResponses, RepoDeleteKeyErrors, ThrowOnError>;
21193
21148
  /**
21194
21149
  * Get a repository's key by id
21195
21150
  */
21196
- declare const repoGetKey: <ThrowOnError extends boolean = false>(options: Options<RepoGetKeyData, ThrowOnError>) => RequestResult<RepoGetKeyResponses, RepoGetKeyErrors, ThrowOnError, "fields">;
21151
+ declare const repoGetKey: <ThrowOnError extends boolean = false>(options: Options<RepoGetKeyData, ThrowOnError>) => RequestResult<RepoGetKeyResponses, RepoGetKeyErrors, ThrowOnError>;
21197
21152
  /**
21198
21153
  * Get all of a repository's labels
21199
21154
  */
21200
- declare const issueListLabels: <ThrowOnError extends boolean = false>(options: Options<IssueListLabelsData, ThrowOnError>) => RequestResult<IssueListLabelsResponses, IssueListLabelsErrors, ThrowOnError, "fields">;
21155
+ declare const issueListLabels: <ThrowOnError extends boolean = false>(options: Options<IssueListLabelsData, ThrowOnError>) => RequestResult<IssueListLabelsResponses, IssueListLabelsErrors, ThrowOnError>;
21201
21156
  /**
21202
21157
  * Create a label
21203
21158
  */
21204
- declare const issueCreateLabel: <ThrowOnError extends boolean = false>(options: Options<IssueCreateLabelData, ThrowOnError>) => RequestResult<IssueCreateLabelResponses, IssueCreateLabelErrors, ThrowOnError, "fields">;
21159
+ declare const issueCreateLabel: <ThrowOnError extends boolean = false>(options: Options<IssueCreateLabelData, ThrowOnError>) => RequestResult<IssueCreateLabelResponses, IssueCreateLabelErrors, ThrowOnError>;
21205
21160
  /**
21206
21161
  * Delete a label
21207
21162
  */
21208
- declare const issueDeleteLabel: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteLabelData, ThrowOnError>) => RequestResult<IssueDeleteLabelResponses, IssueDeleteLabelErrors, ThrowOnError, "fields">;
21163
+ declare const issueDeleteLabel: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteLabelData, ThrowOnError>) => RequestResult<IssueDeleteLabelResponses, IssueDeleteLabelErrors, ThrowOnError>;
21209
21164
  /**
21210
21165
  * Get a single label
21211
21166
  */
21212
- declare const issueGetLabel: <ThrowOnError extends boolean = false>(options: Options<IssueGetLabelData, ThrowOnError>) => RequestResult<IssueGetLabelResponses, IssueGetLabelErrors, ThrowOnError, "fields">;
21167
+ declare const issueGetLabel: <ThrowOnError extends boolean = false>(options: Options<IssueGetLabelData, ThrowOnError>) => RequestResult<IssueGetLabelResponses, IssueGetLabelErrors, ThrowOnError>;
21213
21168
  /**
21214
21169
  * Update a label
21215
21170
  */
21216
- declare const issueEditLabel: <ThrowOnError extends boolean = false>(options: Options<IssueEditLabelData, ThrowOnError>) => RequestResult<IssueEditLabelResponses, IssueEditLabelErrors, ThrowOnError, "fields">;
21171
+ declare const issueEditLabel: <ThrowOnError extends boolean = false>(options: Options<IssueEditLabelData, ThrowOnError>) => RequestResult<IssueEditLabelResponses, IssueEditLabelErrors, ThrowOnError>;
21217
21172
  /**
21218
21173
  * Get languages and number of bytes of code written
21219
21174
  */
21220
- declare const repoGetLanguages: <ThrowOnError extends boolean = false>(options: Options<RepoGetLanguagesData, ThrowOnError>) => RequestResult<RepoGetLanguagesResponses, RepoGetLanguagesErrors, ThrowOnError, "fields">;
21175
+ declare const repoGetLanguages: <ThrowOnError extends boolean = false>(options: Options<RepoGetLanguagesData, ThrowOnError>) => RequestResult<RepoGetLanguagesResponses, RepoGetLanguagesErrors, ThrowOnError>;
21221
21176
  /**
21222
21177
  * Get a file or it's LFS object from a repository
21223
21178
  */
21224
- declare const repoGetRawFileOrLfs: <ThrowOnError extends boolean = false>(options: Options<RepoGetRawFileOrLfsData, ThrowOnError>) => RequestResult<RepoGetRawFileOrLfsResponses, RepoGetRawFileOrLfsErrors, ThrowOnError, "fields">;
21179
+ declare const repoGetRawFileOrLfs: <ThrowOnError extends boolean = false>(options: Options<RepoGetRawFileOrLfsData, ThrowOnError>) => RequestResult<RepoGetRawFileOrLfsResponses, RepoGetRawFileOrLfsErrors, ThrowOnError>;
21225
21180
  /**
21226
21181
  * Get all of a repository's opened milestones
21227
21182
  */
21228
- declare const issueGetMilestonesList: <ThrowOnError extends boolean = false>(options: Options<IssueGetMilestonesListData, ThrowOnError>) => RequestResult<IssueGetMilestonesListResponses, IssueGetMilestonesListErrors, ThrowOnError, "fields">;
21183
+ declare const issueGetMilestonesList: <ThrowOnError extends boolean = false>(options: Options<IssueGetMilestonesListData, ThrowOnError>) => RequestResult<IssueGetMilestonesListResponses, IssueGetMilestonesListErrors, ThrowOnError>;
21229
21184
  /**
21230
21185
  * Create a milestone
21231
21186
  */
21232
- declare const issueCreateMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueCreateMilestoneData, ThrowOnError>) => RequestResult<IssueCreateMilestoneResponses, IssueCreateMilestoneErrors, ThrowOnError, "fields">;
21187
+ declare const issueCreateMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueCreateMilestoneData, ThrowOnError>) => RequestResult<IssueCreateMilestoneResponses, IssueCreateMilestoneErrors, ThrowOnError>;
21233
21188
  /**
21234
21189
  * Delete a milestone
21235
21190
  */
21236
- declare const issueDeleteMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteMilestoneData, ThrowOnError>) => RequestResult<IssueDeleteMilestoneResponses, IssueDeleteMilestoneErrors, ThrowOnError, "fields">;
21191
+ declare const issueDeleteMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueDeleteMilestoneData, ThrowOnError>) => RequestResult<IssueDeleteMilestoneResponses, IssueDeleteMilestoneErrors, ThrowOnError>;
21237
21192
  /**
21238
21193
  * Get a milestone
21239
21194
  */
21240
- declare const issueGetMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueGetMilestoneData, ThrowOnError>) => RequestResult<IssueGetMilestoneResponses, IssueGetMilestoneErrors, ThrowOnError, "fields">;
21195
+ declare const issueGetMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueGetMilestoneData, ThrowOnError>) => RequestResult<IssueGetMilestoneResponses, IssueGetMilestoneErrors, ThrowOnError>;
21241
21196
  /**
21242
21197
  * Update a milestone
21243
21198
  */
21244
- declare const issueEditMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueEditMilestoneData, ThrowOnError>) => RequestResult<IssueEditMilestoneResponses, IssueEditMilestoneErrors, ThrowOnError, "fields">;
21199
+ declare const issueEditMilestone: <ThrowOnError extends boolean = false>(options: Options<IssueEditMilestoneData, ThrowOnError>) => RequestResult<IssueEditMilestoneResponses, IssueEditMilestoneErrors, ThrowOnError>;
21245
21200
  /**
21246
21201
  * Sync a mirrored repository
21247
21202
  */
21248
- declare const repoMirrorSync: <ThrowOnError extends boolean = false>(options: Options<RepoMirrorSyncData, ThrowOnError>) => RequestResult<RepoMirrorSyncResponses, RepoMirrorSyncErrors, ThrowOnError, "fields">;
21203
+ declare const repoMirrorSync: <ThrowOnError extends boolean = false>(options: Options<RepoMirrorSyncData, ThrowOnError>) => RequestResult<RepoMirrorSyncResponses, RepoMirrorSyncErrors, ThrowOnError>;
21249
21204
  /**
21250
21205
  * Returns if new Issue Pins are allowed
21251
21206
  */
21252
- declare const repoNewPinAllowed: <ThrowOnError extends boolean = false>(options: Options<RepoNewPinAllowedData, ThrowOnError>) => RequestResult<RepoNewPinAllowedResponses, RepoNewPinAllowedErrors, ThrowOnError, "fields">;
21207
+ declare const repoNewPinAllowed: <ThrowOnError extends boolean = false>(options: Options<RepoNewPinAllowedData, ThrowOnError>) => RequestResult<RepoNewPinAllowedResponses, RepoNewPinAllowedErrors, ThrowOnError>;
21253
21208
  /**
21254
21209
  * List users's notification threads on a specific repo
21255
21210
  */
21256
- declare const notifyGetRepoList: <ThrowOnError extends boolean = false>(options: Options<NotifyGetRepoListData, ThrowOnError>) => RequestResult<NotifyGetRepoListResponses, unknown, ThrowOnError, "fields">;
21211
+ declare const notifyGetRepoList: <ThrowOnError extends boolean = false>(options: Options<NotifyGetRepoListData, ThrowOnError>) => RequestResult<NotifyGetRepoListResponses, unknown, ThrowOnError>;
21257
21212
  /**
21258
21213
  * Mark notification threads as read, pinned or unread on a specific repo
21259
21214
  */
21260
- declare const notifyReadRepoList: <ThrowOnError extends boolean = false>(options: Options<NotifyReadRepoListData, ThrowOnError>) => RequestResult<NotifyReadRepoListResponses, unknown, ThrowOnError, "fields">;
21215
+ declare const notifyReadRepoList: <ThrowOnError extends boolean = false>(options: Options<NotifyReadRepoListData, ThrowOnError>) => RequestResult<NotifyReadRepoListResponses, unknown, ThrowOnError>;
21261
21216
  /**
21262
21217
  * List a repo's pull requests. If a pull request is selected but fails to be retrieved for any reason, it will be a null value in the list of results.
21263
21218
  */
21264
- declare const repoListPullRequests: <ThrowOnError extends boolean = false>(options: Options<RepoListPullRequestsData, ThrowOnError>) => RequestResult<RepoListPullRequestsResponses, RepoListPullRequestsErrors, ThrowOnError, "fields">;
21219
+ declare const repoListPullRequests: <ThrowOnError extends boolean = false>(options: Options<RepoListPullRequestsData, ThrowOnError>) => RequestResult<RepoListPullRequestsResponses, RepoListPullRequestsErrors, ThrowOnError>;
21265
21220
  /**
21266
21221
  * Create a pull request
21267
21222
  */
21268
- declare const repoCreatePullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullRequestData, ThrowOnError>) => RequestResult<RepoCreatePullRequestResponses, RepoCreatePullRequestErrors, ThrowOnError, "fields">;
21223
+ declare const repoCreatePullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullRequestData, ThrowOnError>) => RequestResult<RepoCreatePullRequestResponses, RepoCreatePullRequestErrors, ThrowOnError>;
21269
21224
  /**
21270
21225
  * List a repo's pinned pull requests
21271
21226
  */
21272
- declare const repoListPinnedPullRequests: <ThrowOnError extends boolean = false>(options: Options<RepoListPinnedPullRequestsData, ThrowOnError>) => RequestResult<RepoListPinnedPullRequestsResponses, RepoListPinnedPullRequestsErrors, ThrowOnError, "fields">;
21227
+ declare const repoListPinnedPullRequests: <ThrowOnError extends boolean = false>(options: Options<RepoListPinnedPullRequestsData, ThrowOnError>) => RequestResult<RepoListPinnedPullRequestsResponses, RepoListPinnedPullRequestsErrors, ThrowOnError>;
21273
21228
  /**
21274
21229
  * Get a pull request by base and head
21275
21230
  */
21276
- declare const repoGetPullRequestByBaseHead: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestByBaseHeadData, ThrowOnError>) => RequestResult<RepoGetPullRequestByBaseHeadResponses, RepoGetPullRequestByBaseHeadErrors, ThrowOnError, "fields">;
21231
+ declare const repoGetPullRequestByBaseHead: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestByBaseHeadData, ThrowOnError>) => RequestResult<RepoGetPullRequestByBaseHeadResponses, RepoGetPullRequestByBaseHeadErrors, ThrowOnError>;
21277
21232
  /**
21278
21233
  * Get a pull request
21279
21234
  */
21280
- declare const repoGetPullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestData, ThrowOnError>) => RequestResult<RepoGetPullRequestResponses, RepoGetPullRequestErrors, ThrowOnError, "fields">;
21235
+ declare const repoGetPullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestData, ThrowOnError>) => RequestResult<RepoGetPullRequestResponses, RepoGetPullRequestErrors, ThrowOnError>;
21281
21236
  /**
21282
21237
  * Update a pull request. If using deadline only the date will be taken into account, and time of day ignored.
21283
21238
  */
21284
- declare const repoEditPullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoEditPullRequestData, ThrowOnError>) => RequestResult<RepoEditPullRequestResponses, RepoEditPullRequestErrors, ThrowOnError, "fields">;
21239
+ declare const repoEditPullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoEditPullRequestData, ThrowOnError>) => RequestResult<RepoEditPullRequestResponses, RepoEditPullRequestErrors, ThrowOnError>;
21285
21240
  /**
21286
21241
  * Get a pull request diff or patch
21287
21242
  */
21288
- declare const repoDownloadPullDiffOrPatch: <ThrowOnError extends boolean = false>(options: Options<RepoDownloadPullDiffOrPatchData, ThrowOnError>) => RequestResult<RepoDownloadPullDiffOrPatchResponses, RepoDownloadPullDiffOrPatchErrors, ThrowOnError, "fields">;
21243
+ declare const repoDownloadPullDiffOrPatch: <ThrowOnError extends boolean = false>(options: Options<RepoDownloadPullDiffOrPatchData, ThrowOnError>) => RequestResult<RepoDownloadPullDiffOrPatchResponses, RepoDownloadPullDiffOrPatchErrors, ThrowOnError>;
21289
21244
  /**
21290
21245
  * Get commits for a pull request
21291
21246
  */
21292
- declare const repoGetPullRequestCommits: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestCommitsData, ThrowOnError>) => RequestResult<RepoGetPullRequestCommitsResponses, RepoGetPullRequestCommitsErrors, ThrowOnError, "fields">;
21247
+ declare const repoGetPullRequestCommits: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestCommitsData, ThrowOnError>) => RequestResult<RepoGetPullRequestCommitsResponses, RepoGetPullRequestCommitsErrors, ThrowOnError>;
21293
21248
  /**
21294
21249
  * Get changed files for a pull request
21295
21250
  */
21296
- declare const repoGetPullRequestFiles: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestFilesData, ThrowOnError>) => RequestResult<RepoGetPullRequestFilesResponses, RepoGetPullRequestFilesErrors, ThrowOnError, "fields">;
21251
+ declare const repoGetPullRequestFiles: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullRequestFilesData, ThrowOnError>) => RequestResult<RepoGetPullRequestFilesResponses, RepoGetPullRequestFilesErrors, ThrowOnError>;
21297
21252
  /**
21298
21253
  * Cancel the scheduled auto merge for the given pull request
21299
21254
  */
21300
- declare const repoCancelScheduledAutoMerge: <ThrowOnError extends boolean = false>(options: Options<RepoCancelScheduledAutoMergeData, ThrowOnError>) => RequestResult<RepoCancelScheduledAutoMergeResponses, RepoCancelScheduledAutoMergeErrors, ThrowOnError, "fields">;
21255
+ declare const repoCancelScheduledAutoMerge: <ThrowOnError extends boolean = false>(options: Options<RepoCancelScheduledAutoMergeData, ThrowOnError>) => RequestResult<RepoCancelScheduledAutoMergeResponses, RepoCancelScheduledAutoMergeErrors, ThrowOnError>;
21301
21256
  /**
21302
21257
  * Check if a pull request has been merged
21303
21258
  */
21304
- declare const repoPullRequestIsMerged: <ThrowOnError extends boolean = false>(options: Options<RepoPullRequestIsMergedData, ThrowOnError>) => RequestResult<RepoPullRequestIsMergedResponses, RepoPullRequestIsMergedErrors, ThrowOnError, "fields">;
21259
+ declare const repoPullRequestIsMerged: <ThrowOnError extends boolean = false>(options: Options<RepoPullRequestIsMergedData, ThrowOnError>) => RequestResult<RepoPullRequestIsMergedResponses, RepoPullRequestIsMergedErrors, ThrowOnError>;
21305
21260
  /**
21306
21261
  * Merge a pull request
21307
21262
  */
21308
- declare const repoMergePullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoMergePullRequestData, ThrowOnError>) => RequestResult<RepoMergePullRequestResponses, RepoMergePullRequestErrors, ThrowOnError, "fields">;
21263
+ declare const repoMergePullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoMergePullRequestData, ThrowOnError>) => RequestResult<RepoMergePullRequestResponses, RepoMergePullRequestErrors, ThrowOnError>;
21309
21264
  /**
21310
21265
  * Cancel review requests for a pull request
21311
21266
  */
21312
- declare const repoDeletePullReviewRequests: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePullReviewRequestsData, ThrowOnError>) => RequestResult<RepoDeletePullReviewRequestsResponses, RepoDeletePullReviewRequestsErrors, ThrowOnError, "fields">;
21267
+ declare const repoDeletePullReviewRequests: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePullReviewRequestsData, ThrowOnError>) => RequestResult<RepoDeletePullReviewRequestsResponses, RepoDeletePullReviewRequestsErrors, ThrowOnError>;
21313
21268
  /**
21314
21269
  * Create review requests for a pull request
21315
21270
  */
21316
- declare const repoCreatePullReviewRequests: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullReviewRequestsData, ThrowOnError>) => RequestResult<RepoCreatePullReviewRequestsResponses, RepoCreatePullReviewRequestsErrors, ThrowOnError, "fields">;
21271
+ declare const repoCreatePullReviewRequests: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullReviewRequestsData, ThrowOnError>) => RequestResult<RepoCreatePullReviewRequestsResponses, RepoCreatePullReviewRequestsErrors, ThrowOnError>;
21317
21272
  /**
21318
21273
  * List all reviews for a pull request
21319
21274
  */
21320
- declare const repoListPullReviews: <ThrowOnError extends boolean = false>(options: Options<RepoListPullReviewsData, ThrowOnError>) => RequestResult<RepoListPullReviewsResponses, RepoListPullReviewsErrors, ThrowOnError, "fields">;
21275
+ declare const repoListPullReviews: <ThrowOnError extends boolean = false>(options: Options<RepoListPullReviewsData, ThrowOnError>) => RequestResult<RepoListPullReviewsResponses, RepoListPullReviewsErrors, ThrowOnError>;
21321
21276
  /**
21322
21277
  * Create a review to an pull request
21323
21278
  */
21324
- declare const repoCreatePullReview: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullReviewData, ThrowOnError>) => RequestResult<RepoCreatePullReviewResponses, RepoCreatePullReviewErrors, ThrowOnError, "fields">;
21279
+ declare const repoCreatePullReview: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullReviewData, ThrowOnError>) => RequestResult<RepoCreatePullReviewResponses, RepoCreatePullReviewErrors, ThrowOnError>;
21325
21280
  /**
21326
21281
  * Delete a specific review from a pull request
21327
21282
  */
21328
- declare const repoDeletePullReview: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePullReviewData, ThrowOnError>) => RequestResult<RepoDeletePullReviewResponses, RepoDeletePullReviewErrors, ThrowOnError, "fields">;
21283
+ declare const repoDeletePullReview: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePullReviewData, ThrowOnError>) => RequestResult<RepoDeletePullReviewResponses, RepoDeletePullReviewErrors, ThrowOnError>;
21329
21284
  /**
21330
21285
  * Get a specific review for a pull request
21331
21286
  */
21332
- declare const repoGetPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullReviewData, ThrowOnError>) => RequestResult<RepoGetPullReviewResponses, RepoGetPullReviewErrors, ThrowOnError, "fields">;
21287
+ declare const repoGetPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullReviewData, ThrowOnError>) => RequestResult<RepoGetPullReviewResponses, RepoGetPullReviewErrors, ThrowOnError>;
21333
21288
  /**
21334
21289
  * Submit a pending review to an pull request
21335
21290
  */
21336
- declare const repoSubmitPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoSubmitPullReviewData, ThrowOnError>) => RequestResult<RepoSubmitPullReviewResponses, RepoSubmitPullReviewErrors, ThrowOnError, "fields">;
21291
+ declare const repoSubmitPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoSubmitPullReviewData, ThrowOnError>) => RequestResult<RepoSubmitPullReviewResponses, RepoSubmitPullReviewErrors, ThrowOnError>;
21337
21292
  /**
21338
21293
  * Get a specific review for a pull request
21339
21294
  */
21340
- declare const repoGetPullReviewComments: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullReviewCommentsData, ThrowOnError>) => RequestResult<RepoGetPullReviewCommentsResponses, RepoGetPullReviewCommentsErrors, ThrowOnError, "fields">;
21295
+ declare const repoGetPullReviewComments: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullReviewCommentsData, ThrowOnError>) => RequestResult<RepoGetPullReviewCommentsResponses, RepoGetPullReviewCommentsErrors, ThrowOnError>;
21341
21296
  /**
21342
21297
  * Add a new comment to a pull request review
21343
21298
  */
21344
- declare const repoCreatePullReviewComment: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullReviewCommentData, ThrowOnError>) => RequestResult<RepoCreatePullReviewCommentResponses, RepoCreatePullReviewCommentErrors, ThrowOnError, "fields">;
21299
+ declare const repoCreatePullReviewComment: <ThrowOnError extends boolean = false>(options: Options<RepoCreatePullReviewCommentData, ThrowOnError>) => RequestResult<RepoCreatePullReviewCommentResponses, RepoCreatePullReviewCommentErrors, ThrowOnError>;
21345
21300
  /**
21346
21301
  * Delete a pull review comment
21347
21302
  */
21348
- declare const repoDeletePullReviewComment: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePullReviewCommentData, ThrowOnError>) => RequestResult<RepoDeletePullReviewCommentResponses, RepoDeletePullReviewCommentErrors, ThrowOnError, "fields">;
21303
+ declare const repoDeletePullReviewComment: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePullReviewCommentData, ThrowOnError>) => RequestResult<RepoDeletePullReviewCommentResponses, RepoDeletePullReviewCommentErrors, ThrowOnError>;
21349
21304
  /**
21350
21305
  * Get a pull review comment
21351
21306
  */
21352
- declare const repoGetPullReviewComment: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullReviewCommentData, ThrowOnError>) => RequestResult<RepoGetPullReviewCommentResponses, RepoGetPullReviewCommentErrors, ThrowOnError, "fields">;
21307
+ declare const repoGetPullReviewComment: <ThrowOnError extends boolean = false>(options: Options<RepoGetPullReviewCommentData, ThrowOnError>) => RequestResult<RepoGetPullReviewCommentResponses, RepoGetPullReviewCommentErrors, ThrowOnError>;
21353
21308
  /**
21354
21309
  * Dismiss a review for a pull request
21355
21310
  */
21356
- declare const repoDismissPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoDismissPullReviewData, ThrowOnError>) => RequestResult<RepoDismissPullReviewResponses, RepoDismissPullReviewErrors, ThrowOnError, "fields">;
21311
+ declare const repoDismissPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoDismissPullReviewData, ThrowOnError>) => RequestResult<RepoDismissPullReviewResponses, RepoDismissPullReviewErrors, ThrowOnError>;
21357
21312
  /**
21358
21313
  * Cancel to dismiss a review for a pull request
21359
21314
  */
21360
- declare const repoUnDismissPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoUnDismissPullReviewData, ThrowOnError>) => RequestResult<RepoUnDismissPullReviewResponses, RepoUnDismissPullReviewErrors, ThrowOnError, "fields">;
21315
+ declare const repoUnDismissPullReview: <ThrowOnError extends boolean = false>(options: Options<RepoUnDismissPullReviewData, ThrowOnError>) => RequestResult<RepoUnDismissPullReviewResponses, RepoUnDismissPullReviewErrors, ThrowOnError>;
21361
21316
  /**
21362
21317
  * Merge PR's baseBranch into headBranch
21363
21318
  */
21364
- declare const repoUpdatePullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoUpdatePullRequestData, ThrowOnError>) => RequestResult<RepoUpdatePullRequestResponses, RepoUpdatePullRequestErrors, ThrowOnError, "fields">;
21319
+ declare const repoUpdatePullRequest: <ThrowOnError extends boolean = false>(options: Options<RepoUpdatePullRequestData, ThrowOnError>) => RequestResult<RepoUpdatePullRequestResponses, RepoUpdatePullRequestErrors, ThrowOnError>;
21365
21320
  /**
21366
21321
  * Get all push mirrors of the repository
21367
21322
  */
21368
- declare const repoListPushMirrors: <ThrowOnError extends boolean = false>(options: Options<RepoListPushMirrorsData, ThrowOnError>) => RequestResult<RepoListPushMirrorsResponses, RepoListPushMirrorsErrors, ThrowOnError, "fields">;
21323
+ declare const repoListPushMirrors: <ThrowOnError extends boolean = false>(options: Options<RepoListPushMirrorsData, ThrowOnError>) => RequestResult<RepoListPushMirrorsResponses, RepoListPushMirrorsErrors, ThrowOnError>;
21369
21324
  /**
21370
21325
  * Set up a new push mirror in a repository
21371
21326
  */
21372
- declare const repoAddPushMirror: <ThrowOnError extends boolean = false>(options: Options<RepoAddPushMirrorData, ThrowOnError>) => RequestResult<RepoAddPushMirrorResponses, RepoAddPushMirrorErrors, ThrowOnError, "fields">;
21327
+ declare const repoAddPushMirror: <ThrowOnError extends boolean = false>(options: Options<RepoAddPushMirrorData, ThrowOnError>) => RequestResult<RepoAddPushMirrorResponses, RepoAddPushMirrorErrors, ThrowOnError>;
21373
21328
  /**
21374
21329
  * Sync all push mirrored repository
21375
21330
  */
21376
- declare const repoPushMirrorSync: <ThrowOnError extends boolean = false>(options: Options<RepoPushMirrorSyncData, ThrowOnError>) => RequestResult<RepoPushMirrorSyncResponses, RepoPushMirrorSyncErrors, ThrowOnError, "fields">;
21331
+ declare const repoPushMirrorSync: <ThrowOnError extends boolean = false>(options: Options<RepoPushMirrorSyncData, ThrowOnError>) => RequestResult<RepoPushMirrorSyncResponses, RepoPushMirrorSyncErrors, ThrowOnError>;
21377
21332
  /**
21378
21333
  * Remove a push mirror from a repository by remoteName
21379
21334
  */
21380
- declare const repoDeletePushMirror: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePushMirrorData, ThrowOnError>) => RequestResult<RepoDeletePushMirrorResponses, RepoDeletePushMirrorErrors, ThrowOnError, "fields">;
21335
+ declare const repoDeletePushMirror: <ThrowOnError extends boolean = false>(options: Options<RepoDeletePushMirrorData, ThrowOnError>) => RequestResult<RepoDeletePushMirrorResponses, RepoDeletePushMirrorErrors, ThrowOnError>;
21381
21336
  /**
21382
21337
  * Get push mirror of the repository by remoteName
21383
21338
  */
21384
- declare const repoGetPushMirrorByRemoteName: <ThrowOnError extends boolean = false>(options: Options<RepoGetPushMirrorByRemoteNameData, ThrowOnError>) => RequestResult<RepoGetPushMirrorByRemoteNameResponses, RepoGetPushMirrorByRemoteNameErrors, ThrowOnError, "fields">;
21339
+ declare const repoGetPushMirrorByRemoteName: <ThrowOnError extends boolean = false>(options: Options<RepoGetPushMirrorByRemoteNameData, ThrowOnError>) => RequestResult<RepoGetPushMirrorByRemoteNameResponses, RepoGetPushMirrorByRemoteNameErrors, ThrowOnError>;
21385
21340
  /**
21386
21341
  * Get a file from a repository
21387
21342
  */
21388
- declare const repoGetRawFile: <ThrowOnError extends boolean = false>(options: Options<RepoGetRawFileData, ThrowOnError>) => RequestResult<RepoGetRawFileResponses, RepoGetRawFileErrors, ThrowOnError, "fields">;
21343
+ declare const repoGetRawFile: <ThrowOnError extends boolean = false>(options: Options<RepoGetRawFileData, ThrowOnError>) => RequestResult<RepoGetRawFileResponses, RepoGetRawFileErrors, ThrowOnError>;
21389
21344
  /**
21390
21345
  * List a repo's releases
21391
21346
  */
21392
- declare const repoListReleases: <ThrowOnError extends boolean = false>(options: Options<RepoListReleasesData, ThrowOnError>) => RequestResult<RepoListReleasesResponses, RepoListReleasesErrors, ThrowOnError, "fields">;
21347
+ declare const repoListReleases: <ThrowOnError extends boolean = false>(options: Options<RepoListReleasesData, ThrowOnError>) => RequestResult<RepoListReleasesResponses, RepoListReleasesErrors, ThrowOnError>;
21393
21348
  /**
21394
21349
  * Create a release
21395
21350
  */
21396
- declare const repoCreateRelease: <ThrowOnError extends boolean = false>(options: Options<RepoCreateReleaseData, ThrowOnError>) => RequestResult<RepoCreateReleaseResponses, RepoCreateReleaseErrors, ThrowOnError, "fields">;
21351
+ declare const repoCreateRelease: <ThrowOnError extends boolean = false>(options: Options<RepoCreateReleaseData, ThrowOnError>) => RequestResult<RepoCreateReleaseResponses, RepoCreateReleaseErrors, ThrowOnError>;
21397
21352
  /**
21398
21353
  * Gets the most recent non-prerelease, non-draft release of a repository, sorted by created_at
21399
21354
  */
21400
- declare const repoGetLatestRelease: <ThrowOnError extends boolean = false>(options: Options<RepoGetLatestReleaseData, ThrowOnError>) => RequestResult<RepoGetLatestReleaseResponses, RepoGetLatestReleaseErrors, ThrowOnError, "fields">;
21355
+ declare const repoGetLatestRelease: <ThrowOnError extends boolean = false>(options: Options<RepoGetLatestReleaseData, ThrowOnError>) => RequestResult<RepoGetLatestReleaseResponses, RepoGetLatestReleaseErrors, ThrowOnError>;
21401
21356
  /**
21402
21357
  * Delete a release by tag name
21403
21358
  */
21404
- declare const repoDeleteReleaseByTag: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteReleaseByTagData, ThrowOnError>) => RequestResult<RepoDeleteReleaseByTagResponses, RepoDeleteReleaseByTagErrors, ThrowOnError, "fields">;
21359
+ declare const repoDeleteReleaseByTag: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteReleaseByTagData, ThrowOnError>) => RequestResult<RepoDeleteReleaseByTagResponses, RepoDeleteReleaseByTagErrors, ThrowOnError>;
21405
21360
  /**
21406
21361
  * Get a release by tag name
21407
21362
  */
21408
- declare const repoGetReleaseByTag: <ThrowOnError extends boolean = false>(options: Options<RepoGetReleaseByTagData, ThrowOnError>) => RequestResult<RepoGetReleaseByTagResponses, RepoGetReleaseByTagErrors, ThrowOnError, "fields">;
21363
+ declare const repoGetReleaseByTag: <ThrowOnError extends boolean = false>(options: Options<RepoGetReleaseByTagData, ThrowOnError>) => RequestResult<RepoGetReleaseByTagResponses, RepoGetReleaseByTagErrors, ThrowOnError>;
21409
21364
  /**
21410
21365
  * Delete a release
21411
21366
  */
21412
- declare const repoDeleteRelease: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteReleaseData, ThrowOnError>) => RequestResult<RepoDeleteReleaseResponses, RepoDeleteReleaseErrors, ThrowOnError, "fields">;
21367
+ declare const repoDeleteRelease: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteReleaseData, ThrowOnError>) => RequestResult<RepoDeleteReleaseResponses, RepoDeleteReleaseErrors, ThrowOnError>;
21413
21368
  /**
21414
21369
  * Get a release
21415
21370
  */
21416
- declare const repoGetRelease: <ThrowOnError extends boolean = false>(options: Options<RepoGetReleaseData, ThrowOnError>) => RequestResult<RepoGetReleaseResponses, RepoGetReleaseErrors, ThrowOnError, "fields">;
21371
+ declare const repoGetRelease: <ThrowOnError extends boolean = false>(options: Options<RepoGetReleaseData, ThrowOnError>) => RequestResult<RepoGetReleaseResponses, RepoGetReleaseErrors, ThrowOnError>;
21417
21372
  /**
21418
21373
  * Update a release
21419
21374
  */
21420
- declare const repoEditRelease: <ThrowOnError extends boolean = false>(options: Options<RepoEditReleaseData, ThrowOnError>) => RequestResult<RepoEditReleaseResponses, RepoEditReleaseErrors, ThrowOnError, "fields">;
21375
+ declare const repoEditRelease: <ThrowOnError extends boolean = false>(options: Options<RepoEditReleaseData, ThrowOnError>) => RequestResult<RepoEditReleaseResponses, RepoEditReleaseErrors, ThrowOnError>;
21421
21376
  /**
21422
21377
  * List release's attachments
21423
21378
  */
21424
- declare const repoListReleaseAttachments: <ThrowOnError extends boolean = false>(options: Options<RepoListReleaseAttachmentsData, ThrowOnError>) => RequestResult<RepoListReleaseAttachmentsResponses, RepoListReleaseAttachmentsErrors, ThrowOnError, "fields">;
21379
+ declare const repoListReleaseAttachments: <ThrowOnError extends boolean = false>(options: Options<RepoListReleaseAttachmentsData, ThrowOnError>) => RequestResult<RepoListReleaseAttachmentsResponses, RepoListReleaseAttachmentsErrors, ThrowOnError>;
21425
21380
  /**
21426
21381
  * Create a release attachment
21427
21382
  */
21428
- declare const repoCreateReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoCreateReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoCreateReleaseAttachmentResponses, RepoCreateReleaseAttachmentErrors, ThrowOnError, "fields">;
21383
+ declare const repoCreateReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoCreateReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoCreateReleaseAttachmentResponses, RepoCreateReleaseAttachmentErrors, ThrowOnError>;
21429
21384
  /**
21430
21385
  * Delete a release attachment
21431
21386
  */
21432
- declare const repoDeleteReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoDeleteReleaseAttachmentResponses, RepoDeleteReleaseAttachmentErrors, ThrowOnError, "fields">;
21387
+ declare const repoDeleteReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoDeleteReleaseAttachmentResponses, RepoDeleteReleaseAttachmentErrors, ThrowOnError>;
21433
21388
  /**
21434
21389
  * Get a release attachment
21435
21390
  */
21436
- declare const repoGetReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoGetReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoGetReleaseAttachmentResponses, RepoGetReleaseAttachmentErrors, ThrowOnError, "fields">;
21391
+ declare const repoGetReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoGetReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoGetReleaseAttachmentResponses, RepoGetReleaseAttachmentErrors, ThrowOnError>;
21437
21392
  /**
21438
21393
  * Edit a release attachment
21439
21394
  */
21440
- declare const repoEditReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoEditReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoEditReleaseAttachmentResponses, RepoEditReleaseAttachmentErrors, ThrowOnError, "fields">;
21395
+ declare const repoEditReleaseAttachment: <ThrowOnError extends boolean = false>(options: Options<RepoEditReleaseAttachmentData, ThrowOnError>) => RequestResult<RepoEditReleaseAttachmentResponses, RepoEditReleaseAttachmentErrors, ThrowOnError>;
21441
21396
  /**
21442
21397
  * Return all users that can be requested to review in this repo
21443
21398
  */
21444
- declare const repoGetReviewers: <ThrowOnError extends boolean = false>(options: Options<RepoGetReviewersData, ThrowOnError>) => RequestResult<RepoGetReviewersResponses, RepoGetReviewersErrors, ThrowOnError, "fields">;
21399
+ declare const repoGetReviewers: <ThrowOnError extends boolean = false>(options: Options<RepoGetReviewersData, ThrowOnError>) => RequestResult<RepoGetReviewersResponses, RepoGetReviewersErrors, ThrowOnError>;
21445
21400
  /**
21446
21401
  * Get signing-key.gpg for given repository
21447
21402
  */
21448
- declare const repoSigningKey: <ThrowOnError extends boolean = false>(options: Options<RepoSigningKeyData, ThrowOnError>) => RequestResult<RepoSigningKeyResponses, unknown, ThrowOnError, "fields">;
21403
+ declare const repoSigningKey: <ThrowOnError extends boolean = false>(options: Options<RepoSigningKeyData, ThrowOnError>) => RequestResult<RepoSigningKeyResponses, unknown, ThrowOnError>;
21449
21404
  /**
21450
21405
  * List a repo's stargazers
21451
21406
  */
21452
- declare const repoListStargazers: <ThrowOnError extends boolean = false>(options: Options<RepoListStargazersData, ThrowOnError>) => RequestResult<RepoListStargazersResponses, RepoListStargazersErrors, ThrowOnError, "fields">;
21407
+ declare const repoListStargazers: <ThrowOnError extends boolean = false>(options: Options<RepoListStargazersData, ThrowOnError>) => RequestResult<RepoListStargazersResponses, RepoListStargazersErrors, ThrowOnError>;
21453
21408
  /**
21454
21409
  * Get a commit's statuses
21455
21410
  */
21456
- declare const repoListStatuses: <ThrowOnError extends boolean = false>(options: Options<RepoListStatusesData, ThrowOnError>) => RequestResult<RepoListStatusesResponses, RepoListStatusesErrors, ThrowOnError, "fields">;
21411
+ declare const repoListStatuses: <ThrowOnError extends boolean = false>(options: Options<RepoListStatusesData, ThrowOnError>) => RequestResult<RepoListStatusesResponses, RepoListStatusesErrors, ThrowOnError>;
21457
21412
  /**
21458
21413
  * Create a commit status
21459
21414
  */
21460
- declare const repoCreateStatus: <ThrowOnError extends boolean = false>(options: Options<RepoCreateStatusData, ThrowOnError>) => RequestResult<RepoCreateStatusResponses, RepoCreateStatusErrors, ThrowOnError, "fields">;
21415
+ declare const repoCreateStatus: <ThrowOnError extends boolean = false>(options: Options<RepoCreateStatusData, ThrowOnError>) => RequestResult<RepoCreateStatusResponses, RepoCreateStatusErrors, ThrowOnError>;
21461
21416
  /**
21462
21417
  * List a repo's watchers
21463
21418
  */
21464
- declare const repoListSubscribers: <ThrowOnError extends boolean = false>(options: Options<RepoListSubscribersData, ThrowOnError>) => RequestResult<RepoListSubscribersResponses, RepoListSubscribersErrors, ThrowOnError, "fields">;
21419
+ declare const repoListSubscribers: <ThrowOnError extends boolean = false>(options: Options<RepoListSubscribersData, ThrowOnError>) => RequestResult<RepoListSubscribersResponses, RepoListSubscribersErrors, ThrowOnError>;
21465
21420
  /**
21466
21421
  * Unwatch a repo
21467
21422
  */
21468
- declare const userCurrentDeleteSubscription: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteSubscriptionData, ThrowOnError>) => RequestResult<UserCurrentDeleteSubscriptionResponses, UserCurrentDeleteSubscriptionErrors, ThrowOnError, "fields">;
21423
+ declare const userCurrentDeleteSubscription: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteSubscriptionData, ThrowOnError>) => RequestResult<UserCurrentDeleteSubscriptionResponses, UserCurrentDeleteSubscriptionErrors, ThrowOnError>;
21469
21424
  /**
21470
21425
  * Check if the current user is watching a repo
21471
21426
  */
21472
- declare const userCurrentCheckSubscription: <ThrowOnError extends boolean = false>(options: Options<UserCurrentCheckSubscriptionData, ThrowOnError>) => RequestResult<UserCurrentCheckSubscriptionResponses, UserCurrentCheckSubscriptionErrors, ThrowOnError, "fields">;
21427
+ declare const userCurrentCheckSubscription: <ThrowOnError extends boolean = false>(options: Options<UserCurrentCheckSubscriptionData, ThrowOnError>) => RequestResult<UserCurrentCheckSubscriptionResponses, UserCurrentCheckSubscriptionErrors, ThrowOnError>;
21473
21428
  /**
21474
21429
  * Watch a repo
21475
21430
  */
21476
- declare const userCurrentPutSubscription: <ThrowOnError extends boolean = false>(options: Options<UserCurrentPutSubscriptionData, ThrowOnError>) => RequestResult<UserCurrentPutSubscriptionResponses, UserCurrentPutSubscriptionErrors, ThrowOnError, "fields">;
21431
+ declare const userCurrentPutSubscription: <ThrowOnError extends boolean = false>(options: Options<UserCurrentPutSubscriptionData, ThrowOnError>) => RequestResult<UserCurrentPutSubscriptionResponses, UserCurrentPutSubscriptionErrors, ThrowOnError>;
21477
21432
  /**
21478
21433
  * Gets information about syncing the fork default branch with the base branch
21479
21434
  */
21480
- declare const repoSyncForkDefaultInfo: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkDefaultInfoData, ThrowOnError>) => RequestResult<RepoSyncForkDefaultInfoResponses, RepoSyncForkDefaultInfoErrors, ThrowOnError, "fields">;
21435
+ declare const repoSyncForkDefaultInfo: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkDefaultInfoData, ThrowOnError>) => RequestResult<RepoSyncForkDefaultInfoResponses, RepoSyncForkDefaultInfoErrors, ThrowOnError>;
21481
21436
  /**
21482
21437
  * Syncs the default branch of a fork with the base branch
21483
21438
  */
21484
- declare const repoSyncForkDefault: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkDefaultData, ThrowOnError>) => RequestResult<RepoSyncForkDefaultResponses, RepoSyncForkDefaultErrors, ThrowOnError, "fields">;
21439
+ declare const repoSyncForkDefault: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkDefaultData, ThrowOnError>) => RequestResult<RepoSyncForkDefaultResponses, RepoSyncForkDefaultErrors, ThrowOnError>;
21485
21440
  /**
21486
21441
  * Gets information about syncing a fork branch with the base branch
21487
21442
  */
21488
- declare const repoSyncForkBranchInfo: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkBranchInfoData, ThrowOnError>) => RequestResult<RepoSyncForkBranchInfoResponses, RepoSyncForkBranchInfoErrors, ThrowOnError, "fields">;
21443
+ declare const repoSyncForkBranchInfo: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkBranchInfoData, ThrowOnError>) => RequestResult<RepoSyncForkBranchInfoResponses, RepoSyncForkBranchInfoErrors, ThrowOnError>;
21489
21444
  /**
21490
21445
  * Syncs a fork branch with the base branch
21491
21446
  */
21492
- declare const repoSyncForkBranch: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkBranchData, ThrowOnError>) => RequestResult<RepoSyncForkBranchResponses, RepoSyncForkBranchErrors, ThrowOnError, "fields">;
21447
+ declare const repoSyncForkBranch: <ThrowOnError extends boolean = false>(options: Options<RepoSyncForkBranchData, ThrowOnError>) => RequestResult<RepoSyncForkBranchResponses, RepoSyncForkBranchErrors, ThrowOnError>;
21493
21448
  /**
21494
21449
  * List tag protections for a repository
21495
21450
  */
21496
- declare const repoListTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoListTagProtectionData, ThrowOnError>) => RequestResult<RepoListTagProtectionResponses, unknown, ThrowOnError, "fields">;
21451
+ declare const repoListTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoListTagProtectionData, ThrowOnError>) => RequestResult<RepoListTagProtectionResponses, unknown, ThrowOnError>;
21497
21452
  /**
21498
21453
  * Create a tag protections for a repository
21499
21454
  */
21500
- declare const repoCreateTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoCreateTagProtectionData, ThrowOnError>) => RequestResult<RepoCreateTagProtectionResponses, RepoCreateTagProtectionErrors, ThrowOnError, "fields">;
21455
+ declare const repoCreateTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoCreateTagProtectionData, ThrowOnError>) => RequestResult<RepoCreateTagProtectionResponses, RepoCreateTagProtectionErrors, ThrowOnError>;
21501
21456
  /**
21502
21457
  * Delete a specific tag protection for the repository
21503
21458
  */
21504
- declare const repoDeleteTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTagProtectionData, ThrowOnError>) => RequestResult<RepoDeleteTagProtectionResponses, RepoDeleteTagProtectionErrors, ThrowOnError, "fields">;
21459
+ declare const repoDeleteTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTagProtectionData, ThrowOnError>) => RequestResult<RepoDeleteTagProtectionResponses, RepoDeleteTagProtectionErrors, ThrowOnError>;
21505
21460
  /**
21506
21461
  * Get a specific tag protection for the repository
21507
21462
  */
21508
- declare const repoGetTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoGetTagProtectionData, ThrowOnError>) => RequestResult<RepoGetTagProtectionResponses, RepoGetTagProtectionErrors, ThrowOnError, "fields">;
21463
+ declare const repoGetTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoGetTagProtectionData, ThrowOnError>) => RequestResult<RepoGetTagProtectionResponses, RepoGetTagProtectionErrors, ThrowOnError>;
21509
21464
  /**
21510
21465
  * Edit a tag protections for a repository. Only fields that are set will be changed
21511
21466
  */
21512
- declare const repoEditTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoEditTagProtectionData, ThrowOnError>) => RequestResult<RepoEditTagProtectionResponses, RepoEditTagProtectionErrors, ThrowOnError, "fields">;
21467
+ declare const repoEditTagProtection: <ThrowOnError extends boolean = false>(options: Options<RepoEditTagProtectionData, ThrowOnError>) => RequestResult<RepoEditTagProtectionResponses, RepoEditTagProtectionErrors, ThrowOnError>;
21513
21468
  /**
21514
21469
  * List a repository's tags
21515
21470
  */
21516
- declare const repoListTags: <ThrowOnError extends boolean = false>(options: Options<RepoListTagsData, ThrowOnError>) => RequestResult<RepoListTagsResponses, RepoListTagsErrors, ThrowOnError, "fields">;
21471
+ declare const repoListTags: <ThrowOnError extends boolean = false>(options: Options<RepoListTagsData, ThrowOnError>) => RequestResult<RepoListTagsResponses, RepoListTagsErrors, ThrowOnError>;
21517
21472
  /**
21518
21473
  * Create a new git tag in a repository
21519
21474
  */
21520
- declare const repoCreateTag: <ThrowOnError extends boolean = false>(options: Options<RepoCreateTagData, ThrowOnError>) => RequestResult<RepoCreateTagResponses, RepoCreateTagErrors, ThrowOnError, "fields">;
21475
+ declare const repoCreateTag: <ThrowOnError extends boolean = false>(options: Options<RepoCreateTagData, ThrowOnError>) => RequestResult<RepoCreateTagResponses, RepoCreateTagErrors, ThrowOnError>;
21521
21476
  /**
21522
21477
  * Delete a repository's tag by name
21523
21478
  */
21524
- declare const repoDeleteTag: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTagData, ThrowOnError>) => RequestResult<RepoDeleteTagResponses, RepoDeleteTagErrors, ThrowOnError, "fields">;
21479
+ declare const repoDeleteTag: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTagData, ThrowOnError>) => RequestResult<RepoDeleteTagResponses, RepoDeleteTagErrors, ThrowOnError>;
21525
21480
  /**
21526
21481
  * Get the tag of a repository by tag name
21527
21482
  */
21528
- declare const repoGetTag: <ThrowOnError extends boolean = false>(options: Options<RepoGetTagData, ThrowOnError>) => RequestResult<RepoGetTagResponses, RepoGetTagErrors, ThrowOnError, "fields">;
21483
+ declare const repoGetTag: <ThrowOnError extends boolean = false>(options: Options<RepoGetTagData, ThrowOnError>) => RequestResult<RepoGetTagResponses, RepoGetTagErrors, ThrowOnError>;
21529
21484
  /**
21530
21485
  * List a repository's teams
21531
21486
  */
21532
- declare const repoListTeams: <ThrowOnError extends boolean = false>(options: Options<RepoListTeamsData, ThrowOnError>) => RequestResult<RepoListTeamsResponses, RepoListTeamsErrors, ThrowOnError, "fields">;
21487
+ declare const repoListTeams: <ThrowOnError extends boolean = false>(options: Options<RepoListTeamsData, ThrowOnError>) => RequestResult<RepoListTeamsResponses, RepoListTeamsErrors, ThrowOnError>;
21533
21488
  /**
21534
21489
  * Delete a team from a repository
21535
21490
  */
21536
- declare const repoDeleteTeam: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTeamData, ThrowOnError>) => RequestResult<RepoDeleteTeamResponses, RepoDeleteTeamErrors, ThrowOnError, "fields">;
21491
+ declare const repoDeleteTeam: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTeamData, ThrowOnError>) => RequestResult<RepoDeleteTeamResponses, RepoDeleteTeamErrors, ThrowOnError>;
21537
21492
  /**
21538
21493
  * Check if a team is assigned to a repository
21539
21494
  */
21540
- declare const repoCheckTeam: <ThrowOnError extends boolean = false>(options: Options<RepoCheckTeamData, ThrowOnError>) => RequestResult<RepoCheckTeamResponses, RepoCheckTeamErrors, ThrowOnError, "fields">;
21495
+ declare const repoCheckTeam: <ThrowOnError extends boolean = false>(options: Options<RepoCheckTeamData, ThrowOnError>) => RequestResult<RepoCheckTeamResponses, RepoCheckTeamErrors, ThrowOnError>;
21541
21496
  /**
21542
21497
  * Add a team to a repository
21543
21498
  */
21544
- declare const repoAddTeam: <ThrowOnError extends boolean = false>(options: Options<RepoAddTeamData, ThrowOnError>) => RequestResult<RepoAddTeamResponses, RepoAddTeamErrors, ThrowOnError, "fields">;
21499
+ declare const repoAddTeam: <ThrowOnError extends boolean = false>(options: Options<RepoAddTeamData, ThrowOnError>) => RequestResult<RepoAddTeamResponses, RepoAddTeamErrors, ThrowOnError>;
21545
21500
  /**
21546
21501
  * List a repo's tracked times
21547
21502
  */
21548
- declare const repoTrackedTimes: <ThrowOnError extends boolean = false>(options: Options<RepoTrackedTimesData, ThrowOnError>) => RequestResult<RepoTrackedTimesResponses, RepoTrackedTimesErrors, ThrowOnError, "fields">;
21503
+ declare const repoTrackedTimes: <ThrowOnError extends boolean = false>(options: Options<RepoTrackedTimesData, ThrowOnError>) => RequestResult<RepoTrackedTimesResponses, RepoTrackedTimesErrors, ThrowOnError>;
21549
21504
  /**
21550
21505
  * List a user's tracked times in a repo
21551
21506
  *
21552
21507
  * @deprecated
21553
21508
  */
21554
- declare const userTrackedTimes: <ThrowOnError extends boolean = false>(options: Options<UserTrackedTimesData, ThrowOnError>) => RequestResult<UserTrackedTimesResponses, UserTrackedTimesErrors, ThrowOnError, "fields">;
21509
+ declare const userTrackedTimes: <ThrowOnError extends boolean = false>(options: Options<UserTrackedTimesData, ThrowOnError>) => RequestResult<UserTrackedTimesResponses, UserTrackedTimesErrors, ThrowOnError>;
21555
21510
  /**
21556
21511
  * Get list of topics that a repository has
21557
21512
  */
21558
- declare const repoListTopics: <ThrowOnError extends boolean = false>(options: Options<RepoListTopicsData, ThrowOnError>) => RequestResult<RepoListTopicsResponses, RepoListTopicsErrors, ThrowOnError, "fields">;
21513
+ declare const repoListTopics: <ThrowOnError extends boolean = false>(options: Options<RepoListTopicsData, ThrowOnError>) => RequestResult<RepoListTopicsResponses, RepoListTopicsErrors, ThrowOnError>;
21559
21514
  /**
21560
21515
  * Replace list of topics for a repository
21561
21516
  */
21562
- declare const repoUpdateTopics: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateTopicsData, ThrowOnError>) => RequestResult<RepoUpdateTopicsResponses, RepoUpdateTopicsErrors, ThrowOnError, "fields">;
21517
+ declare const repoUpdateTopics: <ThrowOnError extends boolean = false>(options: Options<RepoUpdateTopicsData, ThrowOnError>) => RequestResult<RepoUpdateTopicsResponses, RepoUpdateTopicsErrors, ThrowOnError>;
21563
21518
  /**
21564
21519
  * Delete a topic from a repository
21565
21520
  */
21566
- declare const repoDeleteTopic: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTopicData, ThrowOnError>) => RequestResult<RepoDeleteTopicResponses, RepoDeleteTopicErrors, ThrowOnError, "fields">;
21521
+ declare const repoDeleteTopic: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteTopicData, ThrowOnError>) => RequestResult<RepoDeleteTopicResponses, RepoDeleteTopicErrors, ThrowOnError>;
21567
21522
  /**
21568
21523
  * Add a topic to a repository
21569
21524
  */
21570
- declare const repoAddTopic: <ThrowOnError extends boolean = false>(options: Options<RepoAddTopicData, ThrowOnError>) => RequestResult<RepoAddTopicResponses, RepoAddTopicErrors, ThrowOnError, "fields">;
21525
+ declare const repoAddTopic: <ThrowOnError extends boolean = false>(options: Options<RepoAddTopicData, ThrowOnError>) => RequestResult<RepoAddTopicResponses, RepoAddTopicErrors, ThrowOnError>;
21571
21526
  /**
21572
21527
  * Transfer a repo ownership
21573
21528
  */
21574
- declare const repoTransfer: <ThrowOnError extends boolean = false>(options: Options<RepoTransferData, ThrowOnError>) => RequestResult<RepoTransferResponses, RepoTransferErrors, ThrowOnError, "fields">;
21529
+ declare const repoTransfer: <ThrowOnError extends boolean = false>(options: Options<RepoTransferData, ThrowOnError>) => RequestResult<RepoTransferResponses, RepoTransferErrors, ThrowOnError>;
21575
21530
  /**
21576
21531
  * Accept a repo transfer
21577
21532
  */
21578
- declare const acceptRepoTransfer: <ThrowOnError extends boolean = false>(options: Options<AcceptRepoTransferData, ThrowOnError>) => RequestResult<AcceptRepoTransferResponses, AcceptRepoTransferErrors, ThrowOnError, "fields">;
21533
+ declare const acceptRepoTransfer: <ThrowOnError extends boolean = false>(options: Options<AcceptRepoTransferData, ThrowOnError>) => RequestResult<AcceptRepoTransferResponses, AcceptRepoTransferErrors, ThrowOnError>;
21579
21534
  /**
21580
21535
  * Reject a repo transfer
21581
21536
  */
21582
- declare const rejectRepoTransfer: <ThrowOnError extends boolean = false>(options: Options<RejectRepoTransferData, ThrowOnError>) => RequestResult<RejectRepoTransferResponses, RejectRepoTransferErrors, ThrowOnError, "fields">;
21537
+ declare const rejectRepoTransfer: <ThrowOnError extends boolean = false>(options: Options<RejectRepoTransferData, ThrowOnError>) => RequestResult<RejectRepoTransferResponses, RejectRepoTransferErrors, ThrowOnError>;
21583
21538
  /**
21584
21539
  * Create a wiki page
21585
21540
  */
21586
- declare const repoCreateWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoCreateWikiPageData, ThrowOnError>) => RequestResult<RepoCreateWikiPageResponses, RepoCreateWikiPageErrors, ThrowOnError, "fields">;
21541
+ declare const repoCreateWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoCreateWikiPageData, ThrowOnError>) => RequestResult<RepoCreateWikiPageResponses, RepoCreateWikiPageErrors, ThrowOnError>;
21587
21542
  /**
21588
21543
  * Delete a wiki page
21589
21544
  */
21590
- declare const repoDeleteWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteWikiPageData, ThrowOnError>) => RequestResult<RepoDeleteWikiPageResponses, RepoDeleteWikiPageErrors, ThrowOnError, "fields">;
21545
+ declare const repoDeleteWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoDeleteWikiPageData, ThrowOnError>) => RequestResult<RepoDeleteWikiPageResponses, RepoDeleteWikiPageErrors, ThrowOnError>;
21591
21546
  /**
21592
21547
  * Get a wiki page
21593
21548
  */
21594
- declare const repoGetWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoGetWikiPageData, ThrowOnError>) => RequestResult<RepoGetWikiPageResponses, RepoGetWikiPageErrors, ThrowOnError, "fields">;
21549
+ declare const repoGetWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoGetWikiPageData, ThrowOnError>) => RequestResult<RepoGetWikiPageResponses, RepoGetWikiPageErrors, ThrowOnError>;
21595
21550
  /**
21596
21551
  * Edit a wiki page
21597
21552
  */
21598
- declare const repoEditWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoEditWikiPageData, ThrowOnError>) => RequestResult<RepoEditWikiPageResponses, RepoEditWikiPageErrors, ThrowOnError, "fields">;
21553
+ declare const repoEditWikiPage: <ThrowOnError extends boolean = false>(options: Options<RepoEditWikiPageData, ThrowOnError>) => RequestResult<RepoEditWikiPageResponses, RepoEditWikiPageErrors, ThrowOnError>;
21599
21554
  /**
21600
21555
  * Get all wiki pages
21601
21556
  */
21602
- declare const repoGetWikiPages: <ThrowOnError extends boolean = false>(options: Options<RepoGetWikiPagesData, ThrowOnError>) => RequestResult<RepoGetWikiPagesResponses, RepoGetWikiPagesErrors, ThrowOnError, "fields">;
21557
+ declare const repoGetWikiPages: <ThrowOnError extends boolean = false>(options: Options<RepoGetWikiPagesData, ThrowOnError>) => RequestResult<RepoGetWikiPagesResponses, RepoGetWikiPagesErrors, ThrowOnError>;
21603
21558
  /**
21604
21559
  * Get revisions of a wiki page
21605
21560
  */
21606
- declare const repoGetWikiPageRevisions: <ThrowOnError extends boolean = false>(options: Options<RepoGetWikiPageRevisionsData, ThrowOnError>) => RequestResult<RepoGetWikiPageRevisionsResponses, RepoGetWikiPageRevisionsErrors, ThrowOnError, "fields">;
21561
+ declare const repoGetWikiPageRevisions: <ThrowOnError extends boolean = false>(options: Options<RepoGetWikiPageRevisionsData, ThrowOnError>) => RequestResult<RepoGetWikiPageRevisionsResponses, RepoGetWikiPageRevisionsErrors, ThrowOnError>;
21607
21562
  /**
21608
21563
  * Create a repository using a template
21609
21564
  */
21610
- declare const generateRepo: <ThrowOnError extends boolean = false>(options: Options<GenerateRepoData, ThrowOnError>) => RequestResult<GenerateRepoResponses, GenerateRepoErrors, ThrowOnError, "fields">;
21565
+ declare const generateRepo: <ThrowOnError extends boolean = false>(options: Options<GenerateRepoData, ThrowOnError>) => RequestResult<GenerateRepoResponses, GenerateRepoErrors, ThrowOnError>;
21611
21566
  /**
21612
21567
  * Get a repository by id
21613
21568
  */
21614
- declare const repoGetById: <ThrowOnError extends boolean = false>(options: Options<RepoGetByIdData, ThrowOnError>) => RequestResult<RepoGetByIdResponses, RepoGetByIdErrors, ThrowOnError, "fields">;
21569
+ declare const repoGetById: <ThrowOnError extends boolean = false>(options: Options<RepoGetByIdData, ThrowOnError>) => RequestResult<RepoGetByIdResponses, RepoGetByIdErrors, ThrowOnError>;
21615
21570
  /**
21616
21571
  * Get instance's global settings for api
21617
21572
  */
21618
- declare const getGeneralApiSettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralApiSettingsData, ThrowOnError>) => RequestResult<GetGeneralApiSettingsResponses, unknown, ThrowOnError, "fields">;
21573
+ declare const getGeneralApiSettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralApiSettingsData, ThrowOnError>) => RequestResult<GetGeneralApiSettingsResponses, unknown, ThrowOnError>;
21619
21574
  /**
21620
21575
  * Get instance's global settings for Attachment
21621
21576
  */
21622
- declare const getGeneralAttachmentSettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralAttachmentSettingsData, ThrowOnError>) => RequestResult<GetGeneralAttachmentSettingsResponses, unknown, ThrowOnError, "fields">;
21577
+ declare const getGeneralAttachmentSettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralAttachmentSettingsData, ThrowOnError>) => RequestResult<GetGeneralAttachmentSettingsResponses, unknown, ThrowOnError>;
21623
21578
  /**
21624
21579
  * Get instance's global settings for repositories
21625
21580
  */
21626
- declare const getGeneralRepositorySettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralRepositorySettingsData, ThrowOnError>) => RequestResult<GetGeneralRepositorySettingsResponses, unknown, ThrowOnError, "fields">;
21581
+ declare const getGeneralRepositorySettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralRepositorySettingsData, ThrowOnError>) => RequestResult<GetGeneralRepositorySettingsResponses, unknown, ThrowOnError>;
21627
21582
  /**
21628
21583
  * Get instance's global settings for ui
21629
21584
  */
21630
- declare const getGeneralUiSettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralUiSettingsData, ThrowOnError>) => RequestResult<GetGeneralUiSettingsResponses, unknown, ThrowOnError, "fields">;
21585
+ declare const getGeneralUiSettings: <ThrowOnError extends boolean = false>(options?: Options<GetGeneralUiSettingsData, ThrowOnError>) => RequestResult<GetGeneralUiSettingsResponses, unknown, ThrowOnError>;
21631
21586
  /**
21632
21587
  * Get default signing-key.gpg
21633
21588
  */
21634
- declare const getSigningKey: <ThrowOnError extends boolean = false>(options?: Options<GetSigningKeyData, ThrowOnError>) => RequestResult<GetSigningKeyResponses, unknown, ThrowOnError, "fields">;
21589
+ declare const getSigningKey: <ThrowOnError extends boolean = false>(options?: Options<GetSigningKeyData, ThrowOnError>) => RequestResult<GetSigningKeyResponses, unknown, ThrowOnError>;
21635
21590
  /**
21636
21591
  * Get default signing-key.ssh
21637
21592
  */
21638
- declare const getSshSigningKey: <ThrowOnError extends boolean = false>(options?: Options<GetSshSigningKeyData, ThrowOnError>) => RequestResult<GetSshSigningKeyResponses, GetSshSigningKeyErrors, ThrowOnError, "fields">;
21593
+ declare const getSshSigningKey: <ThrowOnError extends boolean = false>(options?: Options<GetSshSigningKeyData, ThrowOnError>) => RequestResult<GetSshSigningKeyResponses, GetSshSigningKeyErrors, ThrowOnError>;
21639
21594
  /**
21640
21595
  * Delete a team
21641
21596
  */
21642
- declare const orgDeleteTeam: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteTeamData, ThrowOnError>) => RequestResult<OrgDeleteTeamResponses, OrgDeleteTeamErrors, ThrowOnError, "fields">;
21597
+ declare const orgDeleteTeam: <ThrowOnError extends boolean = false>(options: Options<OrgDeleteTeamData, ThrowOnError>) => RequestResult<OrgDeleteTeamResponses, OrgDeleteTeamErrors, ThrowOnError>;
21643
21598
  /**
21644
21599
  * Get a team
21645
21600
  */
21646
- declare const orgGetTeam: <ThrowOnError extends boolean = false>(options: Options<OrgGetTeamData, ThrowOnError>) => RequestResult<OrgGetTeamResponses, OrgGetTeamErrors, ThrowOnError, "fields">;
21601
+ declare const orgGetTeam: <ThrowOnError extends boolean = false>(options: Options<OrgGetTeamData, ThrowOnError>) => RequestResult<OrgGetTeamResponses, OrgGetTeamErrors, ThrowOnError>;
21647
21602
  /**
21648
21603
  * Edit a team
21649
21604
  */
21650
- declare const orgEditTeam: <ThrowOnError extends boolean = false>(options: Options<OrgEditTeamData, ThrowOnError>) => RequestResult<OrgEditTeamResponses, OrgEditTeamErrors, ThrowOnError, "fields">;
21605
+ declare const orgEditTeam: <ThrowOnError extends boolean = false>(options: Options<OrgEditTeamData, ThrowOnError>) => RequestResult<OrgEditTeamResponses, OrgEditTeamErrors, ThrowOnError>;
21651
21606
  /**
21652
21607
  * List a team's activity feeds
21653
21608
  */
21654
- declare const orgListTeamActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamActivityFeedsData, ThrowOnError>) => RequestResult<OrgListTeamActivityFeedsResponses, OrgListTeamActivityFeedsErrors, ThrowOnError, "fields">;
21609
+ declare const orgListTeamActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamActivityFeedsData, ThrowOnError>) => RequestResult<OrgListTeamActivityFeedsResponses, OrgListTeamActivityFeedsErrors, ThrowOnError>;
21655
21610
  /**
21656
21611
  * List a team's members
21657
21612
  */
21658
- declare const orgListTeamMembers: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamMembersData, ThrowOnError>) => RequestResult<OrgListTeamMembersResponses, OrgListTeamMembersErrors, ThrowOnError, "fields">;
21613
+ declare const orgListTeamMembers: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamMembersData, ThrowOnError>) => RequestResult<OrgListTeamMembersResponses, OrgListTeamMembersErrors, ThrowOnError>;
21659
21614
  /**
21660
21615
  * Remove a team member
21661
21616
  */
21662
- declare const orgRemoveTeamMember: <ThrowOnError extends boolean = false>(options: Options<OrgRemoveTeamMemberData, ThrowOnError>) => RequestResult<OrgRemoveTeamMemberResponses, OrgRemoveTeamMemberErrors, ThrowOnError, "fields">;
21617
+ declare const orgRemoveTeamMember: <ThrowOnError extends boolean = false>(options: Options<OrgRemoveTeamMemberData, ThrowOnError>) => RequestResult<OrgRemoveTeamMemberResponses, OrgRemoveTeamMemberErrors, ThrowOnError>;
21663
21618
  /**
21664
21619
  * List a particular member of team
21665
21620
  */
21666
- declare const orgListTeamMember: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamMemberData, ThrowOnError>) => RequestResult<OrgListTeamMemberResponses, OrgListTeamMemberErrors, ThrowOnError, "fields">;
21621
+ declare const orgListTeamMember: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamMemberData, ThrowOnError>) => RequestResult<OrgListTeamMemberResponses, OrgListTeamMemberErrors, ThrowOnError>;
21667
21622
  /**
21668
21623
  * Add a team member
21669
21624
  */
21670
- declare const orgAddTeamMember: <ThrowOnError extends boolean = false>(options: Options<OrgAddTeamMemberData, ThrowOnError>) => RequestResult<OrgAddTeamMemberResponses, OrgAddTeamMemberErrors, ThrowOnError, "fields">;
21625
+ declare const orgAddTeamMember: <ThrowOnError extends boolean = false>(options: Options<OrgAddTeamMemberData, ThrowOnError>) => RequestResult<OrgAddTeamMemberResponses, OrgAddTeamMemberErrors, ThrowOnError>;
21671
21626
  /**
21672
21627
  * List a team's repos
21673
21628
  */
21674
- declare const orgListTeamRepos: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamReposData, ThrowOnError>) => RequestResult<OrgListTeamReposResponses, OrgListTeamReposErrors, ThrowOnError, "fields">;
21629
+ declare const orgListTeamRepos: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamReposData, ThrowOnError>) => RequestResult<OrgListTeamReposResponses, OrgListTeamReposErrors, ThrowOnError>;
21675
21630
  /**
21676
21631
  * Remove a repository from a team
21677
21632
  *
21678
21633
  * This does not delete the repository, it only removes the repository from the team.
21679
21634
  */
21680
- declare const orgRemoveTeamRepository: <ThrowOnError extends boolean = false>(options: Options<OrgRemoveTeamRepositoryData, ThrowOnError>) => RequestResult<OrgRemoveTeamRepositoryResponses, OrgRemoveTeamRepositoryErrors, ThrowOnError, "fields">;
21635
+ declare const orgRemoveTeamRepository: <ThrowOnError extends boolean = false>(options: Options<OrgRemoveTeamRepositoryData, ThrowOnError>) => RequestResult<OrgRemoveTeamRepositoryResponses, OrgRemoveTeamRepositoryErrors, ThrowOnError>;
21681
21636
  /**
21682
21637
  * List a particular repo of team
21683
21638
  */
21684
- declare const orgListTeamRepo: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamRepoData, ThrowOnError>) => RequestResult<OrgListTeamRepoResponses, OrgListTeamRepoErrors, ThrowOnError, "fields">;
21639
+ declare const orgListTeamRepo: <ThrowOnError extends boolean = false>(options: Options<OrgListTeamRepoData, ThrowOnError>) => RequestResult<OrgListTeamRepoResponses, OrgListTeamRepoErrors, ThrowOnError>;
21685
21640
  /**
21686
21641
  * Add a repository to a team
21687
21642
  */
21688
- declare const orgAddTeamRepository: <ThrowOnError extends boolean = false>(options: Options<OrgAddTeamRepositoryData, ThrowOnError>) => RequestResult<OrgAddTeamRepositoryResponses, OrgAddTeamRepositoryErrors, ThrowOnError, "fields">;
21643
+ declare const orgAddTeamRepository: <ThrowOnError extends boolean = false>(options: Options<OrgAddTeamRepositoryData, ThrowOnError>) => RequestResult<OrgAddTeamRepositoryResponses, OrgAddTeamRepositoryErrors, ThrowOnError>;
21689
21644
  /**
21690
21645
  * Search for topics by keyword
21691
21646
  */
21692
- declare const topicSearch: <ThrowOnError extends boolean = false>(options: Options<TopicSearchData, ThrowOnError>) => RequestResult<TopicSearchResponses, TopicSearchErrors, ThrowOnError, "fields">;
21647
+ declare const topicSearch: <ThrowOnError extends boolean = false>(options: Options<TopicSearchData, ThrowOnError>) => RequestResult<TopicSearchResponses, TopicSearchErrors, ThrowOnError>;
21693
21648
  /**
21694
21649
  * Get the authenticated user
21695
21650
  */
21696
- declare const userGetCurrent: <ThrowOnError extends boolean = false>(options?: Options<UserGetCurrentData, ThrowOnError>) => RequestResult<UserGetCurrentResponses, UserGetCurrentErrors, ThrowOnError, "fields">;
21651
+ declare const userGetCurrent: <ThrowOnError extends boolean = false>(options?: Options<UserGetCurrentData, ThrowOnError>) => RequestResult<UserGetCurrentResponses, UserGetCurrentErrors, ThrowOnError>;
21697
21652
  /**
21698
21653
  * Search for user's action jobs according filter conditions
21699
21654
  */
21700
- declare const userSearchRunJobs: <ThrowOnError extends boolean = false>(options?: Options<UserSearchRunJobsData, ThrowOnError>) => RequestResult<UserSearchRunJobsResponses, UserSearchRunJobsErrors, ThrowOnError, "fields">;
21655
+ declare const userSearchRunJobs: <ThrowOnError extends boolean = false>(options?: Options<UserSearchRunJobsData, ThrowOnError>) => RequestResult<UserSearchRunJobsResponses, UserSearchRunJobsErrors, ThrowOnError>;
21701
21656
  /**
21702
21657
  * Get an user's actions runner registration token
21703
21658
  */
21704
- declare const userGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<UserGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<UserGetRunnerRegistrationTokenResponses, UserGetRunnerRegistrationTokenErrors, ThrowOnError, "fields">;
21659
+ declare const userGetRunnerRegistrationToken: <ThrowOnError extends boolean = false>(options?: Options<UserGetRunnerRegistrationTokenData, ThrowOnError>) => RequestResult<UserGetRunnerRegistrationTokenResponses, UserGetRunnerRegistrationTokenErrors, ThrowOnError>;
21705
21660
  /**
21706
21661
  * Delete a secret in a user scope
21707
21662
  */
21708
- declare const deleteUserSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteUserSecretData, ThrowOnError>) => RequestResult<DeleteUserSecretResponses, DeleteUserSecretErrors, ThrowOnError, "fields">;
21663
+ declare const deleteUserSecret: <ThrowOnError extends boolean = false>(options: Options<DeleteUserSecretData, ThrowOnError>) => RequestResult<DeleteUserSecretResponses, DeleteUserSecretErrors, ThrowOnError>;
21709
21664
  /**
21710
21665
  * Create or Update a secret value in a user scope
21711
21666
  */
21712
- declare const updateUserSecret: <ThrowOnError extends boolean = false>(options: Options<UpdateUserSecretData, ThrowOnError>) => RequestResult<UpdateUserSecretResponses, UpdateUserSecretErrors, ThrowOnError, "fields">;
21667
+ declare const updateUserSecret: <ThrowOnError extends boolean = false>(options: Options<UpdateUserSecretData, ThrowOnError>) => RequestResult<UpdateUserSecretResponses, UpdateUserSecretErrors, ThrowOnError>;
21713
21668
  /**
21714
21669
  * Get the user-level list of variables which is created by current doer
21715
21670
  */
21716
- declare const getUserVariablesList: <ThrowOnError extends boolean = false>(options?: Options<GetUserVariablesListData, ThrowOnError>) => RequestResult<GetUserVariablesListResponses, GetUserVariablesListErrors, ThrowOnError, "fields">;
21671
+ declare const getUserVariablesList: <ThrowOnError extends boolean = false>(options?: Options<GetUserVariablesListData, ThrowOnError>) => RequestResult<GetUserVariablesListResponses, GetUserVariablesListErrors, ThrowOnError>;
21717
21672
  /**
21718
21673
  * Delete a user-level variable which is created by current doer
21719
21674
  */
21720
- declare const deleteUserVariable: <ThrowOnError extends boolean = false>(options: Options<DeleteUserVariableData, ThrowOnError>) => RequestResult<DeleteUserVariableResponses, DeleteUserVariableErrors, ThrowOnError, "fields">;
21675
+ declare const deleteUserVariable: <ThrowOnError extends boolean = false>(options: Options<DeleteUserVariableData, ThrowOnError>) => RequestResult<DeleteUserVariableResponses, DeleteUserVariableErrors, ThrowOnError>;
21721
21676
  /**
21722
21677
  * Get a user-level variable which is created by current doer
21723
21678
  */
21724
- declare const getUserVariable: <ThrowOnError extends boolean = false>(options: Options<GetUserVariableData, ThrowOnError>) => RequestResult<GetUserVariableResponses, GetUserVariableErrors, ThrowOnError, "fields">;
21679
+ declare const getUserVariable: <ThrowOnError extends boolean = false>(options: Options<GetUserVariableData, ThrowOnError>) => RequestResult<GetUserVariableResponses, GetUserVariableErrors, ThrowOnError>;
21725
21680
  /**
21726
21681
  * Create a user-level variable
21727
21682
  */
21728
- declare const createUserVariable: <ThrowOnError extends boolean = false>(options: Options<CreateUserVariableData, ThrowOnError>) => RequestResult<CreateUserVariableResponses, CreateUserVariableErrors, ThrowOnError, "fields">;
21683
+ declare const createUserVariable: <ThrowOnError extends boolean = false>(options: Options<CreateUserVariableData, ThrowOnError>) => RequestResult<CreateUserVariableResponses, CreateUserVariableErrors, ThrowOnError>;
21729
21684
  /**
21730
21685
  * Update a user-level variable which is created by current doer
21731
21686
  */
21732
- declare const updateUserVariable: <ThrowOnError extends boolean = false>(options: Options<UpdateUserVariableData, ThrowOnError>) => RequestResult<UpdateUserVariableResponses, UpdateUserVariableErrors, ThrowOnError, "fields">;
21687
+ declare const updateUserVariable: <ThrowOnError extends boolean = false>(options: Options<UpdateUserVariableData, ThrowOnError>) => RequestResult<UpdateUserVariableResponses, UpdateUserVariableErrors, ThrowOnError>;
21733
21688
  /**
21734
21689
  * List the authenticated user's oauth2 applications
21735
21690
  */
21736
- declare const userGetOAuth2Applications: <ThrowOnError extends boolean = false>(options?: Options<UserGetOAuth2ApplicationsData, ThrowOnError>) => RequestResult<UserGetOAuth2ApplicationsResponses, UserGetOAuth2ApplicationsErrors, ThrowOnError, "fields">;
21691
+ declare const userGetOAuth2Applications: <ThrowOnError extends boolean = false>(options?: Options<UserGetOAuth2ApplicationsData, ThrowOnError>) => RequestResult<UserGetOAuth2ApplicationsResponses, UserGetOAuth2ApplicationsErrors, ThrowOnError>;
21737
21692
  /**
21738
21693
  * Creates a new OAuth2 application
21739
21694
  */
21740
- declare const userCreateOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserCreateOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserCreateOAuth2ApplicationResponses, UserCreateOAuth2ApplicationErrors, ThrowOnError, "fields">;
21695
+ declare const userCreateOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserCreateOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserCreateOAuth2ApplicationResponses, UserCreateOAuth2ApplicationErrors, ThrowOnError>;
21741
21696
  /**
21742
21697
  * Delete an OAuth2 application
21743
21698
  */
21744
- declare const userDeleteOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserDeleteOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserDeleteOAuth2ApplicationResponses, UserDeleteOAuth2ApplicationErrors, ThrowOnError, "fields">;
21699
+ declare const userDeleteOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserDeleteOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserDeleteOAuth2ApplicationResponses, UserDeleteOAuth2ApplicationErrors, ThrowOnError>;
21745
21700
  /**
21746
21701
  * Get an OAuth2 application
21747
21702
  */
21748
- declare const userGetOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserGetOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserGetOAuth2ApplicationResponses, UserGetOAuth2ApplicationErrors, ThrowOnError, "fields">;
21703
+ declare const userGetOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserGetOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserGetOAuth2ApplicationResponses, UserGetOAuth2ApplicationErrors, ThrowOnError>;
21749
21704
  /**
21750
21705
  * Update an OAuth2 application, this includes regenerating the client secret
21751
21706
  */
21752
- declare const userUpdateOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserUpdateOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserUpdateOAuth2ApplicationResponses, UserUpdateOAuth2ApplicationErrors, ThrowOnError, "fields">;
21707
+ declare const userUpdateOAuth2Application: <ThrowOnError extends boolean = false>(options: Options<UserUpdateOAuth2ApplicationData, ThrowOnError>) => RequestResult<UserUpdateOAuth2ApplicationResponses, UserUpdateOAuth2ApplicationErrors, ThrowOnError>;
21753
21708
  /**
21754
21709
  * Delete avatar of the current user. It will be replaced by a default one
21755
21710
  */
21756
- declare const userDeleteAvatar: <ThrowOnError extends boolean = false>(options?: Options<UserDeleteAvatarData, ThrowOnError>) => RequestResult<UserDeleteAvatarResponses, UserDeleteAvatarErrors, ThrowOnError, "fields">;
21711
+ declare const userDeleteAvatar: <ThrowOnError extends boolean = false>(options?: Options<UserDeleteAvatarData, ThrowOnError>) => RequestResult<UserDeleteAvatarResponses, UserDeleteAvatarErrors, ThrowOnError>;
21757
21712
  /**
21758
21713
  * Update avatar of the current user
21759
21714
  */
21760
- declare const userUpdateAvatar: <ThrowOnError extends boolean = false>(options?: Options<UserUpdateAvatarData, ThrowOnError>) => RequestResult<UserUpdateAvatarResponses, UserUpdateAvatarErrors, ThrowOnError, "fields">;
21715
+ declare const userUpdateAvatar: <ThrowOnError extends boolean = false>(options?: Options<UserUpdateAvatarData, ThrowOnError>) => RequestResult<UserUpdateAvatarResponses, UserUpdateAvatarErrors, ThrowOnError>;
21761
21716
  /**
21762
21717
  * Blocks a user from the doer
21763
21718
  */
21764
- declare const userBlockUser: <ThrowOnError extends boolean = false>(options: Options<UserBlockUserData, ThrowOnError>) => RequestResult<UserBlockUserResponses, UserBlockUserErrors, ThrowOnError, "fields">;
21719
+ declare const userBlockUser: <ThrowOnError extends boolean = false>(options: Options<UserBlockUserData, ThrowOnError>) => RequestResult<UserBlockUserResponses, UserBlockUserErrors, ThrowOnError>;
21765
21720
  /**
21766
21721
  * Delete email addresses from the current user's account
21767
21722
  */
21768
- declare const userDeleteEmail: <ThrowOnError extends boolean = false>(options?: Options<UserDeleteEmailData, ThrowOnError>) => RequestResult<UserDeleteEmailResponses, UserDeleteEmailErrors, ThrowOnError, "fields">;
21723
+ declare const userDeleteEmail: <ThrowOnError extends boolean = false>(options?: Options<UserDeleteEmailData, ThrowOnError>) => RequestResult<UserDeleteEmailResponses, UserDeleteEmailErrors, ThrowOnError>;
21769
21724
  /**
21770
21725
  * List all email addresses of the current user
21771
21726
  */
21772
- declare const userListEmails: <ThrowOnError extends boolean = false>(options?: Options<UserListEmailsData, ThrowOnError>) => RequestResult<UserListEmailsResponses, UserListEmailsErrors, ThrowOnError, "fields">;
21727
+ declare const userListEmails: <ThrowOnError extends boolean = false>(options?: Options<UserListEmailsData, ThrowOnError>) => RequestResult<UserListEmailsResponses, UserListEmailsErrors, ThrowOnError>;
21773
21728
  /**
21774
21729
  * Add an email addresses to the current user's account
21775
21730
  */
21776
- declare const userAddEmail: <ThrowOnError extends boolean = false>(options?: Options<UserAddEmailData, ThrowOnError>) => RequestResult<UserAddEmailResponses, UserAddEmailErrors, ThrowOnError, "fields">;
21731
+ declare const userAddEmail: <ThrowOnError extends boolean = false>(options?: Options<UserAddEmailData, ThrowOnError>) => RequestResult<UserAddEmailResponses, UserAddEmailErrors, ThrowOnError>;
21777
21732
  /**
21778
21733
  * List the authenticated user's followers
21779
21734
  */
21780
- declare const userCurrentListFollowers: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListFollowersData, ThrowOnError>) => RequestResult<UserCurrentListFollowersResponses, UserCurrentListFollowersErrors, ThrowOnError, "fields">;
21735
+ declare const userCurrentListFollowers: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListFollowersData, ThrowOnError>) => RequestResult<UserCurrentListFollowersResponses, UserCurrentListFollowersErrors, ThrowOnError>;
21781
21736
  /**
21782
21737
  * List the users that the authenticated user is following
21783
21738
  */
21784
- declare const userCurrentListFollowing: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListFollowingData, ThrowOnError>) => RequestResult<UserCurrentListFollowingResponses, UserCurrentListFollowingErrors, ThrowOnError, "fields">;
21739
+ declare const userCurrentListFollowing: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListFollowingData, ThrowOnError>) => RequestResult<UserCurrentListFollowingResponses, UserCurrentListFollowingErrors, ThrowOnError>;
21785
21740
  /**
21786
21741
  * Unfollow a user
21787
21742
  */
21788
- declare const userCurrentDeleteFollow: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteFollowData, ThrowOnError>) => RequestResult<UserCurrentDeleteFollowResponses, UserCurrentDeleteFollowErrors, ThrowOnError, "fields">;
21743
+ declare const userCurrentDeleteFollow: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteFollowData, ThrowOnError>) => RequestResult<UserCurrentDeleteFollowResponses, UserCurrentDeleteFollowErrors, ThrowOnError>;
21789
21744
  /**
21790
21745
  * Check whether a user is followed by the authenticated user
21791
21746
  */
21792
- declare const userCurrentCheckFollowing: <ThrowOnError extends boolean = false>(options: Options<UserCurrentCheckFollowingData, ThrowOnError>) => RequestResult<UserCurrentCheckFollowingResponses, UserCurrentCheckFollowingErrors, ThrowOnError, "fields">;
21747
+ declare const userCurrentCheckFollowing: <ThrowOnError extends boolean = false>(options: Options<UserCurrentCheckFollowingData, ThrowOnError>) => RequestResult<UserCurrentCheckFollowingResponses, UserCurrentCheckFollowingErrors, ThrowOnError>;
21793
21748
  /**
21794
21749
  * Follow a user
21795
21750
  */
21796
- declare const userCurrentPutFollow: <ThrowOnError extends boolean = false>(options: Options<UserCurrentPutFollowData, ThrowOnError>) => RequestResult<UserCurrentPutFollowResponses, UserCurrentPutFollowErrors, ThrowOnError, "fields">;
21751
+ declare const userCurrentPutFollow: <ThrowOnError extends boolean = false>(options: Options<UserCurrentPutFollowData, ThrowOnError>) => RequestResult<UserCurrentPutFollowResponses, UserCurrentPutFollowErrors, ThrowOnError>;
21797
21752
  /**
21798
21753
  * Get a Token to verify
21799
21754
  */
21800
- declare const getVerificationToken: <ThrowOnError extends boolean = false>(options?: Options<GetVerificationTokenData, ThrowOnError>) => RequestResult<GetVerificationTokenResponses, GetVerificationTokenErrors, ThrowOnError, "fields">;
21755
+ declare const getVerificationToken: <ThrowOnError extends boolean = false>(options?: Options<GetVerificationTokenData, ThrowOnError>) => RequestResult<GetVerificationTokenResponses, GetVerificationTokenErrors, ThrowOnError>;
21801
21756
  /**
21802
21757
  * Verify a GPG key
21803
21758
  */
21804
- declare const userVerifyGpgKey: <ThrowOnError extends boolean = false>(options?: Options<UserVerifyGpgKeyData, ThrowOnError>) => RequestResult<UserVerifyGpgKeyResponses, UserVerifyGpgKeyErrors, ThrowOnError, "fields">;
21759
+ declare const userVerifyGpgKey: <ThrowOnError extends boolean = false>(options?: Options<UserVerifyGpgKeyData, ThrowOnError>) => RequestResult<UserVerifyGpgKeyResponses, UserVerifyGpgKeyErrors, ThrowOnError>;
21805
21760
  /**
21806
21761
  * List the authenticated user's GPG keys
21807
21762
  */
21808
- declare const userCurrentListGpgKeys: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListGpgKeysData, ThrowOnError>) => RequestResult<UserCurrentListGpgKeysResponses, UserCurrentListGpgKeysErrors, ThrowOnError, "fields">;
21763
+ declare const userCurrentListGpgKeys: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListGpgKeysData, ThrowOnError>) => RequestResult<UserCurrentListGpgKeysResponses, UserCurrentListGpgKeysErrors, ThrowOnError>;
21809
21764
  /**
21810
21765
  * Add a GPG public key to current user's account
21811
21766
  */
21812
- declare const userCurrentPostGpgKey: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentPostGpgKeyData, ThrowOnError>) => RequestResult<UserCurrentPostGpgKeyResponses, UserCurrentPostGpgKeyErrors, ThrowOnError, "fields">;
21767
+ declare const userCurrentPostGpgKey: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentPostGpgKeyData, ThrowOnError>) => RequestResult<UserCurrentPostGpgKeyResponses, UserCurrentPostGpgKeyErrors, ThrowOnError>;
21813
21768
  /**
21814
21769
  * Remove a GPG public key from current user's account
21815
21770
  */
21816
- declare const userCurrentDeleteGpgKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteGpgKeyData, ThrowOnError>) => RequestResult<UserCurrentDeleteGpgKeyResponses, UserCurrentDeleteGpgKeyErrors, ThrowOnError, "fields">;
21771
+ declare const userCurrentDeleteGpgKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteGpgKeyData, ThrowOnError>) => RequestResult<UserCurrentDeleteGpgKeyResponses, UserCurrentDeleteGpgKeyErrors, ThrowOnError>;
21817
21772
  /**
21818
21773
  * Get a GPG key
21819
21774
  */
21820
- declare const userCurrentGetGpgKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentGetGpgKeyData, ThrowOnError>) => RequestResult<UserCurrentGetGpgKeyResponses, UserCurrentGetGpgKeyErrors, ThrowOnError, "fields">;
21775
+ declare const userCurrentGetGpgKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentGetGpgKeyData, ThrowOnError>) => RequestResult<UserCurrentGetGpgKeyResponses, UserCurrentGetGpgKeyErrors, ThrowOnError>;
21821
21776
  /**
21822
21777
  * List the authenticated user's webhooks
21823
21778
  */
21824
- declare const userListHooks: <ThrowOnError extends boolean = false>(options?: Options<UserListHooksData, ThrowOnError>) => RequestResult<UserListHooksResponses, UserListHooksErrors, ThrowOnError, "fields">;
21779
+ declare const userListHooks: <ThrowOnError extends boolean = false>(options?: Options<UserListHooksData, ThrowOnError>) => RequestResult<UserListHooksResponses, UserListHooksErrors, ThrowOnError>;
21825
21780
  /**
21826
21781
  * Create a hook
21827
21782
  */
21828
- declare const userCreateHook: <ThrowOnError extends boolean = false>(options: Options<UserCreateHookData, ThrowOnError>) => RequestResult<UserCreateHookResponses, UserCreateHookErrors, ThrowOnError, "fields">;
21783
+ declare const userCreateHook: <ThrowOnError extends boolean = false>(options: Options<UserCreateHookData, ThrowOnError>) => RequestResult<UserCreateHookResponses, UserCreateHookErrors, ThrowOnError>;
21829
21784
  /**
21830
21785
  * Delete a hook
21831
21786
  */
21832
- declare const userDeleteHook: <ThrowOnError extends boolean = false>(options: Options<UserDeleteHookData, ThrowOnError>) => RequestResult<UserDeleteHookResponses, UserDeleteHookErrors, ThrowOnError, "fields">;
21787
+ declare const userDeleteHook: <ThrowOnError extends boolean = false>(options: Options<UserDeleteHookData, ThrowOnError>) => RequestResult<UserDeleteHookResponses, UserDeleteHookErrors, ThrowOnError>;
21833
21788
  /**
21834
21789
  * Get a hook
21835
21790
  */
21836
- declare const userGetHook: <ThrowOnError extends boolean = false>(options: Options<UserGetHookData, ThrowOnError>) => RequestResult<UserGetHookResponses, UserGetHookErrors, ThrowOnError, "fields">;
21791
+ declare const userGetHook: <ThrowOnError extends boolean = false>(options: Options<UserGetHookData, ThrowOnError>) => RequestResult<UserGetHookResponses, UserGetHookErrors, ThrowOnError>;
21837
21792
  /**
21838
21793
  * Update a hook
21839
21794
  */
21840
- declare const userEditHook: <ThrowOnError extends boolean = false>(options: Options<UserEditHookData, ThrowOnError>) => RequestResult<UserEditHookResponses, UserEditHookErrors, ThrowOnError, "fields">;
21795
+ declare const userEditHook: <ThrowOnError extends boolean = false>(options: Options<UserEditHookData, ThrowOnError>) => RequestResult<UserEditHookResponses, UserEditHookErrors, ThrowOnError>;
21841
21796
  /**
21842
21797
  * List the authenticated user's public keys
21843
21798
  */
21844
- declare const userCurrentListKeys: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListKeysData, ThrowOnError>) => RequestResult<UserCurrentListKeysResponses, UserCurrentListKeysErrors, ThrowOnError, "fields">;
21799
+ declare const userCurrentListKeys: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListKeysData, ThrowOnError>) => RequestResult<UserCurrentListKeysResponses, UserCurrentListKeysErrors, ThrowOnError>;
21845
21800
  /**
21846
21801
  * Create a public key
21847
21802
  */
21848
- declare const userCurrentPostKey: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentPostKeyData, ThrowOnError>) => RequestResult<UserCurrentPostKeyResponses, UserCurrentPostKeyErrors, ThrowOnError, "fields">;
21803
+ declare const userCurrentPostKey: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentPostKeyData, ThrowOnError>) => RequestResult<UserCurrentPostKeyResponses, UserCurrentPostKeyErrors, ThrowOnError>;
21849
21804
  /**
21850
21805
  * Delete a public key
21851
21806
  */
21852
- declare const userCurrentDeleteKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteKeyData, ThrowOnError>) => RequestResult<UserCurrentDeleteKeyResponses, UserCurrentDeleteKeyErrors, ThrowOnError, "fields">;
21807
+ declare const userCurrentDeleteKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteKeyData, ThrowOnError>) => RequestResult<UserCurrentDeleteKeyResponses, UserCurrentDeleteKeyErrors, ThrowOnError>;
21853
21808
  /**
21854
21809
  * Get a public key
21855
21810
  */
21856
- declare const userCurrentGetKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentGetKeyData, ThrowOnError>) => RequestResult<UserCurrentGetKeyResponses, UserCurrentGetKeyErrors, ThrowOnError, "fields">;
21811
+ declare const userCurrentGetKey: <ThrowOnError extends boolean = false>(options: Options<UserCurrentGetKeyData, ThrowOnError>) => RequestResult<UserCurrentGetKeyResponses, UserCurrentGetKeyErrors, ThrowOnError>;
21857
21812
  /**
21858
21813
  * List the authenticated user's blocked users
21859
21814
  */
21860
- declare const userListBlockedUsers: <ThrowOnError extends boolean = false>(options?: Options<UserListBlockedUsersData, ThrowOnError>) => RequestResult<UserListBlockedUsersResponses, UserListBlockedUsersErrors, ThrowOnError, "fields">;
21815
+ declare const userListBlockedUsers: <ThrowOnError extends boolean = false>(options?: Options<UserListBlockedUsersData, ThrowOnError>) => RequestResult<UserListBlockedUsersResponses, UserListBlockedUsersErrors, ThrowOnError>;
21861
21816
  /**
21862
21817
  * List the current user's organizations
21863
21818
  */
21864
- declare const orgListCurrentUserOrgs: <ThrowOnError extends boolean = false>(options?: Options<OrgListCurrentUserOrgsData, ThrowOnError>) => RequestResult<OrgListCurrentUserOrgsResponses, OrgListCurrentUserOrgsErrors, ThrowOnError, "fields">;
21819
+ declare const orgListCurrentUserOrgs: <ThrowOnError extends boolean = false>(options?: Options<OrgListCurrentUserOrgsData, ThrowOnError>) => RequestResult<OrgListCurrentUserOrgsResponses, OrgListCurrentUserOrgsErrors, ThrowOnError>;
21865
21820
  /**
21866
21821
  * Get quota information for the authenticated user
21867
21822
  */
21868
- declare const userGetQuota: <ThrowOnError extends boolean = false>(options?: Options<UserGetQuotaData, ThrowOnError>) => RequestResult<UserGetQuotaResponses, UserGetQuotaErrors, ThrowOnError, "fields">;
21823
+ declare const userGetQuota: <ThrowOnError extends boolean = false>(options?: Options<UserGetQuotaData, ThrowOnError>) => RequestResult<UserGetQuotaResponses, UserGetQuotaErrors, ThrowOnError>;
21869
21824
  /**
21870
21825
  * List the artifacts affecting the authenticated user's quota
21871
21826
  */
21872
- declare const userListQuotaArtifacts: <ThrowOnError extends boolean = false>(options?: Options<UserListQuotaArtifactsData, ThrowOnError>) => RequestResult<UserListQuotaArtifactsResponses, UserListQuotaArtifactsErrors, ThrowOnError, "fields">;
21827
+ declare const userListQuotaArtifacts: <ThrowOnError extends boolean = false>(options?: Options<UserListQuotaArtifactsData, ThrowOnError>) => RequestResult<UserListQuotaArtifactsResponses, UserListQuotaArtifactsErrors, ThrowOnError>;
21873
21828
  /**
21874
21829
  * List the attachments affecting the authenticated user's quota
21875
21830
  */
21876
- declare const userListQuotaAttachments: <ThrowOnError extends boolean = false>(options?: Options<UserListQuotaAttachmentsData, ThrowOnError>) => RequestResult<UserListQuotaAttachmentsResponses, UserListQuotaAttachmentsErrors, ThrowOnError, "fields">;
21831
+ declare const userListQuotaAttachments: <ThrowOnError extends boolean = false>(options?: Options<UserListQuotaAttachmentsData, ThrowOnError>) => RequestResult<UserListQuotaAttachmentsResponses, UserListQuotaAttachmentsErrors, ThrowOnError>;
21877
21832
  /**
21878
21833
  * Check if the authenticated user is over quota for a given subject
21879
21834
  */
21880
- declare const userCheckQuota: <ThrowOnError extends boolean = false>(options: Options<UserCheckQuotaData, ThrowOnError>) => RequestResult<UserCheckQuotaResponses, UserCheckQuotaErrors, ThrowOnError, "fields">;
21835
+ declare const userCheckQuota: <ThrowOnError extends boolean = false>(options: Options<UserCheckQuotaData, ThrowOnError>) => RequestResult<UserCheckQuotaResponses, UserCheckQuotaErrors, ThrowOnError>;
21881
21836
  /**
21882
21837
  * List the packages affecting the authenticated user's quota
21883
21838
  */
21884
- declare const userListQuotaPackages: <ThrowOnError extends boolean = false>(options?: Options<UserListQuotaPackagesData, ThrowOnError>) => RequestResult<UserListQuotaPackagesResponses, UserListQuotaPackagesErrors, ThrowOnError, "fields">;
21839
+ declare const userListQuotaPackages: <ThrowOnError extends boolean = false>(options?: Options<UserListQuotaPackagesData, ThrowOnError>) => RequestResult<UserListQuotaPackagesResponses, UserListQuotaPackagesErrors, ThrowOnError>;
21885
21840
  /**
21886
21841
  * List the repos that the authenticated user owns
21887
21842
  */
21888
- declare const userCurrentListRepos: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListReposData, ThrowOnError>) => RequestResult<UserCurrentListReposResponses, UserCurrentListReposErrors, ThrowOnError, "fields">;
21843
+ declare const userCurrentListRepos: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListReposData, ThrowOnError>) => RequestResult<UserCurrentListReposResponses, UserCurrentListReposErrors, ThrowOnError>;
21889
21844
  /**
21890
21845
  * Create a repository
21891
21846
  */
21892
- declare const createCurrentUserRepo: <ThrowOnError extends boolean = false>(options?: Options<CreateCurrentUserRepoData, ThrowOnError>) => RequestResult<CreateCurrentUserRepoResponses, CreateCurrentUserRepoErrors, ThrowOnError, "fields">;
21847
+ declare const createCurrentUserRepo: <ThrowOnError extends boolean = false>(options?: Options<CreateCurrentUserRepoData, ThrowOnError>) => RequestResult<CreateCurrentUserRepoResponses, CreateCurrentUserRepoErrors, ThrowOnError>;
21893
21848
  /**
21894
21849
  * Get current user's account settings
21895
21850
  */
21896
- declare const getUserSettings: <ThrowOnError extends boolean = false>(options?: Options<GetUserSettingsData, ThrowOnError>) => RequestResult<GetUserSettingsResponses, GetUserSettingsErrors, ThrowOnError, "fields">;
21851
+ declare const getUserSettings: <ThrowOnError extends boolean = false>(options?: Options<GetUserSettingsData, ThrowOnError>) => RequestResult<GetUserSettingsResponses, GetUserSettingsErrors, ThrowOnError>;
21897
21852
  /**
21898
21853
  * Update settings in current user's account
21899
21854
  */
21900
- declare const updateUserSettings: <ThrowOnError extends boolean = false>(options?: Options<UpdateUserSettingsData, ThrowOnError>) => RequestResult<UpdateUserSettingsResponses, UpdateUserSettingsErrors, ThrowOnError, "fields">;
21855
+ declare const updateUserSettings: <ThrowOnError extends boolean = false>(options?: Options<UpdateUserSettingsData, ThrowOnError>) => RequestResult<UpdateUserSettingsResponses, UpdateUserSettingsErrors, ThrowOnError>;
21901
21856
  /**
21902
21857
  * The repos that the authenticated user has starred
21903
21858
  */
21904
- declare const userCurrentListStarred: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListStarredData, ThrowOnError>) => RequestResult<UserCurrentListStarredResponses, UserCurrentListStarredErrors, ThrowOnError, "fields">;
21859
+ declare const userCurrentListStarred: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListStarredData, ThrowOnError>) => RequestResult<UserCurrentListStarredResponses, UserCurrentListStarredErrors, ThrowOnError>;
21905
21860
  /**
21906
21861
  * Unstar the given repo
21907
21862
  */
21908
- declare const userCurrentDeleteStar: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteStarData, ThrowOnError>) => RequestResult<UserCurrentDeleteStarResponses, UserCurrentDeleteStarErrors, ThrowOnError, "fields">;
21863
+ declare const userCurrentDeleteStar: <ThrowOnError extends boolean = false>(options: Options<UserCurrentDeleteStarData, ThrowOnError>) => RequestResult<UserCurrentDeleteStarResponses, UserCurrentDeleteStarErrors, ThrowOnError>;
21909
21864
  /**
21910
21865
  * Whether the authenticated is starring the repo
21911
21866
  */
21912
- declare const userCurrentCheckStarring: <ThrowOnError extends boolean = false>(options: Options<UserCurrentCheckStarringData, ThrowOnError>) => RequestResult<UserCurrentCheckStarringResponses, UserCurrentCheckStarringErrors, ThrowOnError, "fields">;
21867
+ declare const userCurrentCheckStarring: <ThrowOnError extends boolean = false>(options: Options<UserCurrentCheckStarringData, ThrowOnError>) => RequestResult<UserCurrentCheckStarringResponses, UserCurrentCheckStarringErrors, ThrowOnError>;
21913
21868
  /**
21914
21869
  * Star the given repo
21915
21870
  */
21916
- declare const userCurrentPutStar: <ThrowOnError extends boolean = false>(options: Options<UserCurrentPutStarData, ThrowOnError>) => RequestResult<UserCurrentPutStarResponses, UserCurrentPutStarErrors, ThrowOnError, "fields">;
21871
+ declare const userCurrentPutStar: <ThrowOnError extends boolean = false>(options: Options<UserCurrentPutStarData, ThrowOnError>) => RequestResult<UserCurrentPutStarResponses, UserCurrentPutStarErrors, ThrowOnError>;
21917
21872
  /**
21918
21873
  * Get list of all existing stopwatches
21919
21874
  */
21920
- declare const userGetStopWatches: <ThrowOnError extends boolean = false>(options?: Options<UserGetStopWatchesData, ThrowOnError>) => RequestResult<UserGetStopWatchesResponses, UserGetStopWatchesErrors, ThrowOnError, "fields">;
21875
+ declare const userGetStopWatches: <ThrowOnError extends boolean = false>(options?: Options<UserGetStopWatchesData, ThrowOnError>) => RequestResult<UserGetStopWatchesResponses, UserGetStopWatchesErrors, ThrowOnError>;
21921
21876
  /**
21922
21877
  * List repositories watched by the authenticated user
21923
21878
  */
21924
- declare const userCurrentListSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListSubscriptionsData, ThrowOnError>) => RequestResult<UserCurrentListSubscriptionsResponses, UserCurrentListSubscriptionsErrors, ThrowOnError, "fields">;
21879
+ declare const userCurrentListSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentListSubscriptionsData, ThrowOnError>) => RequestResult<UserCurrentListSubscriptionsResponses, UserCurrentListSubscriptionsErrors, ThrowOnError>;
21925
21880
  /**
21926
21881
  * List all the teams a user belongs to
21927
21882
  */
21928
- declare const userListTeams: <ThrowOnError extends boolean = false>(options?: Options<UserListTeamsData, ThrowOnError>) => RequestResult<UserListTeamsResponses, UserListTeamsErrors, ThrowOnError, "fields">;
21883
+ declare const userListTeams: <ThrowOnError extends boolean = false>(options?: Options<UserListTeamsData, ThrowOnError>) => RequestResult<UserListTeamsResponses, UserListTeamsErrors, ThrowOnError>;
21929
21884
  /**
21930
21885
  * List the current user's tracked times
21931
21886
  */
21932
- declare const userCurrentTrackedTimes: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentTrackedTimesData, ThrowOnError>) => RequestResult<UserCurrentTrackedTimesResponses, UserCurrentTrackedTimesErrors, ThrowOnError, "fields">;
21887
+ declare const userCurrentTrackedTimes: <ThrowOnError extends boolean = false>(options?: Options<UserCurrentTrackedTimesData, ThrowOnError>) => RequestResult<UserCurrentTrackedTimesResponses, UserCurrentTrackedTimesErrors, ThrowOnError>;
21933
21888
  /**
21934
21889
  * Unblocks a user from the doer
21935
21890
  */
21936
- declare const userUnblockUser: <ThrowOnError extends boolean = false>(options: Options<UserUnblockUserData, ThrowOnError>) => RequestResult<UserUnblockUserResponses, UserUnblockUserErrors, ThrowOnError, "fields">;
21891
+ declare const userUnblockUser: <ThrowOnError extends boolean = false>(options: Options<UserUnblockUserData, ThrowOnError>) => RequestResult<UserUnblockUserResponses, UserUnblockUserErrors, ThrowOnError>;
21937
21892
  /**
21938
21893
  * Search for users
21939
21894
  */
21940
- declare const userSearch: <ThrowOnError extends boolean = false>(options?: Options<UserSearchData, ThrowOnError>) => RequestResult<UserSearchResponses, unknown, ThrowOnError, "fields">;
21895
+ declare const userSearch: <ThrowOnError extends boolean = false>(options?: Options<UserSearchData, ThrowOnError>) => RequestResult<UserSearchResponses, unknown, ThrowOnError>;
21941
21896
  /**
21942
21897
  * Get a user
21943
21898
  */
21944
- declare const userGet: <ThrowOnError extends boolean = false>(options: Options<UserGetData, ThrowOnError>) => RequestResult<UserGetResponses, UserGetErrors, ThrowOnError, "fields">;
21899
+ declare const userGet: <ThrowOnError extends boolean = false>(options: Options<UserGetData, ThrowOnError>) => RequestResult<UserGetResponses, UserGetErrors, ThrowOnError>;
21945
21900
  /**
21946
21901
  * List a user's activity feeds
21947
21902
  */
21948
- declare const userListActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<UserListActivityFeedsData, ThrowOnError>) => RequestResult<UserListActivityFeedsResponses, UserListActivityFeedsErrors, ThrowOnError, "fields">;
21903
+ declare const userListActivityFeeds: <ThrowOnError extends boolean = false>(options: Options<UserListActivityFeedsData, ThrowOnError>) => RequestResult<UserListActivityFeedsResponses, UserListActivityFeedsErrors, ThrowOnError>;
21949
21904
  /**
21950
21905
  * List the given user's followers
21951
21906
  */
21952
- declare const userListFollowers: <ThrowOnError extends boolean = false>(options: Options<UserListFollowersData, ThrowOnError>) => RequestResult<UserListFollowersResponses, UserListFollowersErrors, ThrowOnError, "fields">;
21907
+ declare const userListFollowers: <ThrowOnError extends boolean = false>(options: Options<UserListFollowersData, ThrowOnError>) => RequestResult<UserListFollowersResponses, UserListFollowersErrors, ThrowOnError>;
21953
21908
  /**
21954
21909
  * List the users that the given user is following
21955
21910
  */
21956
- declare const userListFollowing: <ThrowOnError extends boolean = false>(options: Options<UserListFollowingData, ThrowOnError>) => RequestResult<UserListFollowingResponses, UserListFollowingErrors, ThrowOnError, "fields">;
21911
+ declare const userListFollowing: <ThrowOnError extends boolean = false>(options: Options<UserListFollowingData, ThrowOnError>) => RequestResult<UserListFollowingResponses, UserListFollowingErrors, ThrowOnError>;
21957
21912
  /**
21958
21913
  * Check if one user is following another user
21959
21914
  */
21960
- declare const userCheckFollowing: <ThrowOnError extends boolean = false>(options: Options<UserCheckFollowingData, ThrowOnError>) => RequestResult<UserCheckFollowingResponses, UserCheckFollowingErrors, ThrowOnError, "fields">;
21915
+ declare const userCheckFollowing: <ThrowOnError extends boolean = false>(options: Options<UserCheckFollowingData, ThrowOnError>) => RequestResult<UserCheckFollowingResponses, UserCheckFollowingErrors, ThrowOnError>;
21961
21916
  /**
21962
21917
  * List the given user's GPG keys
21963
21918
  */
21964
- declare const userListGpgKeys: <ThrowOnError extends boolean = false>(options: Options<UserListGpgKeysData, ThrowOnError>) => RequestResult<UserListGpgKeysResponses, UserListGpgKeysErrors, ThrowOnError, "fields">;
21919
+ declare const userListGpgKeys: <ThrowOnError extends boolean = false>(options: Options<UserListGpgKeysData, ThrowOnError>) => RequestResult<UserListGpgKeysResponses, UserListGpgKeysErrors, ThrowOnError>;
21965
21920
  /**
21966
21921
  * Get a user's heatmap
21967
21922
  */
21968
- declare const userGetHeatmapData: <ThrowOnError extends boolean = false>(options: Options<UserGetHeatmapDataData, ThrowOnError>) => RequestResult<UserGetHeatmapDataResponses, UserGetHeatmapDataErrors, ThrowOnError, "fields">;
21923
+ declare const userGetHeatmapData: <ThrowOnError extends boolean = false>(options: Options<UserGetHeatmapDataData, ThrowOnError>) => RequestResult<UserGetHeatmapDataResponses, UserGetHeatmapDataErrors, ThrowOnError>;
21969
21924
  /**
21970
21925
  * List the given user's public keys
21971
21926
  */
21972
- declare const userListKeys: <ThrowOnError extends boolean = false>(options: Options<UserListKeysData, ThrowOnError>) => RequestResult<UserListKeysResponses, UserListKeysErrors, ThrowOnError, "fields">;
21927
+ declare const userListKeys: <ThrowOnError extends boolean = false>(options: Options<UserListKeysData, ThrowOnError>) => RequestResult<UserListKeysResponses, UserListKeysErrors, ThrowOnError>;
21973
21928
  /**
21974
21929
  * List a user's organizations
21975
21930
  */
21976
- declare const orgListUserOrgs: <ThrowOnError extends boolean = false>(options: Options<OrgListUserOrgsData, ThrowOnError>) => RequestResult<OrgListUserOrgsResponses, OrgListUserOrgsErrors, ThrowOnError, "fields">;
21931
+ declare const orgListUserOrgs: <ThrowOnError extends boolean = false>(options: Options<OrgListUserOrgsData, ThrowOnError>) => RequestResult<OrgListUserOrgsResponses, OrgListUserOrgsErrors, ThrowOnError>;
21977
21932
  /**
21978
21933
  * Get user permissions in organization
21979
21934
  */
21980
- declare const orgGetUserPermissions: <ThrowOnError extends boolean = false>(options: Options<OrgGetUserPermissionsData, ThrowOnError>) => RequestResult<OrgGetUserPermissionsResponses, OrgGetUserPermissionsErrors, ThrowOnError, "fields">;
21935
+ declare const orgGetUserPermissions: <ThrowOnError extends boolean = false>(options: Options<OrgGetUserPermissionsData, ThrowOnError>) => RequestResult<OrgGetUserPermissionsResponses, OrgGetUserPermissionsErrors, ThrowOnError>;
21981
21936
  /**
21982
21937
  * List the repos owned by the given user
21983
21938
  */
21984
- declare const userListRepos: <ThrowOnError extends boolean = false>(options: Options<UserListReposData, ThrowOnError>) => RequestResult<UserListReposResponses, UserListReposErrors, ThrowOnError, "fields">;
21939
+ declare const userListRepos: <ThrowOnError extends boolean = false>(options: Options<UserListReposData, ThrowOnError>) => RequestResult<UserListReposResponses, UserListReposErrors, ThrowOnError>;
21985
21940
  /**
21986
21941
  * The repos that the given user has starred
21987
21942
  */
21988
- declare const userListStarred: <ThrowOnError extends boolean = false>(options: Options<UserListStarredData, ThrowOnError>) => RequestResult<UserListStarredResponses, UserListStarredErrors, ThrowOnError, "fields">;
21943
+ declare const userListStarred: <ThrowOnError extends boolean = false>(options: Options<UserListStarredData, ThrowOnError>) => RequestResult<UserListStarredResponses, UserListStarredErrors, ThrowOnError>;
21989
21944
  /**
21990
21945
  * List the repositories watched by a user
21991
21946
  */
21992
- declare const userListSubscriptions: <ThrowOnError extends boolean = false>(options: Options<UserListSubscriptionsData, ThrowOnError>) => RequestResult<UserListSubscriptionsResponses, UserListSubscriptionsErrors, ThrowOnError, "fields">;
21947
+ declare const userListSubscriptions: <ThrowOnError extends boolean = false>(options: Options<UserListSubscriptionsData, ThrowOnError>) => RequestResult<UserListSubscriptionsResponses, UserListSubscriptionsErrors, ThrowOnError>;
21993
21948
  /**
21994
21949
  * List the specified user's access tokens
21995
21950
  */
21996
- declare const userGetTokens: <ThrowOnError extends boolean = false>(options: Options<UserGetTokensData, ThrowOnError>) => RequestResult<UserGetTokensResponses, UserGetTokensErrors, ThrowOnError, "fields">;
21951
+ declare const userGetTokens: <ThrowOnError extends boolean = false>(options: Options<UserGetTokensData, ThrowOnError>) => RequestResult<UserGetTokensResponses, UserGetTokensErrors, ThrowOnError>;
21997
21952
  /**
21998
21953
  * Generate an access token for the specified user
21999
21954
  */
22000
- declare const userCreateToken: <ThrowOnError extends boolean = false>(options: Options<UserCreateTokenData, ThrowOnError>) => RequestResult<UserCreateTokenResponses, UserCreateTokenErrors, ThrowOnError, "fields">;
21955
+ declare const userCreateToken: <ThrowOnError extends boolean = false>(options: Options<UserCreateTokenData, ThrowOnError>) => RequestResult<UserCreateTokenResponses, UserCreateTokenErrors, ThrowOnError>;
22001
21956
  /**
22002
21957
  * Delete an access token from the specified user's account
22003
21958
  */
22004
- declare const userDeleteAccessToken: <ThrowOnError extends boolean = false>(options: Options<UserDeleteAccessTokenData, ThrowOnError>) => RequestResult<UserDeleteAccessTokenResponses, UserDeleteAccessTokenErrors, ThrowOnError, "fields">;
21959
+ declare const userDeleteAccessToken: <ThrowOnError extends boolean = false>(options: Options<UserDeleteAccessTokenData, ThrowOnError>) => RequestResult<UserDeleteAccessTokenResponses, UserDeleteAccessTokenErrors, ThrowOnError>;
22005
21960
  /**
22006
21961
  * Returns the version of the running application
22007
21962
  */
22008
- declare const getVersion: <ThrowOnError extends boolean = false>(options?: Options<GetVersionData, ThrowOnError>) => RequestResult<GetVersionResponses, unknown, ThrowOnError, "fields">;
21963
+ declare const getVersion: <ThrowOnError extends boolean = false>(options?: Options<GetVersionData, ThrowOnError>) => RequestResult<GetVersionResponses, unknown, ThrowOnError>;
22009
21964
 
22010
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 };