SYMBOL INDEX (1600 symbols across 104 files) FILE: docs/.vitepress/shared.ts constant HOSTNAME (line 5) | const HOSTNAME = "https://openapi-ts.dev"; method transformPageData (line 49) | transformPageData({ relativePath, frontmatter }) { FILE: docs/.vitepress/theme/index.ts method enhanceApp (line 11) | enhanceApp({ app, router, siteData }) { FILE: docs/scripts/update-contributors.js constant MAINTAINERS (line 5) | const MAINTAINERS = { constant CONTRIBUTORS (line 14) | const CONTRIBUTORS = new Set([ constant ONE_WEEK (line 198) | const ONE_WEEK = 1000 * 60 * 60 * 24; constant FOUR_WEEKS (line 199) | const FOUR_WEEKS = 4 * ONE_WEEK; constant CONTRIBUTORS_JSON (line 201) | const CONTRIBUTORS_JSON = new URL("../data/contributors.json", import.me... class UserFetchError (line 205) | class UserFetchError extends Error { method constructor (line 210) | constructor(message, response) { method notFound (line 219) | get notFound() { constant BACKOFF_INTERVALS_MINUTES (line 224) | const BACKOFF_INTERVALS_MINUTES = [1, 2, 3, 5]; constant MAX_RETRIES (line 225) | const MAX_RETRIES = BACKOFF_INTERVALS_MINUTES.length - 1; function rateLimitDelay (line 230) | async function rateLimitDelay({ retryAfter, ratelimitReset, ratelimitRem... function fetchUserInfo (line 248) | async function fetchUserInfo(username, retryCount = 0) { function upsert (line 300) | function upsert(list, userData) { function main (line 309) | async function main() { function pluralize (line 358) | function pluralize(count, singular, plural) { FILE: packages/openapi-fetch/examples/nextjs/app/layout.tsx function RootLayout (line 8) | function RootLayout({ FILE: packages/openapi-fetch/examples/nextjs/app/page.tsx function getFact (line 4) | async function getFact() { function Home (line 12) | async function Home() { FILE: packages/openapi-fetch/examples/nextjs/lib/api/v1.d.ts type paths (line 6) | interface paths { type webhooks (line 68) | type webhooks = Record; type components (line 69) | interface components { type $defs (line 136) | type $defs = Record; type operations (line 137) | interface operations { FILE: packages/openapi-fetch/examples/sveltekit/src/hooks.server.ts method filterSerializedResponseHeaders (line 5) | filterSerializedResponseHeaders(name) { FILE: packages/openapi-fetch/examples/sveltekit/src/lib/api/v1.d.ts type paths (line 6) | interface paths { type webhooks (line 68) | type webhooks = Record; type components (line 69) | interface components { type $defs (line 136) | type $defs = Record; type operations (line 137) | interface operations { FILE: packages/openapi-fetch/examples/vue-3/src/composables/catfact-query.ts type AppError (line 6) | interface AppError { type FactCatQueryOptions (line 11) | type FactCatQueryOptions = ParamsOption & RequestBodyOption; type CatFactResponse (line 13) | type CatFactResponse = function execute (line 24) | async function execute() { FILE: packages/openapi-fetch/examples/vue-3/src/generated/catfact.d.ts type paths (line 6) | interface paths { type webhooks (line 68) | type webhooks = Record; type components (line 69) | interface components { type $defs (line 136) | type $defs = Record; type operations (line 137) | interface operations { FILE: packages/openapi-fetch/playwright.config.ts constant PORT (line 3) | const PORT = Number.parseInt(process.env.PORT || 4173 || "", 10); FILE: packages/openapi-fetch/src/index.d.ts type ClientOptions (line 17) | interface ClientOptions extends Omit { type HeadersOptions (line 35) | type HeadersOptions = type QuerySerializer (line 39) | type QuerySerializer = ( type QuerySerializerOptions (line 44) | type QuerySerializerOptions = { type BodySerializer (line 69) | type BodySerializer = (body: OperationRequestBodyContent) => any; type PathSerializer (line 71) | type PathSerializer = (pathname: string, pathParams: Record = { type ParseAs (line 80) | type ParseAs = keyof BodyType; type ParseAsResponse (line 81) | type ParseAsResponse = Options extends { type DefaultParamsOption (line 87) | interface DefaultParamsOption { type ParamsOption (line 93) | type ParamsOption = T extends { type RequestBodyOption (line 102) | type RequestBodyOption = type FetchOptions (line 109) | type FetchOptions = RequestOptions & Omit, Options, Medi... type RequestOptions (line 124) | type RequestOptions = ParamsOption & type MergedOptions (line 136) | type MergedOptions = { type MiddlewareRequestParams (line 145) | interface MiddlewareRequestParams { type MiddlewareCallbackParams (line 152) | interface MiddlewareCallbackParams { type MiddlewareOnRequest (line 165) | type MiddlewareOnRequest = ( type MiddlewareOnResponse (line 168) | type MiddlewareOnResponse = ( type MiddlewareOnError (line 171) | type MiddlewareOnError = ( type Middleware (line 175) | type Middleware = type MaybeOptionalInit (line 193) | type MaybeOptionalInit = type InitParam (line 202) | type InitParam = type ClientMethod (line 205) | type ClientMethod< type ClientRequestMethod (line 214) | type ClientRequestMethod, Media ... type Client (line 230) | interface Client { type ClientPathsWithMethod (line 254) | type ClientPathsWithMethod, Metho... type MethodResponse (line 257) | type MethodResponse< type PathBasedClient (line 271) | type PathBasedClient, Media e... FILE: packages/openapi-fetch/src/index.js constant PATH_PARAM_RE (line 2) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function randomID (line 16) | function randomID() { function createClient (line 24) | function createClient(clientOptions) { class PathCallForwarder (line 342) | class PathCallForwarder { method constructor (line 343) | constructor(client, url) { class PathClientProxyHandler (line 374) | class PathClientProxyHandler { method constructor (line 375) | constructor() { method get (line 380) | get(coreClient, url) { function wrapAsPathBasedClient (line 391) | function wrapAsPathBasedClient(coreClient) { function createPathBasedClient (line 417) | function createPathBasedClient(clientOptions) { function serializePrimitiveParam (line 427) | function serializePrimitiveParam(name, value, options) { function serializeObjectParam (line 443) | function serializeObjectParam(name, value, options) { function serializeArrayParam (line 490) | function serializeArrayParam(name, value, options) { function createQuerySerializer (line 536) | function createQuerySerializer(options) { function defaultPathSerializer (line 582) | function defaultPathSerializer(pathname, pathParams) { function defaultBodySerializer (line 624) | function defaultBodySerializer(body, headers) { function createFinalURL (line 644) | function createFinalURL(pathname, options) { function mergeHeaders (line 663) | function mergeHeaders(...allHeaders) { function removeTrailingSlash (line 689) | function removeTrailingSlash(url) { FILE: packages/openapi-fetch/test/bench/index.bench.js constant BASE_URL (line 9) | const BASE_URL = "https://api.test.local"; FILE: packages/openapi-fetch/test/common/create-client-e2e.test.js constant API_PORT (line 67) | const API_PORT = process.env.API_PORT || 4578; FILE: packages/openapi-fetch/test/common/create-client.test.ts function fireRequestAndGetContentType (line 64) | async function fireRequestAndGetContentType(options: { FILE: packages/openapi-fetch/test/common/params.test.ts type Resource (line 6) | type Resource = components["schemas"]["Resource"]; FILE: packages/openapi-fetch/test/common/request.test.ts type Resource (line 6) | type Resource = components["schemas"]["Resource"]; function fireRequestAndGetBodyInformation (line 99) | async function fireRequestAndGetBodyInformation(options: { class SpecialRequestImplementation (line 302) | class SpecialRequestImplementation extends Request {} class SpecialRequestImplementation (line 323) | class SpecialRequestImplementation extends Request {} function createCustomFetch (line 340) | function createCustomFetch(data: any) { FILE: packages/openapi-fetch/test/common/response.test.ts type Resource (line 6) | type Resource = components["schemas"]["Resource"]; type Error (line 7) | type Error = components["schemas"]["Error"]; FILE: packages/openapi-fetch/test/common/schemas/common.d.ts type paths (line 6) | interface paths { type webhooks (line 747) | type webhooks = Record; type components (line 748) | interface components { type $defs (line 765) | type $defs = Record; type operations (line 766) | interface operations { FILE: packages/openapi-fetch/test/e2e/app/app.ts function testGet (line 11) | async function testGet() { function testPost (line 21) | async function testPost() { function testMultiForm (line 31) | async function testMultiForm() { FILE: packages/openapi-fetch/test/e2e/app/schemas/e2e.d.ts type paths (line 6) | interface paths { type webhooks (line 166) | type webhooks = Record; type components (line 167) | interface components { type $defs (line 175) | type $defs = Record; type operations (line 176) | type operations = Record; FILE: packages/openapi-fetch/test/e2e/index.e2e.ts function mockAPI (line 24) | async function mockAPI(page: Page) { FILE: packages/openapi-fetch/test/examples/schemas/github.d.ts type paths (line 6) | interface paths { type webhooks (line 18416) | type webhooks = Record; type components (line 18417) | interface components { type $defs (line 88060) | type $defs = Record; type operations (line 88061) | interface operations { FILE: packages/openapi-fetch/test/examples/schemas/stripe.d.ts type paths (line 6) | interface paths { type webhooks (line 8840) | type webhooks = Record; type components (line 8841) | interface components { type $defs (line 27755) | type $defs = Record; type operations (line 27756) | interface operations { FILE: packages/openapi-fetch/test/helpers.ts function createObservedClient (line 15) | function createObservedClient): Record... FILE: packages/openapi-fetch/test/http-methods/post.test.ts method bodySerializer (line 142) | bodySerializer(body) { FILE: packages/openapi-fetch/test/http-methods/schemas/delete.d.ts type paths (line 6) | interface paths { type webhooks (line 51) | type webhooks = Record; type components (line 52) | interface components { type $defs (line 65) | type $defs = Record; type operations (line 66) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/get.d.ts type paths (line 6) | interface paths { type webhooks (line 100) | type webhooks = Record; type components (line 101) | interface components { type $defs (line 117) | type $defs = Record; type operations (line 118) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/head.d.ts type paths (line 6) | interface paths { type webhooks (line 56) | type webhooks = Record; type components (line 57) | interface components { type $defs (line 73) | type $defs = Record; type operations (line 74) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/options.d.ts type paths (line 6) | interface paths { type webhooks (line 52) | type webhooks = Record; type components (line 53) | interface components { type $defs (line 61) | type $defs = Record; type operations (line 62) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/patch.d.ts type paths (line 6) | interface paths { type webhooks (line 62) | type webhooks = Record; type components (line 63) | interface components { type $defs (line 80) | type $defs = Record; type operations (line 81) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/post.d.ts type paths (line 6) | interface paths { type webhooks (line 136) | type webhooks = Record; type components (line 137) | interface components { type $defs (line 196) | type $defs = Record; type operations (line 197) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/put.d.ts type paths (line 6) | interface paths { type webhooks (line 49) | type webhooks = Record; type components (line 50) | interface components { type $defs (line 65) | type $defs = Record; type operations (line 66) | type operations = Record; FILE: packages/openapi-fetch/test/http-methods/schemas/trace.d.ts type paths (line 6) | interface paths { type webhooks (line 56) | type webhooks = Record; type components (line 57) | interface components { type $defs (line 65) | type $defs = Record; type operations (line 66) | type operations = Record; FILE: packages/openapi-fetch/test/middleware/middleware.test.ts method onRequest (line 13) | async onRequest({ id }) { method onResponse (line 16) | async onResponse({ id }) { method onRequest (line 42) | async onRequest({ request }) { method onResponse (line 71) | async onResponse({ response }) { method onError (line 105) | onError({ error }) { method onError (line 125) | onError() { method onError (line 144) | onError({ error }) { method onRequest (line 166) | async onRequest({ request }) { method onResponse (line 170) | async onResponse({ response }) { method onRequest (line 179) | async onRequest({ request }) { method onResponse (line 183) | async onResponse({ response }) { method onRequest (line 192) | onRequest({ request }) { method onResponse (line 196) | onResponse({ response }) { method onRequest (line 210) | onRequest({ request }) { method onResponse (line 214) | onResponse({ response }) { method onError (line 237) | onError({ error }) { method onError (line 243) | onError() { method onRequest (line 260) | onRequest({ options }) { method onResponse (line 273) | onResponse({ request }) { method onRequest (line 303) | onRequest({ schemaPath, params }) { method onRequest (line 323) | onRequest() { method onRequest (line 335) | onRequest() { method onRequest (line 365) | onRequest({ request }) { method onResponse (line 372) | onResponse({ request }) { method onRequest (line 380) | onRequest({ request }) { method onRequest (line 410) | onRequest({ options }) { method onRequest (line 426) | async onRequest({ request }) { method onRequest (line 472) | async onRequest() { method onRequest (line 490) | async onRequest() { method onRequest (line 495) | async onRequest() { method onRequest (line 512) | async onRequest() { method onResponse (line 515) | async onResponse() { method onRequest (line 536) | async onRequest() { FILE: packages/openapi-fetch/test/middleware/schemas/middleware.d.ts type paths (line 6) | interface paths { type webhooks (line 111) | type webhooks = Record; type components (line 112) | interface components { type $defs (line 131) | type $defs = Record; type operations (line 132) | type operations = Record; FILE: packages/openapi-fetch/test/never-response/schemas/never-response.d.ts type paths (line 6) | interface paths { type webhooks (line 123) | type webhooks = Record; type components (line 124) | interface components { type $defs (line 141) | type $defs = Record; type operations (line 142) | type operations = Record; FILE: packages/openapi-fetch/test/no-strict-null-checks/no-strict-null-checks.test.ts type Resource (line 8) | type Resource = components["schemas"]["Resource"]; FILE: packages/openapi-fetch/test/path-based-client/path-based-client.test.ts function createObservedPathBasedClient (line 7) | function createObservedPathBasedClient; type components (line 101) | interface components { type $defs (line 118) | type $defs = Record; type operations (line 119) | type operations = Record; FILE: packages/openapi-fetch/test/read-write-visibility/read-write.test.ts type EntriesType (line 39) | type EntriesType = NonNullable["items"][number]["nested"]["... type LabelType (line 43) | type LabelType = NonNullable["items"][number]["nested"]["en... FILE: packages/openapi-fetch/test/read-write-visibility/schemas/read-write.d.ts type $Read (line 6) | type $Read = { type $Write (line 9) | type $Write = { type Readable (line 12) | type Readable = T extends $Write ? never : T extends $Read = T extends $Read ? never : T extends $Write; type components (line 118) | interface components { type $defs (line 147) | type $defs = Record; type operations (line 148) | type operations = Record; FILE: packages/openapi-fetch/test/types.test.ts type MixedResponses (line 7) | interface MixedResponses { type Response (line 21) | type Response = GetResponseContent; type Response (line 38) | type Response = GetResponseContent; type Response (line 77) | type Response = GetResponseContent; type Responses (line 167) | interface Responses { type Response (line 172) | type Response = GetResponseContent; type Responses (line 179) | interface Responses { type Response (line 193) | type Response = SuccessResponse; type Response (line 208) | type Response = SuccessResponse; type Responses (line 228) | interface Responses { type Response (line 243) | type Response = ErrorResponse; type Response (line 262) | type Response = ErrorResponse; FILE: packages/openapi-react-query/src/index.ts type InferSelectReturnType (line 30) | type InferSelectReturnType = TSelect extends (data: TDat... type InitWithUnknowns (line 32) | type InitWithUnknowns = Init & { [key: string]: unknown }; type QueryKey (line 34) | type QueryKey< type QueryOptionsFunction (line 41) | type QueryOptionsFunction>... type UseInfiniteQueryMethod (line 106) | type UseInfiniteQueryMethod; type components (line 872) | interface components { type $defs (line 1082) | type $defs = Record; type operations (line 1083) | interface operations { FILE: packages/openapi-react-query/test/fixtures/mock-server.ts function toAbsoluteURL (line 27) | function toAbsoluteURL(path: string, base: string = baseUrl) { type MswHttpMethod (line 49) | type MswHttpMethod = keyof typeof http; type MockRequestHandlerOptions (line 51) | interface MockRequestHandlerOptions< function useMockRequestHandler (line 78) | function useMockRequestHandler< FILE: packages/openapi-react-query/test/index.test.tsx type minimalGetPaths (line 18) | type minimalGetPaths = { function Page (line 527) | function Page() { function Page (line 636) | function Page() { function Page (line 797) | function Page() { type expectedOnMutateResultType (line 844) | type expectedOnMutateResultType = typeof onMutateReturnValue | undefined; function Page (line 910) | function Page() { FILE: packages/openapi-typescript-helpers/src/index.ts type HttpMethod (line 3) | type HttpMethod = "get" | "put" | "post" | "delete" | "options" | "head"... type OkStatus (line 5) | type OkStatus = 200 | 201 | 202 | 203 | 204 | 206 | 207 | "2XX"; type ErrorStatus (line 8) | type ErrorStatus = 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 |... type OKStatusUnion (line 11) | type OKStatusUnion = FilterKeys; type FirstErrorStatus (line 15) | type FirstErrorStatus = type PathsWithMethod (line 71) | type PathsWithMethod = T extends { responses: any } ? T["responses"... type ResponseContent (line 98) | type ResponseContent = T extends { content: any } ? T["content"] : un... type OperationRequestBody (line 101) | type OperationRequestBody = "requestBody" extends keyof T ? T["reques... type PickRequestBody (line 104) | type PickRequestBody = "requestBody" extends keyof T ? Pick = RequiredKeysOf = type OperationRequestBodyContent (line 116) | type OperationRequestBodyContent = type SuccessResponse (line 122) | type SuccessResponse< type GetResponseContent (line 127) | type GetResponseContent< type ErrorResponse (line 146) | type ErrorResponse< type SuccessResponseJSON (line 152) | type SuccessResponseJSON... type ErrorResponseJSON (line 158) | type ErrorResponseJSON> ... type RequestBodyJSON (line 164) | type RequestBodyJSON = JSONLike = Obj[keyof Obj & Matchers]; type GetValueWithDefault (line 175) | type GetValueWithDefault = Obj extends any type MediaType (line 182) | type MediaType = `${string}/${string}`; type JSONLike (line 184) | type JSONLike = FilterKeys; type FindRequiredKeys (line 190) | type FindRequiredKeys = K extends unknown ? (undef... type HasRequiredKeys (line 195) | type HasRequiredKeys = FindRequiredKeys; type RequiredKeysOfHelper (line 198) | type RequiredKeysOfHelper = { type RequiredKeysOf (line 203) | type RequiredKeysOf = RequiredKeysOfHelper extends undefined ? nev... type $Read (line 208) | type $Read = { readonly $read: T }; type $Write (line 211) | type $Write = { readonly $write: T }; type Readable (line 219) | type Readable = type Writable (line 236) | type Writable = FILE: packages/openapi-typescript/bin/cli.js constant HELP (line 11) | const HELP = `Usage constant OUTPUT_FILE (line 43) | const OUTPUT_FILE = "FILE"; constant OUTPUT_STDOUT (line 44) | const OUTPUT_STDOUT = "STDOUT"; constant CWD (line 45) | const CWD = new URL(`file://${process.cwd()}/`); constant REDOC_CONFIG_KEY (line 46) | const REDOC_CONFIG_KEY = "x-openapi-ts"; constant BOOLEAN_FLAGS (line 75) | const BOOLEAN_FLAGS = [ function normalizeOutput (line 116) | function normalizeOutput(output) { function checkStaleOutput (line 128) | function checkStaleOutput(current, outputPath) { function generateSchema (line 144) | async function generateSchema(schema, config) { function errorAndExit (line 149) | function errorAndExit(message) { function done (line 154) | function done(input, output, time) { function findRedocConfigPath (line 160) | function findRedocConfigPath() { function main (line 172) | async function main() { FILE: packages/openapi-typescript/examples/digital-ocean-api.ts type paths (line 6) | interface paths { type webhooks (line 6880) | type webhooks = Record; type components (line 6881) | interface components { type $defs (line 22836) | type $defs = Record; type operations (line 22837) | interface operations { type WithRequired (line 34918) | type WithRequired = T & { FILE: packages/openapi-typescript/examples/enum-root-types.ts type paths (line 6) | type paths = Record; type webhooks (line 7) | type webhooks = Record; type components (line 8) | interface components { type Item (line 26) | type Item = components['schemas']['Item']; type $defs (line 27) | type $defs = Record; type Status (line 28) | enum Status { type Priority (line 33) | enum Priority { type operations (line 38) | type operations = Record; FILE: packages/openapi-typescript/examples/github-api-export-type-immutable.ts type paths (line 6) | type paths = { type webhooks (line 18416) | type webhooks = Record; type components (line 18417) | type components = { type $defs (line 88060) | type $defs = Record; type operations (line 88061) | interface operations { FILE: packages/openapi-typescript/examples/github-api-immutable.ts type paths (line 6) | interface paths { type webhooks (line 18416) | type webhooks = Record; type components (line 18417) | interface components { type $defs (line 88060) | type $defs = Record; type operations (line 88061) | interface operations { FILE: packages/openapi-typescript/examples/github-api-next.ts type paths (line 6) | interface paths { type webhooks (line 18416) | interface webhooks { type components (line 24486) | interface components { type $defs (line 92285) | type $defs = Record; type operations (line 92286) | interface operations { FILE: packages/openapi-typescript/examples/github-api-required.ts type paths (line 6) | interface paths { type webhooks (line 18416) | type webhooks = Record; type components (line 18417) | interface components { type $defs (line 88060) | type $defs = Record; type operations (line 88061) | interface operations { FILE: packages/openapi-typescript/examples/github-api-root-types.ts type paths (line 6) | interface paths { type webhooks (line 18416) | type webhooks = Record; type components (line 18417) | interface components { type SchemaRoot (line 88060) | type SchemaRoot = components['schemas']['root']; type SchemaSecurityAdvisoryEcosystems (line 88061) | type SchemaSecurityAdvisoryEcosystems = components['schemas']['security-... type SchemaVulnerability (line 88062) | type SchemaVulnerability = components['schemas']['vulnerability']; type SchemaCvssSeverities (line 88063) | type SchemaCvssSeverities = components['schemas']['cvss-severities']; type SchemaSecurityAdvisoryEpss (line 88064) | type SchemaSecurityAdvisoryEpss = components['schemas']['security-adviso... type SchemaSimpleUser (line 88065) | type SchemaSimpleUser = components['schemas']['simple-user']; type SchemaSecurityAdvisoryCreditTypes (line 88066) | type SchemaSecurityAdvisoryCreditTypes = components['schemas']['security... type SchemaGlobalAdvisory (line 88067) | type SchemaGlobalAdvisory = components['schemas']['global-advisory']; type SchemaBasicError (line 88068) | type SchemaBasicError = components['schemas']['basic-error']; type SchemaValidationErrorSimple (line 88069) | type SchemaValidationErrorSimple = components['schemas']['validation-err... type SchemaEnterprise (line 88070) | type SchemaEnterprise = components['schemas']['enterprise']; type SchemaIntegration (line 88071) | type SchemaIntegration = components['schemas']['integration']; type SchemaWebhookConfigUrl (line 88072) | type SchemaWebhookConfigUrl = components['schemas']['webhook-config-url']; type SchemaWebhookConfigContentType (line 88073) | type SchemaWebhookConfigContentType = components['schemas']['webhook-con... type SchemaWebhookConfigSecret (line 88074) | type SchemaWebhookConfigSecret = components['schemas']['webhook-config-s... type SchemaWebhookConfigInsecureSsl (line 88075) | type SchemaWebhookConfigInsecureSsl = components['schemas']['webhook-con... type SchemaWebhookConfig (line 88076) | type SchemaWebhookConfig = components['schemas']['webhook-config']; type SchemaHookDeliveryItem (line 88077) | type SchemaHookDeliveryItem = components['schemas']['hook-delivery-item']; type SchemaScimError (line 88078) | type SchemaScimError = components['schemas']['scim-error']; type SchemaValidationError (line 88079) | type SchemaValidationError = components['schemas']['validation-error']; type SchemaHookDelivery (line 88080) | type SchemaHookDelivery = components['schemas']['hook-delivery']; type SchemaIntegrationInstallationRequest (line 88081) | type SchemaIntegrationInstallationRequest = components['schemas']['integ... type SchemaAppPermissions (line 88082) | type SchemaAppPermissions = components['schemas']['app-permissions']; type SchemaNullableSimpleUser (line 88083) | type SchemaNullableSimpleUser = components['schemas']['nullable-simple-u... type SchemaInstallation (line 88084) | type SchemaInstallation = components['schemas']['installation']; type SchemaNullableLicenseSimple (line 88085) | type SchemaNullableLicenseSimple = components['schemas']['nullable-licen... type SchemaRepository (line 88086) | type SchemaRepository = components['schemas']['repository']; type SchemaInstallationToken (line 88087) | type SchemaInstallationToken = components['schemas']['installation-token']; type SchemaNullableScopedInstallation (line 88088) | type SchemaNullableScopedInstallation = components['schemas']['nullable-... type SchemaAuthorization (line 88089) | type SchemaAuthorization = components['schemas']['authorization']; type SchemaSimpleClassroomRepository (line 88090) | type SchemaSimpleClassroomRepository = components['schemas']['simple-cla... type SchemaSimpleClassroomOrganization (line 88091) | type SchemaSimpleClassroomOrganization = components['schemas']['simple-c... type SchemaClassroom (line 88092) | type SchemaClassroom = components['schemas']['classroom']; type SchemaClassroomAssignment (line 88093) | type SchemaClassroomAssignment = components['schemas']['classroom-assign... type SchemaSimpleClassroomUser (line 88094) | type SchemaSimpleClassroomUser = components['schemas']['simple-classroom... type SchemaSimpleClassroom (line 88095) | type SchemaSimpleClassroom = components['schemas']['simple-classroom']; type SchemaSimpleClassroomAssignment (line 88096) | type SchemaSimpleClassroomAssignment = components['schemas']['simple-cla... type SchemaClassroomAcceptedAssignment (line 88097) | type SchemaClassroomAcceptedAssignment = components['schemas']['classroo... type SchemaClassroomAssignmentGrade (line 88098) | type SchemaClassroomAssignmentGrade = components['schemas']['classroom-a... type SchemaCodeOfConduct (line 88099) | type SchemaCodeOfConduct = components['schemas']['code-of-conduct']; type SchemaCodeSecurityConfiguration (line 88100) | type SchemaCodeSecurityConfiguration = components['schemas']['code-secur... type SchemaCodeScanningDefaultSetupOptions (line 88101) | type SchemaCodeScanningDefaultSetupOptions = components['schemas']['code... type SchemaCodeSecurityDefaultConfigurations (line 88102) | type SchemaCodeSecurityDefaultConfigurations = components['schemas']['co... type SchemaSimpleRepository (line 88103) | type SchemaSimpleRepository = components['schemas']['simple-repository']; type SchemaCodeSecurityConfigurationRepositories (line 88104) | type SchemaCodeSecurityConfigurationRepositories = components['schemas']... type SchemaAlertNumber (line 88105) | type SchemaAlertNumber = components['schemas']['alert-number']; type SchemaDependabotAlertPackage (line 88106) | type SchemaDependabotAlertPackage = components['schemas']['dependabot-al... type SchemaDependabotAlertSecurityVulnerability (line 88107) | type SchemaDependabotAlertSecurityVulnerability = components['schemas'][... type SchemaDependabotAlertSecurityAdvisory (line 88108) | type SchemaDependabotAlertSecurityAdvisory = components['schemas']['depe... type SchemaAlertUrl (line 88109) | type SchemaAlertUrl = components['schemas']['alert-url']; type SchemaAlertHtmlUrl (line 88110) | type SchemaAlertHtmlUrl = components['schemas']['alert-html-url']; type SchemaAlertCreatedAt (line 88111) | type SchemaAlertCreatedAt = components['schemas']['alert-created-at']; type SchemaAlertUpdatedAt (line 88112) | type SchemaAlertUpdatedAt = components['schemas']['alert-updated-at']; type SchemaAlertDismissedAt (line 88113) | type SchemaAlertDismissedAt = components['schemas']['alert-dismissed-at']; type SchemaAlertFixedAt (line 88114) | type SchemaAlertFixedAt = components['schemas']['alert-fixed-at']; type SchemaAlertAutoDismissedAt (line 88115) | type SchemaAlertAutoDismissedAt = components['schemas']['alert-auto-dism... type SchemaDependabotAlertWithRepository (line 88116) | type SchemaDependabotAlertWithRepository = components['schemas']['depend... type SchemaNullableAlertUpdatedAt (line 88117) | type SchemaNullableAlertUpdatedAt = components['schemas']['nullable-aler... type SchemaSecretScanningAlertState (line 88118) | type SchemaSecretScanningAlertState = components['schemas']['secret-scan... type SchemaSecretScanningAlertResolution (line 88119) | type SchemaSecretScanningAlertResolution = components['schemas']['secret... type SchemaOrganizationSecretScanningAlert (line 88120) | type SchemaOrganizationSecretScanningAlert = components['schemas']['orga... type SchemaActor (line 88121) | type SchemaActor = components['schemas']['actor']; type SchemaNullableMilestone (line 88122) | type SchemaNullableMilestone = components['schemas']['nullable-milestone']; type SchemaNullableIntegration (line 88123) | type SchemaNullableIntegration = components['schemas']['nullable-integra... type SchemaAuthorAssociation (line 88124) | type SchemaAuthorAssociation = components['schemas']['author-association']; type SchemaReactionRollup (line 88125) | type SchemaReactionRollup = components['schemas']['reaction-rollup']; type SchemaSubIssuesSummary (line 88126) | type SchemaSubIssuesSummary = components['schemas']['sub-issues-summary']; type SchemaIssue (line 88127) | type SchemaIssue = components['schemas']['issue']; type SchemaIssueComment (line 88128) | type SchemaIssueComment = components['schemas']['issue-comment']; type SchemaEvent (line 88129) | type SchemaEvent = components['schemas']['event']; type SchemaLinkWithType (line 88130) | type SchemaLinkWithType = components['schemas']['link-with-type']; type SchemaFeed (line 88131) | type SchemaFeed = components['schemas']['feed']; type SchemaBaseGist (line 88132) | type SchemaBaseGist = components['schemas']['base-gist']; type SchemaPublicUser (line 88133) | type SchemaPublicUser = components['schemas']['public-user']; type SchemaGistHistory (line 88134) | type SchemaGistHistory = components['schemas']['gist-history']; type SchemaGistSimple (line 88135) | type SchemaGistSimple = components['schemas']['gist-simple']; type SchemaGistComment (line 88136) | type SchemaGistComment = components['schemas']['gist-comment']; type SchemaGistCommit (line 88137) | type SchemaGistCommit = components['schemas']['gist-commit']; type SchemaGitignoreTemplate (line 88138) | type SchemaGitignoreTemplate = components['schemas']['gitignore-template']; type SchemaLicenseSimple (line 88139) | type SchemaLicenseSimple = components['schemas']['license-simple']; type SchemaLicense (line 88140) | type SchemaLicense = components['schemas']['license']; type SchemaMarketplaceListingPlan (line 88141) | type SchemaMarketplaceListingPlan = components['schemas']['marketplace-l... type SchemaMarketplacePurchase (line 88142) | type SchemaMarketplacePurchase = components['schemas']['marketplace-purc... type SchemaApiOverview (line 88143) | type SchemaApiOverview = components['schemas']['api-overview']; type SchemaSecurityAndAnalysis (line 88144) | type SchemaSecurityAndAnalysis = components['schemas']['security-and-ana... type SchemaMinimalRepository (line 88145) | type SchemaMinimalRepository = components['schemas']['minimal-repository']; type SchemaThread (line 88146) | type SchemaThread = components['schemas']['thread']; type SchemaThreadSubscription (line 88147) | type SchemaThreadSubscription = components['schemas']['thread-subscripti... type SchemaOrganizationSimple (line 88148) | type SchemaOrganizationSimple = components['schemas']['organization-simp... type SchemaBillingUsageReport (line 88149) | type SchemaBillingUsageReport = components['schemas']['billing-usage-rep... type SchemaOrganizationFull (line 88150) | type SchemaOrganizationFull = components['schemas']['organization-full']; type SchemaActionsCacheUsageOrgEnterprise (line 88151) | type SchemaActionsCacheUsageOrgEnterprise = components['schemas']['actio... type SchemaActionsCacheUsageByRepository (line 88152) | type SchemaActionsCacheUsageByRepository = components['schemas']['action... type SchemaNullableActionsHostedRunnerPoolImage (line 88153) | type SchemaNullableActionsHostedRunnerPoolImage = components['schemas'][... type SchemaActionsHostedRunnerMachineSpec (line 88154) | type SchemaActionsHostedRunnerMachineSpec = components['schemas']['actio... type SchemaPublicIp (line 88155) | type SchemaPublicIp = components['schemas']['public-ip']; type SchemaActionsHostedRunner (line 88156) | type SchemaActionsHostedRunner = components['schemas']['actions-hosted-r... type SchemaActionsHostedRunnerImage (line 88157) | type SchemaActionsHostedRunnerImage = components['schemas']['actions-hos... type SchemaActionsHostedRunnerLimits (line 88158) | type SchemaActionsHostedRunnerLimits = components['schemas']['actions-ho... type SchemaOidcCustomSub (line 88159) | type SchemaOidcCustomSub = components['schemas']['oidc-custom-sub']; type SchemaEmptyObject (line 88160) | type SchemaEmptyObject = components['schemas']['empty-object']; type SchemaEnabledRepositories (line 88161) | type SchemaEnabledRepositories = components['schemas']['enabled-reposito... type SchemaAllowedActions (line 88162) | type SchemaAllowedActions = components['schemas']['allowed-actions']; type SchemaSelectedActionsUrl (line 88163) | type SchemaSelectedActionsUrl = components['schemas']['selected-actions-... type SchemaActionsOrganizationPermissions (line 88164) | type SchemaActionsOrganizationPermissions = components['schemas']['actio... type SchemaSelectedActions (line 88165) | type SchemaSelectedActions = components['schemas']['selected-actions']; type SchemaActionsDefaultWorkflowPermissions (line 88166) | type SchemaActionsDefaultWorkflowPermissions = components['schemas']['ac... type SchemaActionsCanApprovePullRequestReviews (line 88167) | type SchemaActionsCanApprovePullRequestReviews = components['schemas']['... type SchemaActionsGetDefaultWorkflowPermissions (line 88168) | type SchemaActionsGetDefaultWorkflowPermissions = components['schemas'][... type SchemaActionsSetDefaultWorkflowPermissions (line 88169) | type SchemaActionsSetDefaultWorkflowPermissions = components['schemas'][... type SchemaRunnerGroupsOrg (line 88170) | type SchemaRunnerGroupsOrg = components['schemas']['runner-groups-org']; type SchemaRunnerLabel (line 88171) | type SchemaRunnerLabel = components['schemas']['runner-label']; type SchemaRunner (line 88172) | type SchemaRunner = components['schemas']['runner']; type SchemaRunnerApplication (line 88173) | type SchemaRunnerApplication = components['schemas']['runner-application']; type SchemaAuthenticationToken (line 88174) | type SchemaAuthenticationToken = components['schemas']['authentication-t... type SchemaOrganizationActionsSecret (line 88175) | type SchemaOrganizationActionsSecret = components['schemas']['organizati... type SchemaActionsPublicKey (line 88176) | type SchemaActionsPublicKey = components['schemas']['actions-public-key']; type SchemaOrganizationActionsVariable (line 88177) | type SchemaOrganizationActionsVariable = components['schemas']['organiza... type SchemaCodeScanningAnalysisToolName (line 88178) | type SchemaCodeScanningAnalysisToolName = components['schemas']['code-sc... type SchemaCodeScanningAnalysisToolGuid (line 88179) | type SchemaCodeScanningAnalysisToolGuid = components['schemas']['code-sc... type SchemaCodeScanningAlertStateQuery (line 88180) | type SchemaCodeScanningAlertStateQuery = components['schemas']['code-sca... type SchemaCodeScanningAlertSeverity (line 88181) | type SchemaCodeScanningAlertSeverity = components['schemas']['code-scann... type SchemaAlertInstancesUrl (line 88182) | type SchemaAlertInstancesUrl = components['schemas']['alert-instances-ur... type SchemaCodeScanningAlertState (line 88183) | type SchemaCodeScanningAlertState = components['schemas']['code-scanning... type SchemaCodeScanningAlertDismissedReason (line 88184) | type SchemaCodeScanningAlertDismissedReason = components['schemas']['cod... type SchemaCodeScanningAlertDismissedComment (line 88185) | type SchemaCodeScanningAlertDismissedComment = components['schemas']['co... type SchemaCodeScanningAlertRuleSummary (line 88186) | type SchemaCodeScanningAlertRuleSummary = components['schemas']['code-sc... type SchemaCodeScanningAnalysisToolVersion (line 88187) | type SchemaCodeScanningAnalysisToolVersion = components['schemas']['code... type SchemaCodeScanningAnalysisTool (line 88188) | type SchemaCodeScanningAnalysisTool = components['schemas']['code-scanni... type SchemaCodeScanningRef (line 88189) | type SchemaCodeScanningRef = components['schemas']['code-scanning-ref']; type SchemaCodeScanningAnalysisAnalysisKey (line 88190) | type SchemaCodeScanningAnalysisAnalysisKey = components['schemas']['code... type SchemaCodeScanningAlertEnvironment (line 88191) | type SchemaCodeScanningAlertEnvironment = components['schemas']['code-sc... type SchemaCodeScanningAnalysisCategory (line 88192) | type SchemaCodeScanningAnalysisCategory = components['schemas']['code-sc... type SchemaCodeScanningAlertLocation (line 88193) | type SchemaCodeScanningAlertLocation = components['schemas']['code-scann... type SchemaCodeScanningAlertClassification (line 88194) | type SchemaCodeScanningAlertClassification = components['schemas']['code... type SchemaCodeScanningAlertInstance (line 88195) | type SchemaCodeScanningAlertInstance = components['schemas']['code-scann... type SchemaCodeScanningOrganizationAlertItems (line 88196) | type SchemaCodeScanningOrganizationAlertItems = components['schemas']['c... type SchemaNullableCodespaceMachine (line 88197) | type SchemaNullableCodespaceMachine = components['schemas']['nullable-co... type SchemaCodespace (line 88198) | type SchemaCodespace = components['schemas']['codespace']; type SchemaCodespacesOrgSecret (line 88199) | type SchemaCodespacesOrgSecret = components['schemas']['codespaces-org-s... type SchemaCodespacesPublicKey (line 88200) | type SchemaCodespacesPublicKey = components['schemas']['codespaces-publi... type SchemaCopilotSeatBreakdown (line 88201) | type SchemaCopilotSeatBreakdown = components['schemas']['copilot-seat-br... type SchemaCopilotOrganizationDetails (line 88202) | type SchemaCopilotOrganizationDetails = components['schemas']['copilot-o... type SchemaNullableOrganizationSimple (line 88203) | type SchemaNullableOrganizationSimple = components['schemas']['nullable-... type SchemaNullableTeamSimple (line 88204) | type SchemaNullableTeamSimple = components['schemas']['nullable-team-sim... type SchemaTeam (line 88205) | type SchemaTeam = components['schemas']['team']; type SchemaEnterpriseTeam (line 88206) | type SchemaEnterpriseTeam = components['schemas']['enterprise-team']; type SchemaCopilotSeatDetails (line 88207) | type SchemaCopilotSeatDetails = components['schemas']['copilot-seat-deta... type SchemaCopilotIdeCodeCompletions (line 88208) | type SchemaCopilotIdeCodeCompletions = components['schemas']['copilot-id... type SchemaCopilotIdeChat (line 88209) | type SchemaCopilotIdeChat = components['schemas']['copilot-ide-chat']; type SchemaCopilotDotcomChat (line 88210) | type SchemaCopilotDotcomChat = components['schemas']['copilot-dotcom-cha... type SchemaCopilotDotcomPullRequests (line 88211) | type SchemaCopilotDotcomPullRequests = components['schemas']['copilot-do... type SchemaCopilotUsageMetricsDay (line 88212) | type SchemaCopilotUsageMetricsDay = components['schemas']['copilot-usage... type SchemaCopilotUsageMetrics (line 88213) | type SchemaCopilotUsageMetrics = components['schemas']['copilot-usage-me... type SchemaOrganizationDependabotSecret (line 88214) | type SchemaOrganizationDependabotSecret = components['schemas']['organiz... type SchemaDependabotPublicKey (line 88215) | type SchemaDependabotPublicKey = components['schemas']['dependabot-publi... type SchemaNullableMinimalRepository (line 88216) | type SchemaNullableMinimalRepository = components['schemas']['nullable-m... type SchemaPackage (line 88217) | type SchemaPackage = components['schemas']['package']; type SchemaOrganizationInvitation (line 88218) | type SchemaOrganizationInvitation = components['schemas']['organization-... type SchemaOrgHook (line 88219) | type SchemaOrgHook = components['schemas']['org-hook']; type SchemaApiInsightsRouteStats (line 88220) | type SchemaApiInsightsRouteStats = components['schemas']['api-insights-r... type SchemaApiInsightsSubjectStats (line 88221) | type SchemaApiInsightsSubjectStats = components['schemas']['api-insights... type SchemaApiInsightsSummaryStats (line 88222) | type SchemaApiInsightsSummaryStats = components['schemas']['api-insights... type SchemaApiInsightsTimeStats (line 88223) | type SchemaApiInsightsTimeStats = components['schemas']['api-insights-ti... type SchemaApiInsightsUserStats (line 88224) | type SchemaApiInsightsUserStats = components['schemas']['api-insights-us... type SchemaInteractionGroup (line 88225) | type SchemaInteractionGroup = components['schemas']['interaction-group']; type SchemaInteractionLimitResponse (line 88226) | type SchemaInteractionLimitResponse = components['schemas']['interaction... type SchemaInteractionExpiry (line 88227) | type SchemaInteractionExpiry = components['schemas']['interaction-expiry']; type SchemaInteractionLimit (line 88228) | type SchemaInteractionLimit = components['schemas']['interaction-limit']; type SchemaOrgMembership (line 88229) | type SchemaOrgMembership = components['schemas']['org-membership']; type SchemaMigration (line 88230) | type SchemaMigration = components['schemas']['migration']; type SchemaOrganizationRole (line 88231) | type SchemaOrganizationRole = components['schemas']['organization-role']; type SchemaTeamRoleAssignment (line 88232) | type SchemaTeamRoleAssignment = components['schemas']['team-role-assignm... type SchemaTeamSimple (line 88233) | type SchemaTeamSimple = components['schemas']['team-simple']; type SchemaUserRoleAssignment (line 88234) | type SchemaUserRoleAssignment = components['schemas']['user-role-assignm... type SchemaPackageVersion (line 88235) | type SchemaPackageVersion = components['schemas']['package-version']; type SchemaOrganizationProgrammaticAccessGrantRequest (line 88236) | type SchemaOrganizationProgrammaticAccessGrantRequest = components['sche... type SchemaOrganizationProgrammaticAccessGrant (line 88237) | type SchemaOrganizationProgrammaticAccessGrant = components['schemas']['... type SchemaOrgPrivateRegistryConfiguration (line 88238) | type SchemaOrgPrivateRegistryConfiguration = components['schemas']['org-... type SchemaOrgPrivateRegistryConfigurationWithSelectedRepositories (line 88239) | type SchemaOrgPrivateRegistryConfigurationWithSelectedRepositories = com... type SchemaProject (line 88240) | type SchemaProject = components['schemas']['project']; type SchemaCustomProperty (line 88241) | type SchemaCustomProperty = components['schemas']['custom-property']; type SchemaCustomPropertySetPayload (line 88242) | type SchemaCustomPropertySetPayload = components['schemas']['custom-prop... type SchemaCustomPropertyValue (line 88243) | type SchemaCustomPropertyValue = components['schemas']['custom-property-... type SchemaOrgRepoCustomPropertyValues (line 88244) | type SchemaOrgRepoCustomPropertyValues = components['schemas']['org-repo... type SchemaNullableRepository (line 88245) | type SchemaNullableRepository = components['schemas']['nullable-reposito... type SchemaCodeOfConductSimple (line 88246) | type SchemaCodeOfConductSimple = components['schemas']['code-of-conduct-... type SchemaFullRepository (line 88247) | type SchemaFullRepository = components['schemas']['full-repository']; type SchemaRepositoryRuleEnforcement (line 88248) | type SchemaRepositoryRuleEnforcement = components['schemas']['repository... type SchemaRepositoryRulesetBypassActor (line 88249) | type SchemaRepositoryRulesetBypassActor = components['schemas']['reposit... type SchemaRepositoryRulesetConditions (line 88250) | type SchemaRepositoryRulesetConditions = components['schemas']['reposito... type SchemaRepositoryRulesetConditionsRepositoryNameTarget (line 88251) | type SchemaRepositoryRulesetConditionsRepositoryNameTarget = components[... type SchemaRepositoryRulesetConditionsRepositoryIdTarget (line 88252) | type SchemaRepositoryRulesetConditionsRepositoryIdTarget = components['s... type SchemaRepositoryRulesetConditionsRepositoryPropertySpec (line 88253) | type SchemaRepositoryRulesetConditionsRepositoryPropertySpec = component... type SchemaRepositoryRulesetConditionsRepositoryPropertyTarget (line 88254) | type SchemaRepositoryRulesetConditionsRepositoryPropertyTarget = compone... type SchemaOrgRulesetConditions (line 88255) | type SchemaOrgRulesetConditions = components['schemas']['org-ruleset-con... type SchemaRepositoryRuleCreation (line 88256) | type SchemaRepositoryRuleCreation = components['schemas']['repository-ru... type SchemaRepositoryRuleUpdate (line 88257) | type SchemaRepositoryRuleUpdate = components['schemas']['repository-rule... type SchemaRepositoryRuleDeletion (line 88258) | type SchemaRepositoryRuleDeletion = components['schemas']['repository-ru... type SchemaRepositoryRuleRequiredLinearHistory (line 88259) | type SchemaRepositoryRuleRequiredLinearHistory = components['schemas']['... type SchemaRepositoryRuleMergeQueue (line 88260) | type SchemaRepositoryRuleMergeQueue = components['schemas']['repository-... type SchemaRepositoryRuleRequiredDeployments (line 88261) | type SchemaRepositoryRuleRequiredDeployments = components['schemas']['re... type SchemaRepositoryRuleRequiredSignatures (line 88262) | type SchemaRepositoryRuleRequiredSignatures = components['schemas']['rep... type SchemaRepositoryRuleParamsRequiredReviewerConfiguration (line 88263) | type SchemaRepositoryRuleParamsRequiredReviewerConfiguration = component... type SchemaRepositoryRulePullRequest (line 88264) | type SchemaRepositoryRulePullRequest = components['schemas']['repository... type SchemaRepositoryRuleParamsStatusCheckConfiguration (line 88265) | type SchemaRepositoryRuleParamsStatusCheckConfiguration = components['sc... type SchemaRepositoryRuleRequiredStatusChecks (line 88266) | type SchemaRepositoryRuleRequiredStatusChecks = components['schemas']['r... type SchemaRepositoryRuleNonFastForward (line 88267) | type SchemaRepositoryRuleNonFastForward = components['schemas']['reposit... type SchemaRepositoryRuleCommitMessagePattern (line 88268) | type SchemaRepositoryRuleCommitMessagePattern = components['schemas']['r... type SchemaRepositoryRuleCommitAuthorEmailPattern (line 88269) | type SchemaRepositoryRuleCommitAuthorEmailPattern = components['schemas'... type SchemaRepositoryRuleCommitterEmailPattern (line 88270) | type SchemaRepositoryRuleCommitterEmailPattern = components['schemas']['... type SchemaRepositoryRuleBranchNamePattern (line 88271) | type SchemaRepositoryRuleBranchNamePattern = components['schemas']['repo... type SchemaRepositoryRuleTagNamePattern (line 88272) | type SchemaRepositoryRuleTagNamePattern = components['schemas']['reposit... type SchemaRepositoryRuleParamsRestrictedCommits (line 88273) | type SchemaRepositoryRuleParamsRestrictedCommits = components['schemas']... type SchemaRepositoryRuleParamsWorkflowFileReference (line 88274) | type SchemaRepositoryRuleParamsWorkflowFileReference = components['schem... type SchemaRepositoryRuleWorkflows (line 88275) | type SchemaRepositoryRuleWorkflows = components['schemas']['repository-r... type SchemaRepositoryRuleParamsCodeScanningTool (line 88276) | type SchemaRepositoryRuleParamsCodeScanningTool = components['schemas'][... type SchemaRepositoryRuleCodeScanning (line 88277) | type SchemaRepositoryRuleCodeScanning = components['schemas']['repositor... type SchemaRepositoryRule (line 88278) | type SchemaRepositoryRule = components['schemas']['repository-rule']; type SchemaRepositoryRuleset (line 88279) | type SchemaRepositoryRuleset = components['schemas']['repository-ruleset']; type SchemaRuleSuites (line 88280) | type SchemaRuleSuites = components['schemas']['rule-suites']; type SchemaRuleSuite (line 88281) | type SchemaRuleSuite = components['schemas']['rule-suite']; type SchemaRepositoryAdvisoryVulnerability (line 88282) | type SchemaRepositoryAdvisoryVulnerability = components['schemas']['repo... type SchemaRepositoryAdvisoryCredit (line 88283) | type SchemaRepositoryAdvisoryCredit = components['schemas']['repository-... type SchemaRepositoryAdvisory (line 88284) | type SchemaRepositoryAdvisory = components['schemas']['repository-adviso... type SchemaActionsBillingUsage (line 88285) | type SchemaActionsBillingUsage = components['schemas']['actions-billing-... type SchemaPackagesBillingUsage (line 88286) | type SchemaPackagesBillingUsage = components['schemas']['packages-billin... type SchemaCombinedBillingUsage (line 88287) | type SchemaCombinedBillingUsage = components['schemas']['combined-billin... type SchemaNetworkConfiguration (line 88288) | type SchemaNetworkConfiguration = components['schemas']['network-configu... type SchemaNetworkSettings (line 88289) | type SchemaNetworkSettings = components['schemas']['network-settings']; type SchemaTeamOrganization (line 88290) | type SchemaTeamOrganization = components['schemas']['team-organization']; type SchemaTeamFull (line 88291) | type SchemaTeamFull = components['schemas']['team-full']; type SchemaTeamDiscussion (line 88292) | type SchemaTeamDiscussion = components['schemas']['team-discussion']; type SchemaTeamDiscussionComment (line 88293) | type SchemaTeamDiscussionComment = components['schemas']['team-discussio... type SchemaReaction (line 88294) | type SchemaReaction = components['schemas']['reaction']; type SchemaTeamMembership (line 88295) | type SchemaTeamMembership = components['schemas']['team-membership']; type SchemaTeamProject (line 88296) | type SchemaTeamProject = components['schemas']['team-project']; type SchemaTeamRepository (line 88297) | type SchemaTeamRepository = components['schemas']['team-repository']; type SchemaProjectCard (line 88298) | type SchemaProjectCard = components['schemas']['project-card']; type SchemaProjectColumn (line 88299) | type SchemaProjectColumn = components['schemas']['project-column']; type SchemaProjectCollaboratorPermission (line 88300) | type SchemaProjectCollaboratorPermission = components['schemas']['projec... type SchemaRateLimit (line 88301) | type SchemaRateLimit = components['schemas']['rate-limit']; type SchemaRateLimitOverview (line 88302) | type SchemaRateLimitOverview = components['schemas']['rate-limit-overvie... type SchemaArtifact (line 88303) | type SchemaArtifact = components['schemas']['artifact']; type SchemaActionsCacheList (line 88304) | type SchemaActionsCacheList = components['schemas']['actions-cache-list']; type SchemaJob (line 88305) | type SchemaJob = components['schemas']['job']; type SchemaOidcCustomSubRepo (line 88306) | type SchemaOidcCustomSubRepo = components['schemas']['oidc-custom-sub-re... type SchemaActionsSecret (line 88307) | type SchemaActionsSecret = components['schemas']['actions-secret']; type SchemaActionsVariable (line 88308) | type SchemaActionsVariable = components['schemas']['actions-variable']; type SchemaActionsEnabled (line 88309) | type SchemaActionsEnabled = components['schemas']['actions-enabled']; type SchemaActionsRepositoryPermissions (line 88310) | type SchemaActionsRepositoryPermissions = components['schemas']['actions... type SchemaActionsWorkflowAccessToRepository (line 88311) | type SchemaActionsWorkflowAccessToRepository = components['schemas']['ac... type SchemaReferencedWorkflow (line 88312) | type SchemaReferencedWorkflow = components['schemas']['referenced-workfl... type SchemaPullRequestMinimal (line 88313) | type SchemaPullRequestMinimal = components['schemas']['pull-request-mini... type SchemaNullableSimpleCommit (line 88314) | type SchemaNullableSimpleCommit = components['schemas']['nullable-simple... type SchemaWorkflowRun (line 88315) | type SchemaWorkflowRun = components['schemas']['workflow-run']; type SchemaEnvironmentApprovals (line 88316) | type SchemaEnvironmentApprovals = components['schemas']['environment-app... type SchemaReviewCustomGatesCommentRequired (line 88317) | type SchemaReviewCustomGatesCommentRequired = components['schemas']['rev... type SchemaReviewCustomGatesStateRequired (line 88318) | type SchemaReviewCustomGatesStateRequired = components['schemas']['revie... type SchemaDeploymentReviewerType (line 88319) | type SchemaDeploymentReviewerType = components['schemas']['deployment-re... type SchemaPendingDeployment (line 88320) | type SchemaPendingDeployment = components['schemas']['pending-deployment']; type SchemaDeployment (line 88321) | type SchemaDeployment = components['schemas']['deployment']; type SchemaWorkflowRunUsage (line 88322) | type SchemaWorkflowRunUsage = components['schemas']['workflow-run-usage']; type SchemaWorkflow (line 88323) | type SchemaWorkflow = components['schemas']['workflow']; type SchemaWorkflowUsage (line 88324) | type SchemaWorkflowUsage = components['schemas']['workflow-usage']; type SchemaActivity (line 88325) | type SchemaActivity = components['schemas']['activity']; type SchemaAutolink (line 88326) | type SchemaAutolink = components['schemas']['autolink']; type SchemaCheckAutomatedSecurityFixes (line 88327) | type SchemaCheckAutomatedSecurityFixes = components['schemas']['check-au... type SchemaProtectedBranchRequiredStatusCheck (line 88328) | type SchemaProtectedBranchRequiredStatusCheck = components['schemas']['p... type SchemaProtectedBranchAdminEnforced (line 88329) | type SchemaProtectedBranchAdminEnforced = components['schemas']['protect... type SchemaProtectedBranchPullRequestReview (line 88330) | type SchemaProtectedBranchPullRequestReview = components['schemas']['pro... type SchemaBranchRestrictionPolicy (line 88331) | type SchemaBranchRestrictionPolicy = components['schemas']['branch-restr... type SchemaBranchProtection (line 88332) | type SchemaBranchProtection = components['schemas']['branch-protection']; type SchemaShortBranch (line 88333) | type SchemaShortBranch = components['schemas']['short-branch']; type SchemaNullableGitUser (line 88334) | type SchemaNullableGitUser = components['schemas']['nullable-git-user']; type SchemaVerification (line 88335) | type SchemaVerification = components['schemas']['verification']; type SchemaDiffEntry (line 88336) | type SchemaDiffEntry = components['schemas']['diff-entry']; type SchemaCommit (line 88337) | type SchemaCommit = components['schemas']['commit']; type SchemaBranchWithProtection (line 88338) | type SchemaBranchWithProtection = components['schemas']['branch-with-pro... type SchemaStatusCheckPolicy (line 88339) | type SchemaStatusCheckPolicy = components['schemas']['status-check-polic... type SchemaProtectedBranch (line 88340) | type SchemaProtectedBranch = components['schemas']['protected-branch']; type SchemaDeploymentSimple (line 88341) | type SchemaDeploymentSimple = components['schemas']['deployment-simple']; type SchemaCheckRun (line 88342) | type SchemaCheckRun = components['schemas']['check-run']; type SchemaCheckAnnotation (line 88343) | type SchemaCheckAnnotation = components['schemas']['check-annotation']; type SchemaSimpleCommit (line 88344) | type SchemaSimpleCommit = components['schemas']['simple-commit']; type SchemaCheckSuite (line 88345) | type SchemaCheckSuite = components['schemas']['check-suite']; type SchemaCheckSuitePreference (line 88346) | type SchemaCheckSuitePreference = components['schemas']['check-suite-pre... type SchemaCodeScanningAlertItems (line 88347) | type SchemaCodeScanningAlertItems = components['schemas']['code-scanning... type SchemaCodeScanningAlertRule (line 88348) | type SchemaCodeScanningAlertRule = components['schemas']['code-scanning-... type SchemaCodeScanningAlert (line 88349) | type SchemaCodeScanningAlert = components['schemas']['code-scanning-aler... type SchemaCodeScanningAlertSetState (line 88350) | type SchemaCodeScanningAlertSetState = components['schemas']['code-scann... type SchemaCodeScanningAutofixStatus (line 88351) | type SchemaCodeScanningAutofixStatus = components['schemas']['code-scann... type SchemaCodeScanningAutofixDescription (line 88352) | type SchemaCodeScanningAutofixDescription = components['schemas']['code-... type SchemaCodeScanningAutofixStartedAt (line 88353) | type SchemaCodeScanningAutofixStartedAt = components['schemas']['code-sc... type SchemaCodeScanningAutofix (line 88354) | type SchemaCodeScanningAutofix = components['schemas']['code-scanning-au... type SchemaCodeScanningAutofixCommits (line 88355) | type SchemaCodeScanningAutofixCommits = components['schemas']['code-scan... type SchemaCodeScanningAutofixCommitsResponse (line 88356) | type SchemaCodeScanningAutofixCommitsResponse = components['schemas']['c... type SchemaCodeScanningAnalysisSarifId (line 88357) | type SchemaCodeScanningAnalysisSarifId = components['schemas']['code-sca... type SchemaCodeScanningAnalysisCommitSha (line 88358) | type SchemaCodeScanningAnalysisCommitSha = components['schemas']['code-s... type SchemaCodeScanningAnalysisEnvironment (line 88359) | type SchemaCodeScanningAnalysisEnvironment = components['schemas']['code... type SchemaCodeScanningAnalysisCreatedAt (line 88360) | type SchemaCodeScanningAnalysisCreatedAt = components['schemas']['code-s... type SchemaCodeScanningAnalysisUrl (line 88361) | type SchemaCodeScanningAnalysisUrl = components['schemas']['code-scannin... type SchemaCodeScanningAnalysis (line 88362) | type SchemaCodeScanningAnalysis = components['schemas']['code-scanning-a... type SchemaCodeScanningAnalysisDeletion (line 88363) | type SchemaCodeScanningAnalysisDeletion = components['schemas']['code-sc... type SchemaCodeScanningCodeqlDatabase (line 88364) | type SchemaCodeScanningCodeqlDatabase = components['schemas']['code-scan... type SchemaCodeScanningVariantAnalysisLanguage (line 88365) | type SchemaCodeScanningVariantAnalysisLanguage = components['schemas']['... type SchemaCodeScanningVariantAnalysisRepository (line 88366) | type SchemaCodeScanningVariantAnalysisRepository = components['schemas']... type SchemaCodeScanningVariantAnalysisStatus (line 88367) | type SchemaCodeScanningVariantAnalysisStatus = components['schemas']['co... type SchemaCodeScanningVariantAnalysisSkippedRepoGroup (line 88368) | type SchemaCodeScanningVariantAnalysisSkippedRepoGroup = components['sch... type SchemaCodeScanningVariantAnalysis (line 88369) | type SchemaCodeScanningVariantAnalysis = components['schemas']['code-sca... type SchemaCodeScanningVariantAnalysisRepoTask (line 88370) | type SchemaCodeScanningVariantAnalysisRepoTask = components['schemas']['... type SchemaCodeScanningDefaultSetup (line 88371) | type SchemaCodeScanningDefaultSetup = components['schemas']['code-scanni... type SchemaCodeScanningDefaultSetupUpdate (line 88372) | type SchemaCodeScanningDefaultSetupUpdate = components['schemas']['code-... type SchemaCodeScanningDefaultSetupUpdateResponse (line 88373) | type SchemaCodeScanningDefaultSetupUpdateResponse = components['schemas'... type SchemaCodeScanningRefFull (line 88374) | type SchemaCodeScanningRefFull = components['schemas']['code-scanning-re... type SchemaCodeScanningAnalysisSarifFile (line 88375) | type SchemaCodeScanningAnalysisSarifFile = components['schemas']['code-s... type SchemaCodeScanningSarifsReceipt (line 88376) | type SchemaCodeScanningSarifsReceipt = components['schemas']['code-scann... type SchemaCodeScanningSarifsStatus (line 88377) | type SchemaCodeScanningSarifsStatus = components['schemas']['code-scanni... type SchemaCodeSecurityConfigurationForRepository (line 88378) | type SchemaCodeSecurityConfigurationForRepository = components['schemas'... type SchemaCodeownersErrors (line 88379) | type SchemaCodeownersErrors = components['schemas']['codeowners-errors']; type SchemaCodespaceMachine (line 88380) | type SchemaCodespaceMachine = components['schemas']['codespace-machine']; type SchemaCodespacesPermissionsCheckForDevcontainer (line 88381) | type SchemaCodespacesPermissionsCheckForDevcontainer = components['schem... type SchemaRepoCodespacesSecret (line 88382) | type SchemaRepoCodespacesSecret = components['schemas']['repo-codespaces... type SchemaCollaborator (line 88383) | type SchemaCollaborator = components['schemas']['collaborator']; type SchemaRepositoryInvitation (line 88384) | type SchemaRepositoryInvitation = components['schemas']['repository-invi... type SchemaNullableCollaborator (line 88385) | type SchemaNullableCollaborator = components['schemas']['nullable-collab... type SchemaRepositoryCollaboratorPermission (line 88386) | type SchemaRepositoryCollaboratorPermission = components['schemas']['rep... type SchemaCommitComment (line 88387) | type SchemaCommitComment = components['schemas']['commit-comment']; type SchemaBranchShort (line 88388) | type SchemaBranchShort = components['schemas']['branch-short']; type SchemaLink (line 88389) | type SchemaLink = components['schemas']['link']; type SchemaAutoMerge (line 88390) | type SchemaAutoMerge = components['schemas']['auto-merge']; type SchemaPullRequestSimple (line 88391) | type SchemaPullRequestSimple = components['schemas']['pull-request-simpl... type SchemaSimpleCommitStatus (line 88392) | type SchemaSimpleCommitStatus = components['schemas']['simple-commit-sta... type SchemaCombinedCommitStatus (line 88393) | type SchemaCombinedCommitStatus = components['schemas']['combined-commit... type SchemaStatus (line 88394) | type SchemaStatus = components['schemas']['status']; type SchemaNullableCodeOfConductSimple (line 88395) | type SchemaNullableCodeOfConductSimple = components['schemas']['nullable... type SchemaNullableCommunityHealthFile (line 88396) | type SchemaNullableCommunityHealthFile = components['schemas']['nullable... type SchemaCommunityProfile (line 88397) | type SchemaCommunityProfile = components['schemas']['community-profile']; type SchemaCommitComparison (line 88398) | type SchemaCommitComparison = components['schemas']['commit-comparison']; type SchemaContentTree (line 88399) | type SchemaContentTree = components['schemas']['content-tree']; type SchemaContentDirectory (line 88400) | type SchemaContentDirectory = components['schemas']['content-directory']; type SchemaContentFile (line 88401) | type SchemaContentFile = components['schemas']['content-file']; type SchemaContentSymlink (line 88402) | type SchemaContentSymlink = components['schemas']['content-symlink']; type SchemaContentSubmodule (line 88403) | type SchemaContentSubmodule = components['schemas']['content-submodule']; type SchemaFileCommit (line 88404) | type SchemaFileCommit = components['schemas']['file-commit']; type SchemaSecretScanningPushProtectionBypassPlaceholderId (line 88405) | type SchemaSecretScanningPushProtectionBypassPlaceholderId = components[... type SchemaRepositoryRuleViolationError (line 88406) | type SchemaRepositoryRuleViolationError = components['schemas']['reposit... type SchemaContributor (line 88407) | type SchemaContributor = components['schemas']['contributor']; type SchemaDependabotAlert (line 88408) | type SchemaDependabotAlert = components['schemas']['dependabot-alert']; type SchemaDependabotSecret (line 88409) | type SchemaDependabotSecret = components['schemas']['dependabot-secret']; type SchemaDependencyGraphDiff (line 88410) | type SchemaDependencyGraphDiff = components['schemas']['dependency-graph... type SchemaDependencyGraphSpdxSbom (line 88411) | type SchemaDependencyGraphSpdxSbom = components['schemas']['dependency-g... type SchemaMetadata (line 88412) | type SchemaMetadata = components['schemas']['metadata']; type SchemaDependency (line 88413) | type SchemaDependency = components['schemas']['dependency']; type SchemaManifest (line 88414) | type SchemaManifest = components['schemas']['manifest']; type SchemaSnapshot (line 88415) | type SchemaSnapshot = components['schemas']['snapshot']; type SchemaDeploymentStatus (line 88416) | type SchemaDeploymentStatus = components['schemas']['deployment-status']; type SchemaWaitTimer (line 88417) | type SchemaWaitTimer = components['schemas']['wait-timer']; type SchemaDeploymentBranchPolicySettings (line 88418) | type SchemaDeploymentBranchPolicySettings = components['schemas']['deplo... type SchemaEnvironment (line 88419) | type SchemaEnvironment = components['schemas']['environment']; type SchemaPreventSelfReview (line 88420) | type SchemaPreventSelfReview = components['schemas']['prevent-self-revie... type SchemaDeploymentBranchPolicy (line 88421) | type SchemaDeploymentBranchPolicy = components['schemas']['deployment-br... type SchemaDeploymentBranchPolicyNamePatternWithType (line 88422) | type SchemaDeploymentBranchPolicyNamePatternWithType = components['schem... type SchemaDeploymentBranchPolicyNamePattern (line 88423) | type SchemaDeploymentBranchPolicyNamePattern = components['schemas']['de... type SchemaCustomDeploymentRuleApp (line 88424) | type SchemaCustomDeploymentRuleApp = components['schemas']['custom-deplo... type SchemaDeploymentProtectionRule (line 88425) | type SchemaDeploymentProtectionRule = components['schemas']['deployment-... type SchemaShortBlob (line 88426) | type SchemaShortBlob = components['schemas']['short-blob']; type SchemaBlob (line 88427) | type SchemaBlob = components['schemas']['blob']; type SchemaGitCommit (line 88428) | type SchemaGitCommit = components['schemas']['git-commit']; type SchemaGitRef (line 88429) | type SchemaGitRef = components['schemas']['git-ref']; type SchemaGitTag (line 88430) | type SchemaGitTag = components['schemas']['git-tag']; type SchemaGitTree (line 88431) | type SchemaGitTree = components['schemas']['git-tree']; type SchemaHookResponse (line 88432) | type SchemaHookResponse = components['schemas']['hook-response']; type SchemaHook (line 88433) | type SchemaHook = components['schemas']['hook']; type SchemaImport (line 88434) | type SchemaImport = components['schemas']['import']; type SchemaPorterAuthor (line 88435) | type SchemaPorterAuthor = components['schemas']['porter-author']; type SchemaPorterLargeFile (line 88436) | type SchemaPorterLargeFile = components['schemas']['porter-large-file']; type SchemaNullableIssue (line 88437) | type SchemaNullableIssue = components['schemas']['nullable-issue']; type SchemaIssueEventLabel (line 88438) | type SchemaIssueEventLabel = components['schemas']['issue-event-label']; type SchemaIssueEventDismissedReview (line 88439) | type SchemaIssueEventDismissedReview = components['schemas']['issue-even... type SchemaIssueEventMilestone (line 88440) | type SchemaIssueEventMilestone = components['schemas']['issue-event-mile... type SchemaIssueEventProjectCard (line 88441) | type SchemaIssueEventProjectCard = components['schemas']['issue-event-pr... type SchemaIssueEventRename (line 88442) | type SchemaIssueEventRename = components['schemas']['issue-event-rename']; type SchemaIssueEvent (line 88443) | type SchemaIssueEvent = components['schemas']['issue-event']; type SchemaLabeledIssueEvent (line 88444) | type SchemaLabeledIssueEvent = components['schemas']['labeled-issue-even... type SchemaUnlabeledIssueEvent (line 88445) | type SchemaUnlabeledIssueEvent = components['schemas']['unlabeled-issue-... type SchemaAssignedIssueEvent (line 88446) | type SchemaAssignedIssueEvent = components['schemas']['assigned-issue-ev... type SchemaUnassignedIssueEvent (line 88447) | type SchemaUnassignedIssueEvent = components['schemas']['unassigned-issu... type SchemaMilestonedIssueEvent (line 88448) | type SchemaMilestonedIssueEvent = components['schemas']['milestoned-issu... type SchemaDemilestonedIssueEvent (line 88449) | type SchemaDemilestonedIssueEvent = components['schemas']['demilestoned-... type SchemaRenamedIssueEvent (line 88450) | type SchemaRenamedIssueEvent = components['schemas']['renamed-issue-even... type SchemaReviewRequestedIssueEvent (line 88451) | type SchemaReviewRequestedIssueEvent = components['schemas']['review-req... type SchemaReviewRequestRemovedIssueEvent (line 88452) | type SchemaReviewRequestRemovedIssueEvent = components['schemas']['revie... type SchemaReviewDismissedIssueEvent (line 88453) | type SchemaReviewDismissedIssueEvent = components['schemas']['review-dis... type SchemaLockedIssueEvent (line 88454) | type SchemaLockedIssueEvent = components['schemas']['locked-issue-event']; type SchemaAddedToProjectIssueEvent (line 88455) | type SchemaAddedToProjectIssueEvent = components['schemas']['added-to-pr... type SchemaMovedColumnInProjectIssueEvent (line 88456) | type SchemaMovedColumnInProjectIssueEvent = components['schemas']['moved... type SchemaRemovedFromProjectIssueEvent (line 88457) | type SchemaRemovedFromProjectIssueEvent = components['schemas']['removed... type SchemaConvertedNoteToIssueIssueEvent (line 88458) | type SchemaConvertedNoteToIssueIssueEvent = components['schemas']['conve... type SchemaIssueEventForIssue (line 88459) | type SchemaIssueEventForIssue = components['schemas']['issue-event-for-i... type SchemaLabel (line 88460) | type SchemaLabel = components['schemas']['label']; type SchemaTimelineCommentEvent (line 88461) | type SchemaTimelineCommentEvent = components['schemas']['timeline-commen... type SchemaTimelineCrossReferencedEvent (line 88462) | type SchemaTimelineCrossReferencedEvent = components['schemas']['timelin... type SchemaTimelineCommittedEvent (line 88463) | type SchemaTimelineCommittedEvent = components['schemas']['timeline-comm... type SchemaTimelineReviewedEvent (line 88464) | type SchemaTimelineReviewedEvent = components['schemas']['timeline-revie... type SchemaPullRequestReviewComment (line 88465) | type SchemaPullRequestReviewComment = components['schemas']['pull-reques... type SchemaTimelineLineCommentedEvent (line 88466) | type SchemaTimelineLineCommentedEvent = components['schemas']['timeline-... type SchemaTimelineCommitCommentedEvent (line 88467) | type SchemaTimelineCommitCommentedEvent = components['schemas']['timelin... type SchemaTimelineAssignedIssueEvent (line 88468) | type SchemaTimelineAssignedIssueEvent = components['schemas']['timeline-... type SchemaTimelineUnassignedIssueEvent (line 88469) | type SchemaTimelineUnassignedIssueEvent = components['schemas']['timelin... type SchemaStateChangeIssueEvent (line 88470) | type SchemaStateChangeIssueEvent = components['schemas']['state-change-i... type SchemaTimelineIssueEvents (line 88471) | type SchemaTimelineIssueEvents = components['schemas']['timeline-issue-e... type SchemaDeployKey (line 88472) | type SchemaDeployKey = components['schemas']['deploy-key']; type SchemaLanguage (line 88473) | type SchemaLanguage = components['schemas']['language']; type SchemaLicenseContent (line 88474) | type SchemaLicenseContent = components['schemas']['license-content']; type SchemaMergedUpstream (line 88475) | type SchemaMergedUpstream = components['schemas']['merged-upstream']; type SchemaMilestone (line 88476) | type SchemaMilestone = components['schemas']['milestone']; type SchemaPagesSourceHash (line 88477) | type SchemaPagesSourceHash = components['schemas']['pages-source-hash']; type SchemaPagesHttpsCertificate (line 88478) | type SchemaPagesHttpsCertificate = components['schemas']['pages-https-ce... type SchemaPage (line 88479) | type SchemaPage = components['schemas']['page']; type SchemaPageBuild (line 88480) | type SchemaPageBuild = components['schemas']['page-build']; type SchemaPageBuildStatus (line 88481) | type SchemaPageBuildStatus = components['schemas']['page-build-status']; type SchemaPageDeployment (line 88482) | type SchemaPageDeployment = components['schemas']['page-deployment']; type SchemaPagesDeploymentStatus (line 88483) | type SchemaPagesDeploymentStatus = components['schemas']['pages-deployme... type SchemaPagesHealthCheck (line 88484) | type SchemaPagesHealthCheck = components['schemas']['pages-health-check']; type SchemaPullRequest (line 88485) | type SchemaPullRequest = components['schemas']['pull-request']; type SchemaPullRequestMergeResult (line 88486) | type SchemaPullRequestMergeResult = components['schemas']['pull-request-... type SchemaPullRequestReviewRequest (line 88487) | type SchemaPullRequestReviewRequest = components['schemas']['pull-reques... type SchemaPullRequestReview (line 88488) | type SchemaPullRequestReview = components['schemas']['pull-request-revie... type SchemaReviewComment (line 88489) | type SchemaReviewComment = components['schemas']['review-comment']; type SchemaReleaseAsset (line 88490) | type SchemaReleaseAsset = components['schemas']['release-asset']; type SchemaRelease (line 88491) | type SchemaRelease = components['schemas']['release']; type SchemaReleaseNotesContent (line 88492) | type SchemaReleaseNotesContent = components['schemas']['release-notes-co... type SchemaRepositoryRuleRulesetInfo (line 88493) | type SchemaRepositoryRuleRulesetInfo = components['schemas']['repository... type SchemaRepositoryRuleDetailed (line 88494) | type SchemaRepositoryRuleDetailed = components['schemas']['repository-ru... type SchemaSecretScanningAlert (line 88495) | type SchemaSecretScanningAlert = components['schemas']['secret-scanning-... type SchemaSecretScanningAlertResolutionComment (line 88496) | type SchemaSecretScanningAlertResolutionComment = components['schemas'][... type SchemaSecretScanningLocationCommit (line 88497) | type SchemaSecretScanningLocationCommit = components['schemas']['secret-... type SchemaSecretScanningLocationWikiCommit (line 88498) | type SchemaSecretScanningLocationWikiCommit = components['schemas']['sec... type SchemaSecretScanningLocationIssueTitle (line 88499) | type SchemaSecretScanningLocationIssueTitle = components['schemas']['sec... type SchemaSecretScanningLocationIssueBody (line 88500) | type SchemaSecretScanningLocationIssueBody = components['schemas']['secr... type SchemaSecretScanningLocationIssueComment (line 88501) | type SchemaSecretScanningLocationIssueComment = components['schemas']['s... type SchemaSecretScanningLocationDiscussionTitle (line 88502) | type SchemaSecretScanningLocationDiscussionTitle = components['schemas']... type SchemaSecretScanningLocationDiscussionBody (line 88503) | type SchemaSecretScanningLocationDiscussionBody = components['schemas'][... type SchemaSecretScanningLocationDiscussionComment (line 88504) | type SchemaSecretScanningLocationDiscussionComment = components['schemas... type SchemaSecretScanningLocationPullRequestTitle (line 88505) | type SchemaSecretScanningLocationPullRequestTitle = components['schemas'... type SchemaSecretScanningLocationPullRequestBody (line 88506) | type SchemaSecretScanningLocationPullRequestBody = components['schemas']... type SchemaSecretScanningLocationPullRequestComment (line 88507) | type SchemaSecretScanningLocationPullRequestComment = components['schema... type SchemaSecretScanningLocationPullRequestReview (line 88508) | type SchemaSecretScanningLocationPullRequestReview = components['schemas... type SchemaSecretScanningLocationPullRequestReviewComment (line 88509) | type SchemaSecretScanningLocationPullRequestReviewComment = components['... type SchemaSecretScanningLocation (line 88510) | type SchemaSecretScanningLocation = components['schemas']['secret-scanni... type SchemaSecretScanningPushProtectionBypassReason (line 88511) | type SchemaSecretScanningPushProtectionBypassReason = components['schema... type SchemaSecretScanningPushProtectionBypass (line 88512) | type SchemaSecretScanningPushProtectionBypass = components['schemas']['s... type SchemaSecretScanningScan (line 88513) | type SchemaSecretScanningScan = components['schemas']['secret-scanning-s... type SchemaSecretScanningScanHistory (line 88514) | type SchemaSecretScanningScanHistory = components['schemas']['secret-sca... type SchemaRepositoryAdvisoryCreate (line 88515) | type SchemaRepositoryAdvisoryCreate = components['schemas']['repository-... type SchemaPrivateVulnerabilityReportCreate (line 88516) | type SchemaPrivateVulnerabilityReportCreate = components['schemas']['pri... type SchemaRepositoryAdvisoryUpdate (line 88517) | type SchemaRepositoryAdvisoryUpdate = components['schemas']['repository-... type SchemaStargazer (line 88518) | type SchemaStargazer = components['schemas']['stargazer']; type SchemaCodeFrequencyStat (line 88519) | type SchemaCodeFrequencyStat = components['schemas']['code-frequency-sta... type SchemaCommitActivity (line 88520) | type SchemaCommitActivity = components['schemas']['commit-activity']; type SchemaContributorActivity (line 88521) | type SchemaContributorActivity = components['schemas']['contributor-acti... type SchemaParticipationStats (line 88522) | type SchemaParticipationStats = components['schemas']['participation-sta... type SchemaRepositorySubscription (line 88523) | type SchemaRepositorySubscription = components['schemas']['repository-su... type SchemaTag (line 88524) | type SchemaTag = components['schemas']['tag']; type SchemaTagProtection (line 88525) | type SchemaTagProtection = components['schemas']['tag-protection']; type SchemaTopic (line 88526) | type SchemaTopic = components['schemas']['topic']; type SchemaTraffic (line 88527) | type SchemaTraffic = components['schemas']['traffic']; type SchemaCloneTraffic (line 88528) | type SchemaCloneTraffic = components['schemas']['clone-traffic']; type SchemaContentTraffic (line 88529) | type SchemaContentTraffic = components['schemas']['content-traffic']; type SchemaReferrerTraffic (line 88530) | type SchemaReferrerTraffic = components['schemas']['referrer-traffic']; type SchemaViewTraffic (line 88531) | type SchemaViewTraffic = components['schemas']['view-traffic']; type SchemaSearchResultTextMatches (line 88532) | type SchemaSearchResultTextMatches = components['schemas']['search-resul... type SchemaCodeSearchResultItem (line 88533) | type SchemaCodeSearchResultItem = components['schemas']['code-search-res... type SchemaCommitSearchResultItem (line 88534) | type SchemaCommitSearchResultItem = components['schemas']['commit-search... type SchemaIssueSearchResultItem (line 88535) | type SchemaIssueSearchResultItem = components['schemas']['issue-search-r... type SchemaLabelSearchResultItem (line 88536) | type SchemaLabelSearchResultItem = components['schemas']['label-search-r... type SchemaRepoSearchResultItem (line 88537) | type SchemaRepoSearchResultItem = components['schemas']['repo-search-res... type SchemaTopicSearchResultItem (line 88538) | type SchemaTopicSearchResultItem = components['schemas']['topic-search-r... type SchemaUserSearchResultItem (line 88539) | type SchemaUserSearchResultItem = components['schemas']['user-search-res... type SchemaPrivateUser (line 88540) | type SchemaPrivateUser = components['schemas']['private-user']; type SchemaCodespacesSecret (line 88541) | type SchemaCodespacesSecret = components['schemas']['codespaces-secret']; type SchemaCodespacesUserPublicKey (line 88542) | type SchemaCodespacesUserPublicKey = components['schemas']['codespaces-u... type SchemaCodespaceExportDetails (line 88543) | type SchemaCodespaceExportDetails = components['schemas']['codespace-exp... type SchemaCodespaceWithFullRepository (line 88544) | type SchemaCodespaceWithFullRepository = components['schemas']['codespac... type SchemaEmail (line 88545) | type SchemaEmail = components['schemas']['email']; type SchemaGpgKey (line 88546) | type SchemaGpgKey = components['schemas']['gpg-key']; type SchemaKey (line 88547) | type SchemaKey = components['schemas']['key']; type SchemaMarketplaceAccount (line 88548) | type SchemaMarketplaceAccount = components['schemas']['marketplace-accou... type SchemaUserMarketplacePurchase (line 88549) | type SchemaUserMarketplacePurchase = components['schemas']['user-marketp... type SchemaSocialAccount (line 88550) | type SchemaSocialAccount = components['schemas']['social-account']; type SchemaSshSigningKey (line 88551) | type SchemaSshSigningKey = components['schemas']['ssh-signing-key']; type SchemaStarredRepository (line 88552) | type SchemaStarredRepository = components['schemas']['starred-repository']; type SchemaSigstoreBundle_0 (line 88553) | type SchemaSigstoreBundle_0 = components['schemas']['sigstore-bundle-0']; type SchemaHovercard (line 88554) | type SchemaHovercard = components['schemas']['hovercard']; type SchemaKeySimple (line 88555) | type SchemaKeySimple = components['schemas']['key-simple']; type SchemaEnterpriseWebhooks (line 88556) | type SchemaEnterpriseWebhooks = components['schemas']['enterprise-webhoo... type SchemaSimpleInstallation (line 88557) | type SchemaSimpleInstallation = components['schemas']['simple-installati... type SchemaOrganizationSimpleWebhooks (line 88558) | type SchemaOrganizationSimpleWebhooks = components['schemas']['organizat... type SchemaRepositoryWebhooks (line 88559) | type SchemaRepositoryWebhooks = components['schemas']['repository-webhoo... type SchemaWebhooksRule (line 88560) | type SchemaWebhooksRule = components['schemas']['webhooks_rule']; type SchemaSimpleCheckSuite (line 88561) | type SchemaSimpleCheckSuite = components['schemas']['simple-check-suite']; type SchemaCheckRunWithSimpleCheckSuite (line 88562) | type SchemaCheckRunWithSimpleCheckSuite = components['schemas']['check-r... type SchemaWebhooksCodeScanningCommitOid (line 88563) | type SchemaWebhooksCodeScanningCommitOid = components['schemas']['webhoo... type SchemaWebhooksCodeScanningRef (line 88564) | type SchemaWebhooksCodeScanningRef = components['schemas']['webhooks_cod... type SchemaWebhooksDeployPusherType (line 88565) | type SchemaWebhooksDeployPusherType = components['schemas']['webhooks_de... type SchemaWebhooksRef_0 (line 88566) | type SchemaWebhooksRef_0 = components['schemas']['webhooks_ref_0']; type SchemaWebhooksDeployKey (line 88567) | type SchemaWebhooksDeployKey = components['schemas']['webhooks_deploy_ke... type SchemaWebhooksWorkflow (line 88568) | type SchemaWebhooksWorkflow = components['schemas']['webhooks_workflow']; type SchemaWebhooksApprover (line 88569) | type SchemaWebhooksApprover = components['schemas']['webhooks_approver']; type SchemaWebhooksReviewers (line 88570) | type SchemaWebhooksReviewers = components['schemas']['webhooks_reviewers']; type SchemaWebhooksWorkflowJobRun (line 88571) | type SchemaWebhooksWorkflowJobRun = components['schemas']['webhooks_work... type SchemaWebhooksUser (line 88572) | type SchemaWebhooksUser = components['schemas']['webhooks_user']; type SchemaWebhooksAnswer (line 88573) | type SchemaWebhooksAnswer = components['schemas']['webhooks_answer']; type SchemaDiscussion (line 88574) | type SchemaDiscussion = components['schemas']['discussion']; type SchemaWebhooksComment (line 88575) | type SchemaWebhooksComment = components['schemas']['webhooks_comment']; type SchemaWebhooksLabel (line 88576) | type SchemaWebhooksLabel = components['schemas']['webhooks_label']; type SchemaWebhooksRepositories (line 88577) | type SchemaWebhooksRepositories = components['schemas']['webhooks_reposi... type SchemaWebhooksRepositoriesAdded (line 88578) | type SchemaWebhooksRepositoriesAdded = components['schemas']['webhooks_r... type SchemaWebhooksRepositorySelection (line 88579) | type SchemaWebhooksRepositorySelection = components['schemas']['webhooks... type SchemaWebhooksIssueComment (line 88580) | type SchemaWebhooksIssueComment = components['schemas']['webhooks_issue_... type SchemaWebhooksChanges (line 88581) | type SchemaWebhooksChanges = components['schemas']['webhooks_changes']; type SchemaWebhooksIssue (line 88582) | type SchemaWebhooksIssue = components['schemas']['webhooks_issue']; type SchemaWebhooksMilestone (line 88583) | type SchemaWebhooksMilestone = components['schemas']['webhooks_milestone']; type SchemaWebhooksIssue_2 (line 88584) | type SchemaWebhooksIssue_2 = components['schemas']['webhooks_issue_2']; type SchemaWebhooksUserMannequin (line 88585) | type SchemaWebhooksUserMannequin = components['schemas']['webhooks_user_... type SchemaWebhooksMarketplacePurchase (line 88586) | type SchemaWebhooksMarketplacePurchase = components['schemas']['webhooks... type SchemaWebhooksPreviousMarketplacePurchase (line 88587) | type SchemaWebhooksPreviousMarketplacePurchase = components['schemas']['... type SchemaWebhooksTeam (line 88588) | type SchemaWebhooksTeam = components['schemas']['webhooks_team']; type SchemaMergeGroup (line 88589) | type SchemaMergeGroup = components['schemas']['merge-group']; type SchemaNullableRepositoryWebhooks (line 88590) | type SchemaNullableRepositoryWebhooks = components['schemas']['nullable-... type SchemaWebhooksMilestone_3 (line 88591) | type SchemaWebhooksMilestone_3 = components['schemas']['webhooks_milesto... type SchemaWebhooksMembership (line 88592) | type SchemaWebhooksMembership = components['schemas']['webhooks_membersh... type SchemaPersonalAccessTokenRequest (line 88593) | type SchemaPersonalAccessTokenRequest = components['schemas']['personal-... type SchemaWebhooksProjectCard (line 88594) | type SchemaWebhooksProjectCard = components['schemas']['webhooks_project... type SchemaWebhooksProject (line 88595) | type SchemaWebhooksProject = components['schemas']['webhooks_project']; type SchemaWebhooksProjectColumn (line 88596) | type SchemaWebhooksProjectColumn = components['schemas']['webhooks_proje... type SchemaProjectsV2 (line 88597) | type SchemaProjectsV2 = components['schemas']['projects-v2']; type SchemaWebhooksProjectChanges (line 88598) | type SchemaWebhooksProjectChanges = components['schemas']['webhooks_proj... type SchemaProjectsV2ItemContentType (line 88599) | type SchemaProjectsV2ItemContentType = components['schemas']['projects-v... type SchemaProjectsV2Item (line 88600) | type SchemaProjectsV2Item = components['schemas']['projects-v2-item']; type SchemaProjectsV2SingleSelectOption (line 88601) | type SchemaProjectsV2SingleSelectOption = components['schemas']['project... type SchemaProjectsV2IterationSetting (line 88602) | type SchemaProjectsV2IterationSetting = components['schemas']['projects-... type SchemaProjectsV2StatusUpdate (line 88603) | type SchemaProjectsV2StatusUpdate = components['schemas']['projects-v2-s... type SchemaWebhooksNumber (line 88604) | type SchemaWebhooksNumber = components['schemas']['webhooks_number']; type SchemaPullRequestWebhook (line 88605) | type SchemaPullRequestWebhook = components['schemas']['pull-request-webh... type SchemaWebhooksPullRequest_5 (line 88606) | type SchemaWebhooksPullRequest_5 = components['schemas']['webhooks_pull_... type SchemaWebhooksReviewComment (line 88607) | type SchemaWebhooksReviewComment = components['schemas']['webhooks_revie... type SchemaWebhooksReview (line 88608) | type SchemaWebhooksReview = components['schemas']['webhooks_review']; type SchemaWebhooksNullableString (line 88609) | type SchemaWebhooksNullableString = components['schemas']['webhooks_null... type SchemaWebhooksRelease (line 88610) | type SchemaWebhooksRelease = components['schemas']['webhooks_release']; type SchemaWebhooksRelease_1 (line 88611) | type SchemaWebhooksRelease_1 = components['schemas']['webhooks_release_1']; type SchemaWebhooksAlert (line 88612) | type SchemaWebhooksAlert = components['schemas']['webhooks_alert']; type SchemaSecretScanningAlertResolutionWebhook (line 88613) | type SchemaSecretScanningAlertResolutionWebhook = components['schemas'][... type SchemaSecretScanningAlertWebhook (line 88614) | type SchemaSecretScanningAlertWebhook = components['schemas']['secret-sc... type SchemaWebhooksSecurityAdvisory (line 88615) | type SchemaWebhooksSecurityAdvisory = components['schemas']['webhooks_se... type SchemaWebhooksSponsorship (line 88616) | type SchemaWebhooksSponsorship = components['schemas']['webhooks_sponsor... type SchemaWebhooksEffectiveDate (line 88617) | type SchemaWebhooksEffectiveDate = components['schemas']['webhooks_effec... type SchemaWebhooksChanges_8 (line 88618) | type SchemaWebhooksChanges_8 = components['schemas']['webhooks_changes_8']; type SchemaWebhooksTeam_1 (line 88619) | type SchemaWebhooksTeam_1 = components['schemas']['webhooks_team_1']; type SchemaWebhookBranchProtectionConfigurationDisabled (line 88620) | type SchemaWebhookBranchProtectionConfigurationDisabled = components['sc... type SchemaWebhookBranchProtectionConfigurationEnabled (line 88621) | type SchemaWebhookBranchProtectionConfigurationEnabled = components['sch... type SchemaWebhookBranchProtectionRuleCreated (line 88622) | type SchemaWebhookBranchProtectionRuleCreated = components['schemas']['w... type SchemaWebhookBranchProtectionRuleDeleted (line 88623) | type SchemaWebhookBranchProtectionRuleDeleted = components['schemas']['w... type SchemaWebhookBranchProtectionRuleEdited (line 88624) | type SchemaWebhookBranchProtectionRuleEdited = components['schemas']['we... type SchemaWebhookCheckRunCompleted (line 88625) | type SchemaWebhookCheckRunCompleted = components['schemas']['webhook-che... type SchemaWebhookCheckRunCompletedFormEncoded (line 88626) | type SchemaWebhookCheckRunCompletedFormEncoded = components['schemas']['... type SchemaWebhookCheckRunCreated (line 88627) | type SchemaWebhookCheckRunCreated = components['schemas']['webhook-check... type SchemaWebhookCheckRunCreatedFormEncoded (line 88628) | type SchemaWebhookCheckRunCreatedFormEncoded = components['schemas']['we... type SchemaWebhookCheckRunRequestedAction (line 88629) | type SchemaWebhookCheckRunRequestedAction = components['schemas']['webho... type SchemaWebhookCheckRunRequestedActionFormEncoded (line 88630) | type SchemaWebhookCheckRunRequestedActionFormEncoded = components['schem... type SchemaWebhookCheckRunRerequested (line 88631) | type SchemaWebhookCheckRunRerequested = components['schemas']['webhook-c... type SchemaWebhookCheckRunRerequestedFormEncoded (line 88632) | type SchemaWebhookCheckRunRerequestedFormEncoded = components['schemas']... type SchemaWebhookCheckSuiteCompleted (line 88633) | type SchemaWebhookCheckSuiteCompleted = components['schemas']['webhook-c... type SchemaWebhookCheckSuiteRequested (line 88634) | type SchemaWebhookCheckSuiteRequested = components['schemas']['webhook-c... type SchemaWebhookCheckSuiteRerequested (line 88635) | type SchemaWebhookCheckSuiteRerequested = components['schemas']['webhook... type SchemaWebhookCodeScanningAlertAppearedInBranch (line 88636) | type SchemaWebhookCodeScanningAlertAppearedInBranch = components['schema... type SchemaWebhookCodeScanningAlertClosedByUser (line 88637) | type SchemaWebhookCodeScanningAlertClosedByUser = components['schemas'][... type SchemaWebhookCodeScanningAlertCreated (line 88638) | type SchemaWebhookCodeScanningAlertCreated = components['schemas']['webh... type SchemaWebhookCodeScanningAlertFixed (line 88639) | type SchemaWebhookCodeScanningAlertFixed = components['schemas']['webhoo... type SchemaWebhookCodeScanningAlertReopened (line 88640) | type SchemaWebhookCodeScanningAlertReopened = components['schemas']['web... type SchemaWebhookCodeScanningAlertReopenedByUser (line 88641) | type SchemaWebhookCodeScanningAlertReopenedByUser = components['schemas'... type SchemaWebhookCommitCommentCreated (line 88642) | type SchemaWebhookCommitCommentCreated = components['schemas']['webhook-... type SchemaWebhookCreate (line 88643) | type SchemaWebhookCreate = components['schemas']['webhook-create']; type SchemaWebhookCustomPropertyCreated (line 88644) | type SchemaWebhookCustomPropertyCreated = components['schemas']['webhook... type SchemaWebhookCustomPropertyDeleted (line 88645) | type SchemaWebhookCustomPropertyDeleted = components['schemas']['webhook... type SchemaWebhookCustomPropertyUpdated (line 88646) | type SchemaWebhookCustomPropertyUpdated = components['schemas']['webhook... type SchemaWebhookCustomPropertyValuesUpdated (line 88647) | type SchemaWebhookCustomPropertyValuesUpdated = components['schemas']['w... type SchemaWebhookDelete (line 88648) | type SchemaWebhookDelete = components['schemas']['webhook-delete']; type SchemaWebhookDependabotAlertAutoDismissed (line 88649) | type SchemaWebhookDependabotAlertAutoDismissed = components['schemas']['... type SchemaWebhookDependabotAlertAutoReopened (line 88650) | type SchemaWebhookDependabotAlertAutoReopened = components['schemas']['w... type SchemaWebhookDependabotAlertCreated (line 88651) | type SchemaWebhookDependabotAlertCreated = components['schemas']['webhoo... type SchemaWebhookDependabotAlertDismissed (line 88652) | type SchemaWebhookDependabotAlertDismissed = components['schemas']['webh... type SchemaWebhookDependabotAlertFixed (line 88653) | type SchemaWebhookDependabotAlertFixed = components['schemas']['webhook-... type SchemaWebhookDependabotAlertReintroduced (line 88654) | type SchemaWebhookDependabotAlertReintroduced = components['schemas']['w... type SchemaWebhookDependabotAlertReopened (line 88655) | type SchemaWebhookDependabotAlertReopened = components['schemas']['webho... type SchemaWebhookDeployKeyCreated (line 88656) | type SchemaWebhookDeployKeyCreated = components['schemas']['webhook-depl... type SchemaWebhookDeployKeyDeleted (line 88657) | type SchemaWebhookDeployKeyDeleted = components['schemas']['webhook-depl... type SchemaWebhookDeploymentCreated (line 88658) | type SchemaWebhookDeploymentCreated = components['schemas']['webhook-dep... type SchemaWebhookDeploymentProtectionRuleRequested (line 88659) | type SchemaWebhookDeploymentProtectionRuleRequested = components['schema... type SchemaWebhookDeploymentReviewApproved (line 88660) | type SchemaWebhookDeploymentReviewApproved = components['schemas']['webh... type SchemaWebhookDeploymentReviewRejected (line 88661) | type SchemaWebhookDeploymentReviewRejected = components['schemas']['webh... type SchemaWebhookDeploymentReviewRequested (line 88662) | type SchemaWebhookDeploymentReviewRequested = components['schemas']['web... type SchemaWebhookDeploymentStatusCreated (line 88663) | type SchemaWebhookDeploymentStatusCreated = components['schemas']['webho... type SchemaWebhookDiscussionAnswered (line 88664) | type SchemaWebhookDiscussionAnswered = components['schemas']['webhook-di... type SchemaWebhookDiscussionCategoryChanged (line 88665) | type SchemaWebhookDiscussionCategoryChanged = components['schemas']['web... type SchemaWebhookDiscussionClosed (line 88666) | type SchemaWebhookDiscussionClosed = components['schemas']['webhook-disc... type SchemaWebhookDiscussionCommentCreated (line 88667) | type SchemaWebhookDiscussionCommentCreated = components['schemas']['webh... type SchemaWebhookDiscussionCommentDeleted (line 88668) | type SchemaWebhookDiscussionCommentDeleted = components['schemas']['webh... type SchemaWebhookDiscussionCommentEdited (line 88669) | type SchemaWebhookDiscussionCommentEdited = components['schemas']['webho... type SchemaWebhookDiscussionCreated (line 88670) | type SchemaWebhookDiscussionCreated = components['schemas']['webhook-dis... type SchemaWebhookDiscussionDeleted (line 88671) | type SchemaWebhookDiscussionDeleted = components['schemas']['webhook-dis... type SchemaWebhookDiscussionEdited (line 88672) | type SchemaWebhookDiscussionEdited = components['schemas']['webhook-disc... type SchemaWebhookDiscussionLabeled (line 88673) | type SchemaWebhookDiscussionLabeled = components['schemas']['webhook-dis... type SchemaWebhookDiscussionLocked (line 88674) | type SchemaWebhookDiscussionLocked = components['schemas']['webhook-disc... type SchemaWebhookDiscussionPinned (line 88675) | type SchemaWebhookDiscussionPinned = components['schemas']['webhook-disc... type SchemaWebhookDiscussionReopened (line 88676) | type SchemaWebhookDiscussionReopened = components['schemas']['webhook-di... type SchemaWebhookDiscussionTransferred (line 88677) | type SchemaWebhookDiscussionTransferred = components['schemas']['webhook... type SchemaWebhookDiscussionUnanswered (line 88678) | type SchemaWebhookDiscussionUnanswered = components['schemas']['webhook-... type SchemaWebhookDiscussionUnlabeled (line 88679) | type SchemaWebhookDiscussionUnlabeled = components['schemas']['webhook-d... type SchemaWebhookDiscussionUnlocked (line 88680) | type SchemaWebhookDiscussionUnlocked = components['schemas']['webhook-di... type SchemaWebhookDiscussionUnpinned (line 88681) | type SchemaWebhookDiscussionUnpinned = components['schemas']['webhook-di... type SchemaWebhookFork (line 88682) | type SchemaWebhookFork = components['schemas']['webhook-fork']; type SchemaWebhookGithubAppAuthorizationRevoked (line 88683) | type SchemaWebhookGithubAppAuthorizationRevoked = components['schemas'][... type SchemaWebhookGollum (line 88684) | type SchemaWebhookGollum = components['schemas']['webhook-gollum']; type SchemaWebhookInstallationCreated (line 88685) | type SchemaWebhookInstallationCreated = components['schemas']['webhook-i... type SchemaWebhookInstallationDeleted (line 88686) | type SchemaWebhookInstallationDeleted = components['schemas']['webhook-i... type SchemaWebhookInstallationNewPermissionsAccepted (line 88687) | type SchemaWebhookInstallationNewPermissionsAccepted = components['schem... type SchemaWebhookInstallationRepositoriesAdded (line 88688) | type SchemaWebhookInstallationRepositoriesAdded = components['schemas'][... type SchemaWebhookInstallationRepositoriesRemoved (line 88689) | type SchemaWebhookInstallationRepositoriesRemoved = components['schemas'... type SchemaWebhookInstallationSuspend (line 88690) | type SchemaWebhookInstallationSuspend = components['schemas']['webhook-i... type SchemaWebhookInstallationTargetRenamed (line 88691) | type SchemaWebhookInstallationTargetRenamed = components['schemas']['web... type SchemaWebhookInstallationUnsuspend (line 88692) | type SchemaWebhookInstallationUnsuspend = components['schemas']['webhook... type SchemaWebhookIssueCommentCreated (line 88693) | type SchemaWebhookIssueCommentCreated = components['schemas']['webhook-i... type SchemaWebhookIssueCommentDeleted (line 88694) | type SchemaWebhookIssueCommentDeleted = components['schemas']['webhook-i... type SchemaWebhookIssueCommentEdited (line 88695) | type SchemaWebhookIssueCommentEdited = components['schemas']['webhook-is... type SchemaWebhookIssuesAssigned (line 88696) | type SchemaWebhookIssuesAssigned = components['schemas']['webhook-issues... type SchemaWebhookIssuesClosed (line 88697) | type SchemaWebhookIssuesClosed = components['schemas']['webhook-issues-c... type SchemaWebhookIssuesDeleted (line 88698) | type SchemaWebhookIssuesDeleted = components['schemas']['webhook-issues-... type SchemaWebhookIssuesDemilestoned (line 88699) | type SchemaWebhookIssuesDemilestoned = components['schemas']['webhook-is... type SchemaWebhookIssuesEdited (line 88700) | type SchemaWebhookIssuesEdited = components['schemas']['webhook-issues-e... type SchemaWebhookIssuesLabeled (line 88701) | type SchemaWebhookIssuesLabeled = components['schemas']['webhook-issues-... type SchemaWebhookIssuesLocked (line 88702) | type SchemaWebhookIssuesLocked = components['schemas']['webhook-issues-l... type SchemaWebhookIssuesMilestoned (line 88703) | type SchemaWebhookIssuesMilestoned = components['schemas']['webhook-issu... type SchemaWebhookIssuesOpened (line 88704) | type SchemaWebhookIssuesOpened = components['schemas']['webhook-issues-o... type SchemaWebhookIssuesPinned (line 88705) | type SchemaWebhookIssuesPinned = components['schemas']['webhook-issues-p... type SchemaWebhookIssuesReopened (line 88706) | type SchemaWebhookIssuesReopened = components['schemas']['webhook-issues... type SchemaWebhookIssuesTransferred (line 88707) | type SchemaWebhookIssuesTransferred = components['schemas']['webhook-iss... type SchemaWebhookIssuesUnassigned (line 88708) | type SchemaWebhookIssuesUnassigned = components['schemas']['webhook-issu... type SchemaWebhookIssuesUnlabeled (line 88709) | type SchemaWebhookIssuesUnlabeled = components['schemas']['webhook-issue... type SchemaWebhookIssuesUnlocked (line 88710) | type SchemaWebhookIssuesUnlocked = components['schemas']['webhook-issues... type SchemaWebhookIssuesUnpinned (line 88711) | type SchemaWebhookIssuesUnpinned = components['schemas']['webhook-issues... type SchemaWebhookLabelCreated (line 88712) | type SchemaWebhookLabelCreated = components['schemas']['webhook-label-cr... type SchemaWebhookLabelDeleted (line 88713) | type SchemaWebhookLabelDeleted = components['schemas']['webhook-label-de... type SchemaWebhookLabelEdited (line 88714) | type SchemaWebhookLabelEdited = components['schemas']['webhook-label-edi... type SchemaWebhookMarketplacePurchaseCancelled (line 88715) | type SchemaWebhookMarketplacePurchaseCancelled = components['schemas']['... type SchemaWebhookMarketplacePurchaseChanged (line 88716) | type SchemaWebhookMarketplacePurchaseChanged = components['schemas']['we... type SchemaWebhookMarketplacePurchasePendingChange (line 88717) | type SchemaWebhookMarketplacePurchasePendingChange = components['schemas... type SchemaWebhookMarketplacePurchasePendingChangeCancelled (line 88718) | type SchemaWebhookMarketplacePurchasePendingChangeCancelled = components... type SchemaWebhookMarketplacePurchasePurchased (line 88719) | type SchemaWebhookMarketplacePurchasePurchased = components['schemas']['... type SchemaWebhookMemberAdded (line 88720) | type SchemaWebhookMemberAdded = components['schemas']['webhook-member-ad... type SchemaWebhookMemberEdited (line 88721) | type SchemaWebhookMemberEdited = components['schemas']['webhook-member-e... type SchemaWebhookMemberRemoved (line 88722) | type SchemaWebhookMemberRemoved = components['schemas']['webhook-member-... type SchemaWebhookMembershipAdded (line 88723) | type SchemaWebhookMembershipAdded = components['schemas']['webhook-membe... type SchemaWebhookMembershipRemoved (line 88724) | type SchemaWebhookMembershipRemoved = components['schemas']['webhook-mem... type SchemaWebhookMergeGroupChecksRequested (line 88725) | type SchemaWebhookMergeGroupChecksRequested = components['schemas']['web... type SchemaWebhookMergeGroupDestroyed (line 88726) | type SchemaWebhookMergeGroupDestroyed = components['schemas']['webhook-m... type SchemaWebhookMetaDeleted (line 88727) | type SchemaWebhookMetaDeleted = components['schemas']['webhook-meta-dele... type SchemaWebhookMilestoneClosed (line 88728) | type SchemaWebhookMilestoneClosed = components['schemas']['webhook-miles... type SchemaWebhookMilestoneCreated (line 88729) | type SchemaWebhookMilestoneCreated = components['schemas']['webhook-mile... type SchemaWebhookMilestoneDeleted (line 88730) | type SchemaWebhookMilestoneDeleted = components['schemas']['webhook-mile... type SchemaWebhookMilestoneEdited (line 88731) | type SchemaWebhookMilestoneEdited = components['schemas']['webhook-miles... type SchemaWebhookMilestoneOpened (line 88732) | type SchemaWebhookMilestoneOpened = components['schemas']['webhook-miles... type SchemaWebhookOrgBlockBlocked (line 88733) | type SchemaWebhookOrgBlockBlocked = components['schemas']['webhook-org-b... type SchemaWebhookOrgBlockUnblocked (line 88734) | type SchemaWebhookOrgBlockUnblocked = components['schemas']['webhook-org... type SchemaWebhookOrganizationDeleted (line 88735) | type SchemaWebhookOrganizationDeleted = components['schemas']['webhook-o... type SchemaWebhookOrganizationMemberAdded (line 88736) | type SchemaWebhookOrganizationMemberAdded = components['schemas']['webho... type SchemaWebhookOrganizationMemberInvited (line 88737) | type SchemaWebhookOrganizationMemberInvited = components['schemas']['web... type SchemaWebhookOrganizationMemberRemoved (line 88738) | type SchemaWebhookOrganizationMemberRemoved = components['schemas']['web... type SchemaWebhookOrganizationRenamed (line 88739) | type SchemaWebhookOrganizationRenamed = components['schemas']['webhook-o... type SchemaWebhookRubygemsMetadata (line 88740) | type SchemaWebhookRubygemsMetadata = components['schemas']['webhook-ruby... type SchemaWebhookPackagePublished (line 88741) | type SchemaWebhookPackagePublished = components['schemas']['webhook-pack... type SchemaWebhookPackageUpdated (line 88742) | type SchemaWebhookPackageUpdated = components['schemas']['webhook-packag... type SchemaWebhookPageBuild (line 88743) | type SchemaWebhookPageBuild = components['schemas']['webhook-page-build']; type SchemaWebhookPersonalAccessTokenRequestApproved (line 88744) | type SchemaWebhookPersonalAccessTokenRequestApproved = components['schem... type SchemaWebhookPersonalAccessTokenRequestCancelled (line 88745) | type SchemaWebhookPersonalAccessTokenRequestCancelled = components['sche... type SchemaWebhookPersonalAccessTokenRequestCreated (line 88746) | type SchemaWebhookPersonalAccessTokenRequestCreated = components['schema... type SchemaWebhookPersonalAccessTokenRequestDenied (line 88747) | type SchemaWebhookPersonalAccessTokenRequestDenied = components['schemas... type SchemaWebhookPing (line 88748) | type SchemaWebhookPing = components['schemas']['webhook-ping']; type SchemaWebhookPingFormEncoded (line 88749) | type SchemaWebhookPingFormEncoded = components['schemas']['webhook-ping-... type SchemaWebhookProjectCardConverted (line 88750) | type SchemaWebhookProjectCardConverted = components['schemas']['webhook-... type SchemaWebhookProjectCardCreated (line 88751) | type SchemaWebhookProjectCardCreated = components['schemas']['webhook-pr... type SchemaWebhookProjectCardDeleted (line 88752) | type SchemaWebhookProjectCardDeleted = components['schemas']['webhook-pr... type SchemaWebhookProjectCardEdited (line 88753) | type SchemaWebhookProjectCardEdited = components['schemas']['webhook-pro... type SchemaWebhookProjectCardMoved (line 88754) | type SchemaWebhookProjectCardMoved = components['schemas']['webhook-proj... type SchemaWebhookProjectClosed (line 88755) | type SchemaWebhookProjectClosed = components['schemas']['webhook-project... type SchemaWebhookProjectColumnCreated (line 88756) | type SchemaWebhookProjectColumnCreated = components['schemas']['webhook-... type SchemaWebhookProjectColumnDeleted (line 88757) | type SchemaWebhookProjectColumnDeleted = components['schemas']['webhook-... type SchemaWebhookProjectColumnEdited (line 88758) | type SchemaWebhookProjectColumnEdited = components['schemas']['webhook-p... type SchemaWebhookProjectColumnMoved (line 88759) | type SchemaWebhookProjectColumnMoved = components['schemas']['webhook-pr... type SchemaWebhookProjectCreated (line 88760) | type SchemaWebhookProjectCreated = components['schemas']['webhook-projec... type SchemaWebhookProjectDeleted (line 88761) | type SchemaWebhookProjectDeleted = components['schemas']['webhook-projec... type SchemaWebhookProjectEdited (line 88762) | type SchemaWebhookProjectEdited = components['schemas']['webhook-project... type SchemaWebhookProjectReopened (line 88763) | type SchemaWebhookProjectReopened = components['schemas']['webhook-proje... type SchemaWebhookProjectsV2ProjectClosed (line 88764) | type SchemaWebhookProjectsV2ProjectClosed = components['schemas']['webho... type SchemaWebhookProjectsV2ProjectCreated (line 88765) | type SchemaWebhookProjectsV2ProjectCreated = components['schemas']['webh... type SchemaWebhookProjectsV2ProjectDeleted (line 88766) | type SchemaWebhookProjectsV2ProjectDeleted = components['schemas']['webh... type SchemaWebhookProjectsV2ProjectEdited (line 88767) | type SchemaWebhookProjectsV2ProjectEdited = components['schemas']['webho... type SchemaWebhookProjectsV2ItemArchived (line 88768) | type SchemaWebhookProjectsV2ItemArchived = components['schemas']['webhoo... type SchemaWebhookProjectsV2ItemConverted (line 88769) | type SchemaWebhookProjectsV2ItemConverted = components['schemas']['webho... type SchemaWebhookProjectsV2ItemCreated (line 88770) | type SchemaWebhookProjectsV2ItemCreated = components['schemas']['webhook... type SchemaWebhookProjectsV2ItemDeleted (line 88771) | type SchemaWebhookProjectsV2ItemDeleted = components['schemas']['webhook... type SchemaWebhookProjectsV2ItemEdited (line 88772) | type SchemaWebhookProjectsV2ItemEdited = components['schemas']['webhook-... type SchemaWebhookProjectsV2ItemReordered (line 88773) | type SchemaWebhookProjectsV2ItemReordered = components['schemas']['webho... type SchemaWebhookProjectsV2ItemRestored (line 88774) | type SchemaWebhookProjectsV2ItemRestored = components['schemas']['webhoo... type SchemaWebhookProjectsV2ProjectReopened (line 88775) | type SchemaWebhookProjectsV2ProjectReopened = components['schemas']['web... type SchemaWebhookProjectsV2StatusUpdateCreated (line 88776) | type SchemaWebhookProjectsV2StatusUpdateCreated = components['schemas'][... type SchemaWebhookProjectsV2StatusUpdateDeleted (line 88777) | type SchemaWebhookProjectsV2StatusUpdateDeleted = components['schemas'][... type SchemaWebhookProjectsV2StatusUpdateEdited (line 88778) | type SchemaWebhookProjectsV2StatusUpdateEdited = components['schemas']['... type SchemaWebhookPublic (line 88779) | type SchemaWebhookPublic = components['schemas']['webhook-public']; type SchemaWebhookPullRequestAssigned (line 88780) | type SchemaWebhookPullRequestAssigned = components['schemas']['webhook-p... type SchemaWebhookPullRequestAutoMergeDisabled (line 88781) | type SchemaWebhookPullRequestAutoMergeDisabled = components['schemas']['... type SchemaWebhookPullRequestAutoMergeEnabled (line 88782) | type SchemaWebhookPullRequestAutoMergeEnabled = components['schemas']['w... type SchemaWebhookPullRequestClosed (line 88783) | type SchemaWebhookPullRequestClosed = components['schemas']['webhook-pul... type SchemaWebhookPullRequestConvertedToDraft (line 88784) | type SchemaWebhookPullRequestConvertedToDraft = components['schemas']['w... type SchemaWebhookPullRequestDemilestoned (line 88785) | type SchemaWebhookPullRequestDemilestoned = components['schemas']['webho... type SchemaWebhookPullRequestDequeued (line 88786) | type SchemaWebhookPullRequestDequeued = components['schemas']['webhook-p... type SchemaWebhookPullRequestEdited (line 88787) | type SchemaWebhookPullRequestEdited = components['schemas']['webhook-pul... type SchemaWebhookPullRequestEnqueued (line 88788) | type SchemaWebhookPullRequestEnqueued = components['schemas']['webhook-p... type SchemaWebhookPullRequestLabeled (line 88789) | type SchemaWebhookPullRequestLabeled = components['schemas']['webhook-pu... type SchemaWebhookPullRequestLocked (line 88790) | type SchemaWebhookPullRequestLocked = components['schemas']['webhook-pul... type SchemaWebhookPullRequestMilestoned (line 88791) | type SchemaWebhookPullRequestMilestoned = components['schemas']['webhook... type SchemaWebhookPullRequestOpened (line 88792) | type SchemaWebhookPullRequestOpened = components['schemas']['webhook-pul... type SchemaWebhookPullRequestReadyForReview (line 88793) | type SchemaWebhookPullRequestReadyForReview = components['schemas']['web... type SchemaWebhookPullRequestReopened (line 88794) | type SchemaWebhookPullRequestReopened = components['schemas']['webhook-p... type SchemaWebhookPullRequestReviewCommentCreated (line 88795) | type SchemaWebhookPullRequestReviewCommentCreated = components['schemas'... type SchemaWebhookPullRequestReviewCommentDeleted (line 88796) | type SchemaWebhookPullRequestReviewCommentDeleted = components['schemas'... type SchemaWebhookPullRequestReviewCommentEdited (line 88797) | type SchemaWebhookPullRequestReviewCommentEdited = components['schemas']... type SchemaWebhookPullRequestReviewDismissed (line 88798) | type SchemaWebhookPullRequestReviewDismissed = components['schemas']['we... type SchemaWebhookPullRequestReviewEdited (line 88799) | type SchemaWebhookPullRequestReviewEdited = components['schemas']['webho... type SchemaWebhookPullRequestReviewRequestRemoved (line 88800) | type SchemaWebhookPullRequestReviewRequestRemoved = components['schemas'... type SchemaWebhookPullRequestReviewRequested (line 88801) | type SchemaWebhookPullRequestReviewRequested = components['schemas']['we... type SchemaWebhookPullRequestReviewSubmitted (line 88802) | type SchemaWebhookPullRequestReviewSubmitted = components['schemas']['we... type SchemaWebhookPullRequestReviewThreadResolved (line 88803) | type SchemaWebhookPullRequestReviewThreadResolved = components['schemas'... type SchemaWebhookPullRequestReviewThreadUnresolved (line 88804) | type SchemaWebhookPullRequestReviewThreadUnresolved = components['schema... type SchemaWebhookPullRequestSynchronize (line 88805) | type SchemaWebhookPullRequestSynchronize = components['schemas']['webhoo... type SchemaWebhookPullRequestUnassigned (line 88806) | type SchemaWebhookPullRequestUnassigned = components['schemas']['webhook... type SchemaWebhookPullRequestUnlabeled (line 88807) | type SchemaWebhookPullRequestUnlabeled = components['schemas']['webhook-... type SchemaWebhookPullRequestUnlocked (line 88808) | type SchemaWebhookPullRequestUnlocked = components['schemas']['webhook-p... type SchemaWebhookPush (line 88809) | type SchemaWebhookPush = components['schemas']['webhook-push']; type SchemaWebhookRegistryPackagePublished (line 88810) | type SchemaWebhookRegistryPackagePublished = components['schemas']['webh... type SchemaWebhookRegistryPackageUpdated (line 88811) | type SchemaWebhookRegistryPackageUpdated = components['schemas']['webhoo... type SchemaWebhookReleaseCreated (line 88812) | type SchemaWebhookReleaseCreated = components['schemas']['webhook-releas... type SchemaWebhookReleaseDeleted (line 88813) | type SchemaWebhookReleaseDeleted = components['schemas']['webhook-releas... type SchemaWebhookReleaseEdited (line 88814) | type SchemaWebhookReleaseEdited = components['schemas']['webhook-release... type SchemaWebhookReleasePrereleased (line 88815) | type SchemaWebhookReleasePrereleased = components['schemas']['webhook-re... type SchemaWebhookReleasePublished (line 88816) | type SchemaWebhookReleasePublished = components['schemas']['webhook-rele... type SchemaWebhookReleaseReleased (line 88817) | type SchemaWebhookReleaseReleased = components['schemas']['webhook-relea... type SchemaWebhookReleaseUnpublished (line 88818) | type SchemaWebhookReleaseUnpublished = components['schemas']['webhook-re... type SchemaWebhookRepositoryAdvisoryPublished (line 88819) | type SchemaWebhookRepositoryAdvisoryPublished = components['schemas']['w... type SchemaWebhookRepositoryAdvisoryReported (line 88820) | type SchemaWebhookRepositoryAdvisoryReported = components['schemas']['we... type SchemaWebhookRepositoryArchived (line 88821) | type SchemaWebhookRepositoryArchived = components['schemas']['webhook-re... type SchemaWebhookRepositoryCreated (line 88822) | type SchemaWebhookRepositoryCreated = components['schemas']['webhook-rep... type SchemaWebhookRepositoryDeleted (line 88823) | type SchemaWebhookRepositoryDeleted = components['schemas']['webhook-rep... type SchemaWebhookRepositoryDispatchSample (line 88824) | type SchemaWebhookRepositoryDispatchSample = components['schemas']['webh... type SchemaWebhookRepositoryEdited (line 88825) | type SchemaWebhookRepositoryEdited = components['schemas']['webhook-repo... type SchemaWebhookRepositoryImport (line 88826) | type SchemaWebhookRepositoryImport = components['schemas']['webhook-repo... type SchemaWebhookRepositoryPrivatized (line 88827) | type SchemaWebhookRepositoryPrivatized = components['schemas']['webhook-... type SchemaWebhookRepositoryPublicized (line 88828) | type SchemaWebhookRepositoryPublicized = components['schemas']['webhook-... type SchemaWebhookRepositoryRenamed (line 88829) | type SchemaWebhookRepositoryRenamed = components['schemas']['webhook-rep... type SchemaWebhookRepositoryRulesetCreated (line 88830) | type SchemaWebhookRepositoryRulesetCreated = components['schemas']['webh... type SchemaWebhookRepositoryRulesetDeleted (line 88831) | type SchemaWebhookRepositoryRulesetDeleted = components['schemas']['webh... type SchemaWebhookRepositoryRulesetEdited (line 88832) | type SchemaWebhookRepositoryRulesetEdited = components['schemas']['webho... type SchemaWebhookRepositoryTransferred (line 88833) | type SchemaWebhookRepositoryTransferred = components['schemas']['webhook... type SchemaWebhookRepositoryUnarchived (line 88834) | type SchemaWebhookRepositoryUnarchived = components['schemas']['webhook-... type SchemaWebhookRepositoryVulnerabilityAlertCreate (line 88835) | type SchemaWebhookRepositoryVulnerabilityAlertCreate = components['schem... type SchemaWebhookRepositoryVulnerabilityAlertDismiss (line 88836) | type SchemaWebhookRepositoryVulnerabilityAlertDismiss = components['sche... type SchemaWebhookRepositoryVulnerabilityAlertReopen (line 88837) | type SchemaWebhookRepositoryVulnerabilityAlertReopen = components['schem... type SchemaWebhookRepositoryVulnerabilityAlertResolve (line 88838) | type SchemaWebhookRepositoryVulnerabilityAlertResolve = components['sche... type SchemaWebhookSecretScanningAlertCreated (line 88839) | type SchemaWebhookSecretScanningAlertCreated = components['schemas']['we... type SchemaWebhookSecretScanningAlertLocationCreated (line 88840) | type SchemaWebhookSecretScanningAlertLocationCreated = components['schem... type SchemaWebhookSecretScanningAlertLocationCreatedFormEncoded (line 88841) | type SchemaWebhookSecretScanningAlertLocationCreatedFormEncoded = compon... type SchemaWebhookSecretScanningAlertPubliclyLeaked (line 88842) | type SchemaWebhookSecretScanningAlertPubliclyLeaked = components['schema... type SchemaWebhookSecretScanningAlertReopened (line 88843) | type SchemaWebhookSecretScanningAlertReopened = components['schemas']['w... type SchemaWebhookSecretScanningAlertResolved (line 88844) | type SchemaWebhookSecretScanningAlertResolved = components['schemas']['w... type SchemaWebhookSecretScanningAlertValidated (line 88845) | type SchemaWebhookSecretScanningAlertValidated = components['schemas']['... type SchemaWebhookSecretScanningScanCompleted (line 88846) | type SchemaWebhookSecretScanningScanCompleted = components['schemas']['w... type SchemaWebhookSecurityAdvisoryPublished (line 88847) | type SchemaWebhookSecurityAdvisoryPublished = components['schemas']['web... type SchemaWebhookSecurityAdvisoryUpdated (line 88848) | type SchemaWebhookSecurityAdvisoryUpdated = components['schemas']['webho... type SchemaWebhookSecurityAdvisoryWithdrawn (line 88849) | type SchemaWebhookSecurityAdvisoryWithdrawn = components['schemas']['web... type SchemaWebhookSecurityAndAnalysis (line 88850) | type SchemaWebhookSecurityAndAnalysis = components['schemas']['webhook-s... type SchemaWebhookSponsorshipCancelled (line 88851) | type SchemaWebhookSponsorshipCancelled = components['schemas']['webhook-... type SchemaWebhookSponsorshipCreated (line 88852) | type SchemaWebhookSponsorshipCreated = components['schemas']['webhook-sp... type SchemaWebhookSponsorshipEdited (line 88853) | type SchemaWebhookSponsorshipEdited = components['schemas']['webhook-spo... type SchemaWebhookSponsorshipPendingCancellation (line 88854) | type SchemaWebhookSponsorshipPendingCancellation = components['schemas']... type SchemaWebhookSponsorshipPendingTierChange (line 88855) | type SchemaWebhookSponsorshipPendingTierChange = components['schemas']['... type SchemaWebhookSponsorshipTierChanged (line 88856) | type SchemaWebhookSponsorshipTierChanged = components['schemas']['webhoo... type SchemaWebhookStarCreated (line 88857) | type SchemaWebhookStarCreated = components['schemas']['webhook-star-crea... type SchemaWebhookStarDeleted (line 88858) | type SchemaWebhookStarDeleted = components['schemas']['webhook-star-dele... type SchemaWebhookStatus (line 88859) | type SchemaWebhookStatus = components['schemas']['webhook-status']; type SchemaWebhookSubIssuesParentIssueAdded (line 88860) | type SchemaWebhookSubIssuesParentIssueAdded = components['schemas']['web... type SchemaWebhookSubIssuesParentIssueRemoved (line 88861) | type SchemaWebhookSubIssuesParentIssueRemoved = components['schemas']['w... type SchemaWebhookSubIssuesSubIssueAdded (line 88862) | type SchemaWebhookSubIssuesSubIssueAdded = components['schemas']['webhoo... type SchemaWebhookSubIssuesSubIssueRemoved (line 88863) | type SchemaWebhookSubIssuesSubIssueRemoved = components['schemas']['webh... type SchemaWebhookTeamAdd (line 88864) | type SchemaWebhookTeamAdd = components['schemas']['webhook-team-add']; type SchemaWebhookTeamAddedToRepository (line 88865) | type SchemaWebhookTeamAddedToRepository = components['schemas']['webhook... type SchemaWebhookTeamCreated (line 88866) | type SchemaWebhookTeamCreated = components['schemas']['webhook-team-crea... type SchemaWebhookTeamDeleted (line 88867) | type SchemaWebhookTeamDeleted = components['schemas']['webhook-team-dele... type SchemaWebhookTeamEdited (line 88868) | type SchemaWebhookTeamEdited = components['schemas']['webhook-team-edite... type SchemaWebhookTeamRemovedFromRepository (line 88869) | type SchemaWebhookTeamRemovedFromRepository = components['schemas']['web... type SchemaWebhookWatchStarted (line 88870) | type SchemaWebhookWatchStarted = components['schemas']['webhook-watch-st... type SchemaWebhookWorkflowDispatch (line 88871) | type SchemaWebhookWorkflowDispatch = components['schemas']['webhook-work... type SchemaWebhookWorkflowJobCompleted (line 88872) | type SchemaWebhookWorkflowJobCompleted = components['schemas']['webhook-... type SchemaWebhookWorkflowJobInProgress (line 88873) | type SchemaWebhookWorkflowJobInProgress = components['schemas']['webhook... type SchemaWebhookWorkflowJobQueued (line 88874) | type SchemaWebhookWorkflowJobQueued = components['schemas']['webhook-wor... type SchemaWebhookWorkflowJobWaiting (line 88875) | type SchemaWebhookWorkflowJobWaiting = components['schemas']['webhook-wo... type SchemaWebhookWorkflowRunCompleted (line 88876) | type SchemaWebhookWorkflowRunCompleted = components['schemas']['webhook-... type SchemaWebhookWorkflowRunInProgress (line 88877) | type SchemaWebhookWorkflowRunInProgress = components['schemas']['webhook... type SchemaWebhookWorkflowRunRequested (line 88878) | type SchemaWebhookWorkflowRunRequested = components['schemas']['webhook-... type ResponseValidationFailedSimple (line 88879) | type ResponseValidationFailedSimple = components['responses']['validatio... type ResponseNotFound (line 88880) | type ResponseNotFound = components['responses']['not_found']; type ResponseBadRequest (line 88881) | type ResponseBadRequest = components['responses']['bad_request']; type ResponseValidationFailed (line 88882) | type ResponseValidationFailed = components['responses']['validation_fail... type ResponseAccepted (line 88883) | type ResponseAccepted = components['responses']['accepted']; type ResponseNotModified (line 88884) | type ResponseNotModified = components['responses']['not_modified']; type ResponseRequiresAuthentication (line 88885) | type ResponseRequiresAuthentication = components['responses']['requires_... type ResponseForbidden (line 88886) | type ResponseForbidden = components['responses']['forbidden']; type ResponseConflict (line 88887) | type ResponseConflict = components['responses']['conflict']; type ResponseNoContent (line 88888) | type ResponseNoContent = components['responses']['no_content']; type ResponseServiceUnavailable (line 88889) | type ResponseServiceUnavailable = components['responses']['service_unava... type ResponseForbiddenGist (line 88890) | type ResponseForbiddenGist = components['responses']['forbidden_gist']; type ResponseMovedPermanently (line 88891) | type ResponseMovedPermanently = components['responses']['moved_permanent... type ResponseBillingUsageReportOrg (line 88892) | type ResponseBillingUsageReportOrg = components['responses']['billing_us... type ResponseInternalError (line 88893) | type ResponseInternalError = components['responses']['internal_error']; type ResponseActionsRunnerJitconfig (line 88894) | type ResponseActionsRunnerJitconfig = components['responses']['actions_r... type ResponseActionsRunnerLabels (line 88895) | type ResponseActionsRunnerLabels = components['responses']['actions_runn... type ResponseActionsRunnerLabelsReadonly (line 88896) | type ResponseActionsRunnerLabelsReadonly = components['responses']['acti... type ResponseUsageMetricsApiDisabled (line 88897) | type ResponseUsageMetricsApiDisabled = components['responses']['usage_me... type ResponsePackageEsListError (line 88898) | type ResponsePackageEsListError = components['responses']['package_es_li... type ResponseGone (line 88899) | type ResponseGone = components['responses']['gone']; type ResponseTemporaryRedirect (line 88900) | type ResponseTemporaryRedirect = components['responses']['temporary_redi... type ResponseCodeScanningForbiddenRead (line 88901) | type ResponseCodeScanningForbiddenRead = components['responses']['code_s... type ResponseCodeScanningForbiddenWrite (line 88902) | type ResponseCodeScanningForbiddenWrite = components['responses']['code_... type ResponseCodeScanningBadRequest (line 88903) | type ResponseCodeScanningBadRequest = components['responses']['code_scan... type ResponseCodeScanningAutofixCreateForbidden (line 88904) | type ResponseCodeScanningAutofixCreateForbidden = components['responses'... type ResponseFound (line 88905) | type ResponseFound = components['responses']['found']; type ResponseCodeScanningConflict (line 88906) | type ResponseCodeScanningConflict = components['responses']['code_scanni... type ResponseDependencyReviewForbidden (line 88907) | type ResponseDependencyReviewForbidden = components['responses']['depend... type ResponsePorterMaintenance (line 88908) | type ResponsePorterMaintenance = components['responses']['porter_mainten... type ResponseUnacceptable (line 88909) | type ResponseUnacceptable = components['responses']['unacceptable']; type ParameterPaginationBefore (line 88910) | type ParameterPaginationBefore = components['parameters']['pagination-be... type ParameterPaginationAfter (line 88911) | type ParameterPaginationAfter = components['parameters']['pagination-aft... type ParameterDirection (line 88912) | type ParameterDirection = components['parameters']['direction']; type ParameterGhsaId (line 88913) | type ParameterGhsaId = components['parameters']['ghsa_id']; type ParameterPerPage (line 88914) | type ParameterPerPage = components['parameters']['per-page']; type ParameterCursor (line 88915) | type ParameterCursor = components['parameters']['cursor']; type ParameterDeliveryId (line 88916) | type ParameterDeliveryId = components['parameters']['delivery-id']; type ParameterPage (line 88917) | type ParameterPage = components['parameters']['page']; type ParameterSince (line 88918) | type ParameterSince = components['parameters']['since']; type ParameterInstallationId (line 88919) | type ParameterInstallationId = components['parameters']['installation-id']; type ParameterClientId (line 88920) | type ParameterClientId = components['parameters']['client-id']; type ParameterAppSlug (line 88921) | type ParameterAppSlug = components['parameters']['app-slug']; type ParameterAssignmentId (line 88922) | type ParameterAssignmentId = components['parameters']['assignment-id']; type ParameterClassroomId (line 88923) | type ParameterClassroomId = components['parameters']['classroom-id']; type ParameterEnterprise (line 88924) | type ParameterEnterprise = components['parameters']['enterprise']; type ParameterConfigurationId (line 88925) | type ParameterConfigurationId = components['parameters']['configuration-... type ParameterDependabotAlertCommaSeparatedStates (line 88926) | type ParameterDependabotAlertCommaSeparatedStates = components['paramete... type ParameterDependabotAlertCommaSeparatedSeverities (line 88927) | type ParameterDependabotAlertCommaSeparatedSeverities = components['para... type ParameterDependabotAlertCommaSeparatedEcosystems (line 88928) | type ParameterDependabotAlertCommaSeparatedEcosystems = components['para... type ParameterDependabotAlertCommaSeparatedPackages (line 88929) | type ParameterDependabotAlertCommaSeparatedPackages = components['parame... type ParameterDependabotAlertCommaSeparatedEpss (line 88930) | type ParameterDependabotAlertCommaSeparatedEpss = components['parameters... type ParameterDependabotAlertScope (line 88931) | type ParameterDependabotAlertScope = components['parameters']['dependabo... type ParameterDependabotAlertSort (line 88932) | type ParameterDependabotAlertSort = components['parameters']['dependabot... type ParameterPaginationFirst (line 88933) | type ParameterPaginationFirst = components['parameters']['pagination-fir... type ParameterPaginationLast (line 88934) | type ParameterPaginationLast = components['parameters']['pagination-last']; type ParameterSecretScanningAlertState (line 88935) | type ParameterSecretScanningAlertState = components['parameters']['secre... type ParameterSecretScanningAlertSecretType (line 88936) | type ParameterSecretScanningAlertSecretType = components['parameters']['... type ParameterSecretScanningAlertResolution (line 88937) | type ParameterSecretScanningAlertResolution = components['parameters']['... type ParameterSecretScanningAlertSort (line 88938) | type ParameterSecretScanningAlertSort = components['parameters']['secret... type ParameterSecretScanningAlertValidity (line 88939) | type ParameterSecretScanningAlertValidity = components['parameters']['se... type ParameterSecretScanningAlertPubliclyLeaked (line 88940) | type ParameterSecretScanningAlertPubliclyLeaked = components['parameters... type ParameterSecretScanningAlertMultiRepo (line 88941) | type ParameterSecretScanningAlertMultiRepo = components['parameters']['s... type ParameterGistId (line 88942) | type ParameterGistId = components['parameters']['gist-id']; type ParameterCommentId (line 88943) | type ParameterCommentId = components['parameters']['comment-id']; type ParameterLabels (line 88944) | type ParameterLabels = components['parameters']['labels']; type ParameterAccountId (line 88945) | type ParameterAccountId = components['parameters']['account-id']; type ParameterPlanId (line 88946) | type ParameterPlanId = components['parameters']['plan-id']; type ParameterSort (line 88947) | type ParameterSort = components['parameters']['sort']; type ParameterOwner (line 88948) | type ParameterOwner = components['parameters']['owner']; type ParameterRepo (line 88949) | type ParameterRepo = components['parameters']['repo']; type ParameterAll (line 88950) | type ParameterAll = components['parameters']['all']; type ParameterParticipating (line 88951) | type ParameterParticipating = components['parameters']['participating']; type ParameterBefore (line 88952) | type ParameterBefore = components['parameters']['before']; type ParameterThreadId (line 88953) | type ParameterThreadId = components['parameters']['thread-id']; type ParameterSinceOrg (line 88954) | type ParameterSinceOrg = components['parameters']['since-org']; type ParameterOrg (line 88955) | type ParameterOrg = components['parameters']['org']; type ParameterBillingUsageReportYear (line 88956) | type ParameterBillingUsageReportYear = components['parameters']['billing... type ParameterBillingUsageReportMonth (line 88957) | type ParameterBillingUsageReportMonth = components['parameters']['billin... type ParameterBillingUsageReportDay (line 88958) | type ParameterBillingUsageReportDay = components['parameters']['billing-... type ParameterBillingUsageReportHour (line 88959) | type ParameterBillingUsageReportHour = components['parameters']['billing... type ParameterHostedRunnerId (line 88960) | type ParameterHostedRunnerId = components['parameters']['hosted-runner-i... type ParameterRepositoryId (line 88961) | type ParameterRepositoryId = components['parameters']['repository-id']; type ParameterVisibleToRepository (line 88962) | type ParameterVisibleToRepository = components['parameters']['visible-to... type ParameterRunnerGroupId (line 88963) | type ParameterRunnerGroupId = components['parameters']['runner-group-id']; type ParameterRunnerId (line 88964) | type ParameterRunnerId = components['parameters']['runner-id']; type ParameterRunnerLabelName (line 88965) | type ParameterRunnerLabelName = components['parameters']['runner-label-n... type ParameterSecretName (line 88966) | type ParameterSecretName = components['parameters']['secret-name']; type ParameterVariablesPerPage (line 88967) | type ParameterVariablesPerPage = components['parameters']['variables-per... type ParameterVariableName (line 88968) | type ParameterVariableName = components['parameters']['variable-name']; type ParameterUsername (line 88969) | type ParameterUsername = components['parameters']['username']; type ParameterToolName (line 88970) | type ParameterToolName = components['parameters']['tool-name']; type ParameterToolGuid (line 88971) | type ParameterToolGuid = components['parameters']['tool-guid']; type ParameterHookId (line 88972) | type ParameterHookId = components['parameters']['hook-id']; type ParameterApiInsightsActorType (line 88973) | type ParameterApiInsightsActorType = components['parameters']['api-insig... type ParameterApiInsightsActorId (line 88974) | type ParameterApiInsightsActorId = components['parameters']['api-insight... type ParameterApiInsightsMinTimestamp (line 88975) | type ParameterApiInsightsMinTimestamp = components['parameters']['api-in... type ParameterApiInsightsMaxTimestamp (line 88976) | type ParameterApiInsightsMaxTimestamp = components['parameters']['api-in... type ParameterApiInsightsRouteStatsSort (line 88977) | type ParameterApiInsightsRouteStatsSort = components['parameters']['api-... type ParameterApiInsightsApiRouteSubstring (line 88978) | type ParameterApiInsightsApiRouteSubstring = components['parameters']['a... type ParameterApiInsightsSort (line 88979) | type ParameterApiInsightsSort = components['parameters']['api-insights-s... type ParameterApiInsightsSubjectNameSubstring (line 88980) | type ParameterApiInsightsSubjectNameSubstring = components['parameters']... type ParameterApiInsightsUserId (line 88981) | type ParameterApiInsightsUserId = components['parameters']['api-insights... type ParameterApiInsightsTimestampIncrement (line 88982) | type ParameterApiInsightsTimestampIncrement = components['parameters']['... type ParameterApiInsightsActorNameSubstring (line 88983) | type ParameterApiInsightsActorNameSubstring = components['parameters']['... type ParameterInvitationId (line 88984) | type ParameterInvitationId = components['parameters']['invitation-id']; type ParameterCodespaceName (line 88985) | type ParameterCodespaceName = components['parameters']['codespace-name']; type ParameterMigrationId (line 88986) | type ParameterMigrationId = components['parameters']['migration-id']; type ParameterRepoName (line 88987) | type ParameterRepoName = components['parameters']['repo-name']; type ParameterTeamSlug (line 88988) | type ParameterTeamSlug = components['parameters']['team-slug']; type ParameterRoleId (line 88989) | type ParameterRoleId = components['parameters']['role-id']; type ParameterPackageVisibility (line 88990) | type ParameterPackageVisibility = components['parameters']['package-visi... type ParameterPackageType (line 88991) | type ParameterPackageType = components['parameters']['package-type']; type ParameterPackageName (line 88992) | type ParameterPackageName = components['parameters']['package-name']; type ParameterPackageVersionId (line 88993) | type ParameterPackageVersionId = components['parameters']['package-versi... type ParameterPersonalAccessTokenSort (line 88994) | type ParameterPersonalAccessTokenSort = components['parameters']['person... type ParameterPersonalAccessTokenOwner (line 88995) | type ParameterPersonalAccessTokenOwner = components['parameters']['perso... type ParameterPersonalAccessTokenRepository (line 88996) | type ParameterPersonalAccessTokenRepository = components['parameters']['... type ParameterPersonalAccessTokenPermission (line 88997) | type ParameterPersonalAccessTokenPermission = components['parameters']['... type ParameterPersonalAccessTokenBefore (line 88998) | type ParameterPersonalAccessTokenBefore = components['parameters']['pers... type ParameterPersonalAccessTokenAfter (line 88999) | type ParameterPersonalAccessTokenAfter = components['parameters']['perso... type ParameterFineGrainedPersonalAccessTokenId (line 89000) | type ParameterFineGrainedPersonalAccessTokenId = components['parameters'... type ParameterCustomPropertyName (line 89001) | type ParameterCustomPropertyName = components['parameters']['custom-prop... type ParameterRulesetTargets (line 89002) | type ParameterRulesetTargets = components['parameters']['ruleset-targets']; type ParameterRefInQuery (line 89003) | type ParameterRefInQuery = components['parameters']['ref-in-query']; type ParameterRepositoryNameInQuery (line 89004) | type ParameterRepositoryNameInQuery = components['parameters']['reposito... type ParameterTimePeriod (line 89005) | type ParameterTimePeriod = components['parameters']['time-period']; type ParameterActorNameInQuery (line 89006) | type ParameterActorNameInQuery = components['parameters']['actor-name-in... type ParameterRuleSuiteResult (line 89007) | type ParameterRuleSuiteResult = components['parameters']['rule-suite-res... type ParameterRuleSuiteId (line 89008) | type ParameterRuleSuiteId = components['parameters']['rule-suite-id']; type ParameterSecretScanningPaginationBeforeOrgRepo (line 89009) | type ParameterSecretScanningPaginationBeforeOrgRepo = components['parame... type ParameterSecretScanningPaginationAfterOrgRepo (line 89010) | type ParameterSecretScanningPaginationAfterOrgRepo = components['paramet... type ParameterNetworkConfigurationId (line 89011) | type ParameterNetworkConfigurationId = components['parameters']['network... type ParameterNetworkSettingsId (line 89012) | type ParameterNetworkSettingsId = components['parameters']['network-sett... type ParameterDiscussionNumber (line 89013) | type ParameterDiscussionNumber = components['parameters']['discussion-nu... type ParameterCommentNumber (line 89014) | type ParameterCommentNumber = components['parameters']['comment-number']; type ParameterReactionId (line 89015) | type ParameterReactionId = components['parameters']['reaction-id']; type ParameterProjectId (line 89016) | type ParameterProjectId = components['parameters']['project-id']; type ParameterSecurityProduct (line 89017) | type ParameterSecurityProduct = components['parameters']['security-produ... type ParameterOrgSecurityProductEnablement (line 89018) | type ParameterOrgSecurityProductEnablement = components['parameters']['o... type ParameterCardId (line 89019) | type ParameterCardId = components['parameters']['card-id']; type ParameterColumnId (line 89020) | type ParameterColumnId = components['parameters']['column-id']; type ParameterArtifactName (line 89021) | type ParameterArtifactName = components['parameters']['artifact-name']; type ParameterArtifactId (line 89022) | type ParameterArtifactId = components['parameters']['artifact-id']; type ParameterActionsCacheGitRefFull (line 89023) | type ParameterActionsCacheGitRefFull = components['parameters']['actions... type ParameterActionsCacheKey (line 89024) | type ParameterActionsCacheKey = components['parameters']['actions-cache-... type ParameterActionsCacheListSort (line 89025) | type ParameterActionsCacheListSort = components['parameters']['actions-c... type ParameterActionsCacheKeyRequired (line 89026) | type ParameterActionsCacheKeyRequired = components['parameters']['action... type ParameterCacheId (line 89027) | type ParameterCacheId = components['parameters']['cache-id']; type ParameterJobId (line 89028) | type ParameterJobId = components['parameters']['job-id']; type ParameterActor (line 89029) | type ParameterActor = components['parameters']['actor']; type ParameterWorkflowRunBranch (line 89030) | type ParameterWorkflowRunBranch = components['parameters']['workflow-run... type ParameterEvent (line 89031) | type ParameterEvent = components['parameters']['event']; type ParameterWorkflowRunStatus (line 89032) | type ParameterWorkflowRunStatus = components['parameters']['workflow-run... type ParameterCreated (line 89033) | type ParameterCreated = components['parameters']['created']; type ParameterExcludePullRequests (line 89034) | type ParameterExcludePullRequests = components['parameters']['exclude-pu... type ParameterWorkflowRunCheckSuiteId (line 89035) | type ParameterWorkflowRunCheckSuiteId = components['parameters']['workfl... type ParameterWorkflowRunHeadSha (line 89036) | type ParameterWorkflowRunHeadSha = components['parameters']['workflow-ru... type ParameterRunId (line 89037) | type ParameterRunId = components['parameters']['run-id']; type ParameterAttemptNumber (line 89038) | type ParameterAttemptNumber = components['parameters']['attempt-number']; type ParameterWorkflowId (line 89039) | type ParameterWorkflowId = components['parameters']['workflow-id']; type ParameterAutolinkId (line 89040) | type ParameterAutolinkId = components['parameters']['autolink-id']; type ParameterBranch (line 89041) | type ParameterBranch = components['parameters']['branch']; type ParameterCheckRunId (line 89042) | type ParameterCheckRunId = components['parameters']['check-run-id']; type ParameterCheckSuiteId (line 89043) | type ParameterCheckSuiteId = components['parameters']['check-suite-id']; type ParameterCheckName (line 89044) | type ParameterCheckName = components['parameters']['check-name']; type ParameterStatus (line 89045) | type ParameterStatus = components['parameters']['status']; type ParameterGitRef (line 89046) | type ParameterGitRef = components['parameters']['git-ref']; type ParameterPrAlias (line 89047) | type ParameterPrAlias = components['parameters']['pr-alias']; type ParameterAlertNumber (line 89048) | type ParameterAlertNumber = components['parameters']['alert-number']; type ParameterCommitSha (line 89049) | type ParameterCommitSha = components['parameters']['commit-sha']; type ParameterCommitRef (line 89050) | type ParameterCommitRef = components['parameters']['commit-ref']; type ParameterDependabotAlertCommaSeparatedManifests (line 89051) | type ParameterDependabotAlertCommaSeparatedManifests = components['param... type ParameterDependabotAlertNumber (line 89052) | type ParameterDependabotAlertNumber = components['parameters']['dependab... type ParameterManifestPath (line 89053) | type ParameterManifestPath = components['parameters']['manifest-path']; type ParameterDeploymentId (line 89054) | type ParameterDeploymentId = components['parameters']['deployment-id']; type ParameterEnvironmentName (line 89055) | type ParameterEnvironmentName = components['parameters']['environment-na... type ParameterBranchPolicyId (line 89056) | type ParameterBranchPolicyId = components['parameters']['branch-policy-i... type ParameterProtectionRuleId (line 89057) | type ParameterProtectionRuleId = components['parameters']['protection-ru... type ParameterGitRefOnly (line 89058) | type ParameterGitRefOnly = components['parameters']['git-ref-only']; type ParameterSinceUser (line 89059) | type ParameterSinceUser = components['parameters']['since-user']; type ParameterIssueNumber (line 89060) | type ParameterIssueNumber = components['parameters']['issue-number']; type ParameterKeyId (line 89061) | type ParameterKeyId = components['parameters']['key-id']; type ParameterMilestoneNumber (line 89062) | type ParameterMilestoneNumber = components['parameters']['milestone-numb... type ParameterPagesDeploymentId (line 89063) | type ParameterPagesDeploymentId = components['parameters']['pages-deploy... type ParameterPullNumber (line 89064) | type ParameterPullNumber = components['parameters']['pull-number']; type ParameterReviewId (line 89065) | type ParameterReviewId = components['parameters']['review-id']; type ParameterAssetId (line 89066) | type ParameterAssetId = components['parameters']['asset-id']; type ParameterReleaseId (line 89067) | type ParameterReleaseId = components['parameters']['release-id']; type ParameterTagProtectionId (line 89068) | type ParameterTagProtectionId = components['parameters']['tag-protection... type ParameterPer (line 89069) | type ParameterPer = components['parameters']['per']; type ParameterSinceRepo (line 89070) | type ParameterSinceRepo = components['parameters']['since-repo']; type ParameterOrder (line 89071) | type ParameterOrder = components['parameters']['order']; type ParameterTeamId (line 89072) | type ParameterTeamId = components['parameters']['team-id']; type ParameterRepositoryIdInQuery (line 89073) | type ParameterRepositoryIdInQuery = components['parameters']['repository... type ParameterExportId (line 89074) | type ParameterExportId = components['parameters']['export-id']; type ParameterGpgKeyId (line 89075) | type ParameterGpgKeyId = components['parameters']['gpg-key-id']; type ParameterSinceRepoDate (line 89076) | type ParameterSinceRepoDate = components['parameters']['since-repo-date']; type ParameterBeforeRepoDate (line 89077) | type ParameterBeforeRepoDate = components['parameters']['before-repo-dat... type ParameterSshSigningKeyId (line 89078) | type ParameterSshSigningKeyId = components['parameters']['ssh-signing-ke... type ParameterSortStarred (line 89079) | type ParameterSortStarred = components['parameters']['sort-starred']; type HeaderLink (line 89080) | type HeaderLink = components['headers']['link']; type HeaderContentType (line 89081) | type HeaderContentType = components['headers']['content-type']; type HeaderXCommonMarkerVersion (line 89082) | type HeaderXCommonMarkerVersion = components['headers']['x-common-marker... type HeaderXRateLimitLimit (line 89083) | type HeaderXRateLimitLimit = components['headers']['x-rate-limit-limit']; type HeaderXRateLimitRemaining (line 89084) | type HeaderXRateLimitRemaining = components['headers']['x-rate-limit-rem... type HeaderXRateLimitReset (line 89085) | type HeaderXRateLimitReset = components['headers']['x-rate-limit-reset']; type HeaderLocation (line 89086) | type HeaderLocation = components['headers']['location']; type $defs (line 89087) | type $defs = Record; type operations (line 89088) | interface operations { FILE: packages/openapi-typescript/examples/github-api.ts type paths (line 6) | interface paths { type webhooks (line 18416) | type webhooks = Record; type components (line 18417) | interface components { type $defs (line 88060) | type $defs = Record; type operations (line 88061) | interface operations { FILE: packages/openapi-typescript/examples/octokit-ghes-3.6-diff-to-api.ts type paths (line 6) | interface paths { type webhooks (line 2495) | type webhooks = Record; type components (line 2496) | interface components { type $defs (line 7168) | type $defs = Record; type operations (line 7169) | interface operations { FILE: packages/openapi-typescript/examples/simple-example.ts type paths (line 6) | interface paths { type webhooks (line 126) | interface webhooks { type components (line 152) | interface components { type $defs (line 243) | type $defs = Record; type operations (line 244) | interface operations { FILE: packages/openapi-typescript/examples/stripe-api.ts type paths (line 6) | interface paths { type webhooks (line 8840) | type webhooks = Record; type components (line 8841) | interface components { type $defs (line 27755) | type $defs = Record; type operations (line 27756) | interface operations { FILE: packages/openapi-typescript/scripts/download-schemas.ts constant ONE_DAY (line 9) | const ONE_DAY = 1000 * 60 * 60 * 24; constant EXAMPLES_DIR (line 10) | const EXAMPLES_DIR = new URL("../examples/", import.meta.url); function download (line 12) | async function download() { FILE: packages/openapi-typescript/scripts/update-examples.ts function generateSchemas (line 6) | async function generateSchemas() { FILE: packages/openapi-typescript/src/index.ts constant COMMENT_HEADER (line 29) | const COMMENT_HEADER = `/** function openapiTS (line 44) | async function openapiTS( FILE: packages/openapi-typescript/src/lib/redoc.ts type ValidateAndBundleOptions (line 18) | interface ValidateAndBundleOptions { type ParseSchemaOptions (line 24) | interface ParseSchemaOptions { function parseSchema (line 29) | async function parseSchema(schema: unknown, { absoluteRef, resolver }: P... function _processProblems (line 85) | function _processProblems(problems: NormalizedProblem[], options: { sile... function validateAndBundle (line 107) | async function validateAndBundle( FILE: packages/openapi-typescript/src/lib/ts.ts constant JS_PROPERTY_INDEX_RE (line 6) | const JS_PROPERTY_INDEX_RE = /^[A-Za-z_$][A-Za-z_$0-9]*$/; constant JS_ENUM_INVALID_CHARS_RE (line 7) | const JS_ENUM_INVALID_CHARS_RE = /[^A-Za-z_$0-9]+(.)?/g; constant JS_PROPERTY_INDEX_INVALID_CHARS_RE (line 8) | const JS_PROPERTY_INDEX_INVALID_CHARS_RE = /[^A-Za-z_$0-9]+/g; constant SPECIAL_CHARACTER_MAP (line 9) | const SPECIAL_CHARACTER_MAP: Record = { constant BOOLEAN (line 14) | const BOOLEAN = ts.factory.createKeywordTypeNode(ts.SyntaxKind.BooleanKe... constant FALSE (line 15) | const FALSE = ts.factory.createLiteralTypeNode(ts.factory.createFalse()); constant NEVER (line 16) | const NEVER = ts.factory.createKeywordTypeNode(ts.SyntaxKind.NeverKeyword); constant NULL (line 17) | const NULL = ts.factory.createLiteralTypeNode(ts.factory.createNull()); constant NUMBER (line 18) | const NUMBER = ts.factory.createKeywordTypeNode(ts.SyntaxKind.NumberKeyw... constant QUESTION_TOKEN (line 19) | const QUESTION_TOKEN = ts.factory.createToken(ts.SyntaxKind.QuestionToken); constant STRING (line 20) | const STRING = ts.factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyw... constant TRUE (line 21) | const TRUE = ts.factory.createLiteralTypeNode(ts.factory.createTrue()); constant UNDEFINED (line 22) | const UNDEFINED = ts.factory.createKeywordTypeNode(ts.SyntaxKind.Undefin... constant UNKNOWN (line 23) | const UNKNOWN = ts.factory.createKeywordTypeNode(ts.SyntaxKind.UnknownKe... constant LB_RE (line 25) | const LB_RE = /\r?\n/g; constant COMMENT_RE (line 26) | const COMMENT_RE = /\*\//g; type AnnotatedSchemaObject (line 28) | interface AnnotatedSchemaObject { function addJSDocComment (line 48) | function addJSDocComment(schemaObject: AnnotatedSchemaObject, node: ts.P... function isOasRef (line 128) | function isOasRef(obj: Referenced): obj is OasRef { type OapiRefResolved (line 131) | type OapiRefResolved = Referenced; function isParameterObject (line 133) | function isParameterObject(obj: OapiRefResolved | undefined): obj is Par... function addIndexedAccess (line 137) | function addIndexedAccess(node: ts.TypeNode, ...segments: readonly strin... function wrapWithExtract (line 154) | function wrapWithExtract(type: ts.TypeNode, propertyName: string): ts.Ty... type OapiRefOptions (line 168) | interface OapiRefOptions { function oapiRef (line 195) | function oapiRef(path: string, resolved?: OapiRefResolved, options: Oapi... type AstToStringOptions (line 242) | interface AstToStringOptions { function astToString (line 249) | function astToString( function stringToAST (line 273) | function stringToAST(source: string): unknown[] { function tsDedupe (line 287) | function tsDedupe(types: ts.TypeNode[]): ts.TypeNode[] { function tsEnum (line 309) | function tsEnum( function tsArrayLiteralExpression (line 340) | function tsArrayLiteralExpression( function sanitizeMemberName (line 396) | function sanitizeMemberName(name: string) { function tsEnumMember (line 408) | function tsEnumMember(value: string | number, metadata: { name?: string;... function tsIntersection (line 453) | function tsIntersection(types: ts.TypeNode[]): ts.TypeNode { function tsIsPrimitive (line 464) | function tsIsPrimitive(type: ts.TypeNode): boolean { function tsLiteral (line 480) | function tsLiteral(value: unknown): ts.TypeNode { function tsModifiers (line 525) | function tsModifiers(modifiers: { readonly?: boolean; export?: boolean }... function tsNullable (line 537) | function tsNullable(types: ts.TypeNode[]): ts.TypeNode { function tsOmit (line 542) | function tsOmit(type: ts.TypeNode, keys: string[]): ts.TypeNode { function tsRecord (line 550) | function tsRecord(key: ts.TypeNode, value: ts.TypeNode) { function tsPropertyIndex (line 555) | function tsPropertyIndex(index: string | number) { function tsUnion (line 568) | function tsUnion(types: ts.TypeNode[]): ts.TypeNode { function tsWithRequired (line 579) | function tsWithRequired( function tsReadonlyArray (line 605) | function tsReadonlyArray(type: ts.TypeNode, injectFooter?: ts.Node[]): t... FILE: packages/openapi-typescript/src/lib/utils.ts constant DEBUG_GROUPS (line 12) | const DEBUG_GROUPS: Record = { function createDiscriminatorProperty (line 22) | function createDiscriminatorProperty( function createRef (line 49) | function createRef(parts: (number | string | undefined | null)[]): string { function debug (line 68) | function debug(msg: string, group?: string, time?: number) { function error (line 88) | function error(msg: string) { function formatTime (line 94) | function formatTime(t: number) { function getEntries (line 108) | function getEntries( function resolveRef (line 126) | function resolveRef( function createDiscriminatorEnum (line 160) | function createDiscriminatorEnum(values: string[], prevSchema?: SchemaOb... function patchDiscriminatorEnum (line 171) | function patchDiscriminatorEnum( type InternalDiscriminatorMapping (line 227) | type InternalDiscriminatorMapping = Record(possibleObject: unknown, key: K): poss... function applyAdditionalPropertiesToEnum (line 731) | function applyAdditionalPropertiesToEnum( function wrapWithReadWriteMarker (line 745) | function wrapWithReadWriteMarker( FILE: packages/openapi-typescript/src/transform/webhooks-object.ts function transformWebhooksObject (line 7) | function transformWebhooksObject(webhooksObject: WebhooksObject, options... FILE: packages/openapi-typescript/src/types.ts type Extensable (line 7) | interface Extensable { type OpenAPI3 (line 21) | interface OpenAPI3 extends Extensable { type InfoObject (line 49) | interface InfoObject extends Extensable { type ContactObject (line 70) | interface ContactObject extends Extensable { type LicenseObject (line 83) | interface LicenseObject extends Extensable { type ServerObject (line 96) | interface ServerObject extends Extensable { type ServerVariableObject (line 109) | interface ServerVariableObject extends Extensable { type ComponentsObject (line 122) | interface ComponentsObject extends Extensable { type PathsObject (line 149) | interface PathsObject { type WebhooksObject (line 157) | interface WebhooksObject { type PathItemObject (line 165) | interface PathItemObject extends Extensable { type OperationObject (line 192) | interface OperationObject extends Extensable { type ExternalDocumentationObject (line 223) | interface ExternalDocumentationObject extends Extensable { type ParameterObject (line 235) | interface ParameterObject extends Extensable { type RequestBodyObject (line 274) | interface RequestBodyObject extends Extensable { type MediaTypeObject (line 286) | interface MediaTypeObject extends Extensable { type EncodingObject (line 301) | interface EncodingObject extends Extensable { type ResponsesObject (line 318) | type ResponsesObject = { type ResponseObject (line 329) | interface ResponseObject extends Extensable { type CallbackObject (line 344) | type CallbackObject = Record; type ExampleObject (line 349) | interface ExampleObject extends Extensable { type LinkObject (line 364) | interface LinkObject extends Extensable { type HeaderObject (line 387) | type HeaderObject = Omit; type TagObject (line 393) | interface TagObject extends Extensable { type ReferenceObject (line 406) | interface ReferenceObject extends Extensable { type SchemaObject (line 419) | type SchemaObject = { type TransformObject (line 460) | interface TransformObject { type StringSubtype (line 465) | interface StringSubtype { type NumberSubtype (line 470) | interface NumberSubtype { type IntegerSubtype (line 477) | interface IntegerSubtype { type ArraySubtype (line 484) | interface ArraySubtype { type BooleanSubtype (line 493) | interface BooleanSubtype { type NullSubtype (line 498) | interface NullSubtype { type ObjectSubtype (line 502) | interface ObjectSubtype { type DiscriminatorObject (line 518) | interface DiscriminatorObject { type XMLObject (line 531) | interface XMLObject extends Extensable { type SecuritySchemeObject (line 548) | type SecuritySchemeObject = { type OAuthFlowsObject (line 591) | interface OAuthFlowsObject extends Extensable { type OAuthFlowObject (line 606) | interface OAuthFlowObject extends Extensable { type SecurityRequirementObject (line 621) | type SecurityRequirementObject = { type OpenAPITSOptions (line 625) | interface OpenAPITSOptions { type GlobalContext (line 692) | interface GlobalContext { type $defs (line 729) | type $defs = Record; type TransformNodeOptions (line 732) | interface TransformNodeOptions { FILE: packages/openapi-typescript/test/cjs.test.js constant TIMEOUT (line 5) | const TIMEOUT = 10_000; FILE: packages/openapi-typescript/test/cli.test.ts constant TIMEOUT (line 11) | const TIMEOUT = 90_000; FILE: packages/openapi-typescript/test/node-api.test.ts constant EXAMPLES_DIR (line 7) | const EXAMPLES_DIR = new URL("../examples/", import.meta.url); constant DATE (line 9) | const DATE = ts.factory.createTypeReferenceNode(ts.factory.createIdentif... constant BLOB (line 10) | const BLOB = ts.factory.createTypeReferenceNode("Blob"); method transform (line 378) | transform(schemaObject) { method transform (line 419) | transform(schemaObject) { method transform (line 470) | transform(schemaObject) { method transform (line 523) | transform(schemaObject) { method postTransform (line 569) | postTransform(_type, options) { method transformProperty (line 670) | transformProperty(property, schemaObject, _options) { method transformProperty (line 754) | transformProperty(property, schemaObject, _options) { FILE: packages/openapi-typescript/test/test-helpers.ts constant DEFAULT_CTX (line 6) | const DEFAULT_CTX: GlobalContext = { method resolve (line 31) | resolve($ref) { type TestCase (line 43) | type TestCase = [ FILE: packages/openapi-typescript/test/transform/components-object.test.ts constant DEFAULT_OPTIONS (line 8) | const DEFAULT_OPTIONS = DEFAULT_CTX; constant DATE (line 10) | const DATE = ts.factory.createTypeReferenceNode("Date"); method resolve (line 163) | resolve($ref) { method resolve (line 415) | resolve($ref) { method transform (line 833) | transform(schemaObject) { FILE: packages/openapi-typescript/test/transform/header-object.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/operation-object.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { path: "#/paths/~1get-item", ctx: { ...DEFAULT_... FILE: packages/openapi-typescript/test/transform/path-item-object.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/paths-object.test.ts constant DEFAULT_OPTIONS (line 7) | const DEFAULT_OPTIONS = DEFAULT_CTX; method resolve (line 153) | resolve($ref) { method resolve (line 235) | resolve($ref) { FILE: packages/openapi-typescript/test/transform/request-body-object.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/response-object.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/schema-object/array.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/schema-object/boolean.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/schema-object/composition.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { method resolve (line 182) | resolve($ref) { method resolve (line 238) | resolve($ref) { method resolve (line 282) | resolve($ref) { method resolve (line 332) | resolve($ref) { method resolve (line 371) | resolve($ref) { method resolve (line 421) | resolve($ref) { method resolve (line 470) | resolve($ref) { method resolve (line 552) | resolve($ref) { FILE: packages/openapi-typescript/test/transform/schema-object/empty.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/schema-object/enum.test.ts function mockSchema (line 256) | function mockSchema() { function createTestContext (line 327) | function createTestContext(overrides: Partial = {}) { FILE: packages/openapi-typescript/test/transform/schema-object/number.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/schema-object/object.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/schema-object/string.test.ts constant DEFAULT_OPTIONS (line 6) | const DEFAULT_OPTIONS = { FILE: packages/openapi-typescript/test/transform/webhooks-object.test.ts constant DEFAULT_OPTIONS (line 7) | const DEFAULT_OPTIONS = { ...DEFAULT_CTX }; method resolve (line 142) | resolve($ref) { FILE: packages/openapi-typescript/test/yaml.test.ts constant TIMEOUT (line 5) | const TIMEOUT = 10_000;