diff --git a/.changeset/orange-pans-bake.md b/.changeset/orange-pans-bake.md new file mode 100644 index 000000000..5c0ca3b56 --- /dev/null +++ b/.changeset/orange-pans-bake.md @@ -0,0 +1,5 @@ +--- +"openapi-typescript": minor +--- + +Map OpenAPI format: int64 to TypeScript bigint instead of number. diff --git a/packages/openapi-typescript/examples/digital-ocean-api.ts b/packages/openapi-typescript/examples/digital-ocean-api.ts index b0f18c5e8..58c8e9da9 100644 --- a/packages/openapi-typescript/examples/digital-ocean-api.ts +++ b/packages/openapi-typescript/examples/digital-ocean-api.ts @@ -7600,7 +7600,7 @@ export interface components { * @default 1 * @example 2 */ - instance_count: number; + instance_count: bigint; /** * @description The instance size to use for this component. Default: `apps-s-1vcpu-0.5gb` * @example apps-s-1vcpu-0.5gb @@ -7717,7 +7717,7 @@ export interface components { * @description The port on which the health check will be performed. If not set, the health check will be performed on the component's http_port. * @example 80 */ - port?: number; + port?: bigint; /** * @description The route path used for the HTTP health check ping. If not set, the HTTP health check will be disabled and a TCP health check used instead. * @example /health @@ -7793,7 +7793,7 @@ export interface components { * If there is not an environment variable with the name `PORT`, one will be automatically added with its value set to the value of this field. * @example 3000 */ - http_port?: number; + http_port?: bigint; /** * @description The ports on which this service will listen for internal traffic. * @example [ @@ -7801,7 +7801,7 @@ export interface components { * 443 * ] */ - internal_ports?: number[]; + internal_ports?: bigint[]; /** * @deprecated * @description (Deprecated - Use Ingress Rules instead). A list of HTTP routes that should be routed to this component. @@ -8023,7 +8023,7 @@ export interface components { * @description The port to redirect to. * @example 443 */ - port?: number; + port?: bigint; /** * @description The scheme to redirect to. Supported values are `http` or `https`. Default: `https`. * @example https @@ -8034,7 +8034,7 @@ export interface components { * @description The redirect code to use. Defaults to `302`. Supported values are 300, 301, 302, 303, 304, 307, 308. * @example 302 */ - redirect_code?: number; + redirect_code?: bigint; }; app_ingress_spec_rule: { match?: components["schemas"]["app_ingress_spec_rule_match"]; @@ -15515,19 +15515,19 @@ export interface components { * @description Major version number * @example 123 */ - major?: number; + major?: bigint; /** * Format: int64 * @description Minor version number * @example 123 */ - minor?: number; + minor?: bigint; /** * Format: int64 * @description Patch version number * @example 123 */ - patch?: number; + patch?: bigint; }; /** @description Description of a Model */ apiModel: { @@ -15602,7 +15602,7 @@ export interface components { * @description Number of datasources indexed completed * @example 123 */ - completed_datasources?: number; + completed_datasources?: bigint; /** * Format: date-time * @description Creation date / time @@ -15636,13 +15636,13 @@ export interface components { * @description Number of tokens * @example 123 */ - tokens?: number; + tokens?: bigint; /** * Format: int64 * @description Number of datasources being indexed * @example 123 */ - total_datasources?: number; + total_datasources?: bigint; /** * Format: date-time * @description Last modified @@ -15739,7 +15739,7 @@ export interface components { * @description The 'k' value for the agent template * @example 123 */ - k?: number; + k?: bigint; /** @description List of knowledge bases associated with the agent template */ knowledge_bases?: components["schemas"]["apiKnowledgeBase"][]; /** @@ -15747,7 +15747,7 @@ export interface components { * @description The max_tokens setting for the agent template * @example 123 */ - max_tokens?: number; + max_tokens?: bigint; model?: components["schemas"]["apiModel"]; /** * @description Name of the agent template @@ -15810,13 +15810,13 @@ export interface components { * @description How many results should be considered from an attached knowledge base * @example 5 */ - k?: number; + k?: bigint; /** * Format: int64 * @description Specifies the maximum number of tokens the model can process in a single input or output, set as a number between 1 and 512. This determines the length of each response. * @example 100 */ - max_tokens?: number; + max_tokens?: bigint; model?: components["schemas"]["apiModel"]; /** * @description Agent name @@ -15932,19 +15932,19 @@ export interface components { * @description The current page * @example 123 */ - page?: number; + page?: bigint; /** * Format: int64 * @description Total number of pages * @example 123 */ - pages?: number; + pages?: bigint; /** * Format: int64 * @description Total amount of items over all pages * @example 123 */ - total?: number; + total?: bigint; }; /** @description List of Agents */ apiListAgentsOutputPublic: { @@ -16116,14 +16116,14 @@ export interface components { * Format: int64 * @example 123 */ - k?: number; + k?: bigint; /** @description Knowledge bases */ knowledge_bases?: components["schemas"]["apiKnowledgeBase"][]; /** * Format: int64 * @example 123 */ - max_tokens?: number; + max_tokens?: bigint; model?: components["schemas"]["apiModel"]; /** * @description Agent name @@ -16539,13 +16539,13 @@ export interface components { * @description How many results should be considered from an attached knowledge base * @example 5 */ - k?: number; + k?: bigint; /** * Format: int64 * @description Specifies the maximum number of tokens the model can process in a single input or output, set as a number between 1 and 512. This determines the length of each response. * @example 100 */ - max_tokens?: number; + max_tokens?: bigint; /** * @description Identifier for the foundation model. * @example "12345678-1234-1234-1234-123456789012" diff --git a/packages/openapi-typescript/examples/github-api-export-type-immutable.ts b/packages/openapi-typescript/examples/github-api-export-type-immutable.ts index 4ccd073d1..d8c219c17 100644 --- a/packages/openapi-typescript/examples/github-api-export-type-immutable.ts +++ b/packages/openapi-typescript/examples/github-api-export-type-immutable.ts @@ -18539,7 +18539,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDQ6VXNlcjE= */ readonly node_id: string; /** @@ -19348,7 +19348,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDQ6VXNlcjE= */ readonly node_id: string; /** @@ -19502,7 +19502,7 @@ export type components = { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -19904,7 +19904,7 @@ export type components = { */ readonly authorization: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; /** Format: uri */ readonly url: string; /** @description A list of scopes that this authorization is in. */ @@ -20525,7 +20525,7 @@ export type components = { * @description A unique identifier of the repository. * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** * @description The GraphQL identifier of the repository. * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -21204,7 +21204,7 @@ export type components = { */ readonly issue: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** * Format: uri @@ -21257,7 +21257,7 @@ export type components = { */ readonly labels: readonly (string | { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; /** Format: uri */ readonly url?: string; @@ -21312,7 +21312,7 @@ export type components = { * @description Unique identifier of the issue comment * @example 42 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** * Format: uri @@ -21490,7 +21490,7 @@ export type components = { readonly "public-user": { readonly login: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -22082,7 +22082,7 @@ export type components = { * Format: int64 * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @example Hello-World */ @@ -23265,7 +23265,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -23666,7 +23666,7 @@ export type components = { */ readonly "enterprise-team": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly name: string; readonly slug: string; /** Format: uri */ @@ -23968,7 +23968,7 @@ export type components = { * Format: int64 * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @example Hello-World */ @@ -24220,7 +24220,7 @@ export type components = { */ readonly "organization-invitation": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string | null; readonly email: string | null; readonly role: string; @@ -24304,12 +24304,12 @@ export type components = { * Format: int64 * @description The total number of requests within the queried time period */ - readonly total_request_count?: number; + readonly total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - readonly rate_limited_request_count?: number; + readonly rate_limited_request_count?: bigint; readonly last_rate_limited_timestamp?: string | null; readonly last_request_timestamp?: string; }[]; @@ -24321,7 +24321,7 @@ export type components = { readonly subject_type?: string; readonly subject_name?: string; /** Format: int64 */ - readonly subject_id?: number; + readonly subject_id?: bigint; readonly total_request_count?: number; readonly rate_limited_request_count?: number; readonly last_rate_limited_timestamp?: string | null; @@ -24336,12 +24336,12 @@ export type components = { * Format: int64 * @description The total number of requests within the queried time period */ - readonly total_request_count?: number; + readonly total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - readonly rate_limited_request_count?: number; + readonly rate_limited_request_count?: bigint; }; /** * Time Stats @@ -24350,9 +24350,9 @@ export type components = { readonly "api-insights-time-stats": readonly { readonly timestamp?: string; /** Format: int64 */ - readonly total_request_count?: number; + readonly total_request_count?: bigint; /** Format: int64 */ - readonly rate_limited_request_count?: number; + readonly rate_limited_request_count?: bigint; }[]; /** * User Stats @@ -24362,11 +24362,11 @@ export type components = { readonly actor_type?: string; readonly actor_name?: string; /** Format: int64 */ - readonly actor_id?: number; + readonly actor_id?: bigint; /** Format: int64 */ - readonly integration_id?: number | null; + readonly integration_id?: bigint | null; /** Format: int64 */ - readonly oauth_application_id?: number | null; + readonly oauth_application_id?: bigint | null; readonly total_request_count?: number; readonly rate_limited_request_count?: number; readonly last_rate_limited_timestamp?: string | null; @@ -24448,7 +24448,7 @@ export type components = { * Format: int64 * @example 79 */ - readonly id: number; + readonly id: bigint; readonly owner: components["schemas"]["nullable-simple-user"]; /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */ readonly guid: string; @@ -24494,7 +24494,7 @@ export type components = { * Format: int64 * @description The unique identifier of the role. */ - readonly id: number; + readonly id: bigint; /** @description The name of the role. */ readonly name: string; /** @description A short description about who this role is for or what permissions it grants. */ @@ -25067,7 +25067,7 @@ export type components = { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -25443,7 +25443,7 @@ export type components = { * Format: int64 * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @example Hello-World */ @@ -27324,7 +27324,7 @@ export type components = { * @description The project card's ID * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */ readonly node_id: string; /** @example Add payload for delete Project column */ @@ -27741,7 +27741,7 @@ export type components = { /** Pull Request Minimal */ readonly "pull-request-minimal": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly number: number; readonly url: string; readonly head: { @@ -27749,7 +27749,7 @@ export type components = { readonly sha: string; readonly repo: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly url: string; readonly name: string; }; @@ -27759,7 +27759,7 @@ export type components = { readonly sha: string; readonly repo: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly url: string; readonly name: string; }; @@ -28032,7 +28032,7 @@ export type components = { * @description The id of the environment. * @example 56780428 */ - readonly id?: number; + readonly id?: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ readonly node_id?: string; /** @@ -28082,7 +28082,7 @@ export type components = { * @description Unique identifier of the deployment * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOkRlcGxveW1lbnQx */ readonly node_id: string; /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */ @@ -28399,7 +28399,7 @@ export type components = { readonly users: readonly { readonly login?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; readonly avatar_url?: string; readonly gravatar_id?: string; @@ -28887,7 +28887,7 @@ export type components = { * @description The id of the check. * @example 21 */ - readonly id: number; + readonly id: bigint; /** * @description The SHA of the commit that is being checked. * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d @@ -29031,7 +29031,7 @@ export type components = { * Format: int64 * @example 5 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOkNoZWNrU3VpdGU1 */ readonly node_id: string; /** @example master */ @@ -29635,7 +29635,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; readonly email?: string | null; readonly name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29715,7 +29715,7 @@ export type components = { * @description Unique identifier of the repository invitation. * @example 42 */ - readonly id: number; + readonly id: bigint; readonly repository: components["schemas"]["minimal-repository"]; readonly invitee: components["schemas"]["nullable-simple-user"]; readonly inviter: components["schemas"]["nullable-simple-user"]; @@ -29752,7 +29752,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; readonly email?: string | null; readonly name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29905,7 +29905,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ readonly node_id: string; /** @@ -29963,7 +29963,7 @@ export type components = { readonly body: string | null; readonly labels: readonly { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; readonly url: string; readonly name: string; @@ -30817,7 +30817,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */ readonly node_id: string; /** @@ -30904,7 +30904,7 @@ export type components = { * @description The id of the environment. * @example 56780428 */ - readonly id: number; + readonly id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ readonly node_id: string; /** @@ -31438,7 +31438,7 @@ export type components = { */ readonly "nullable-issue": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** * Format: uri @@ -31491,7 +31491,7 @@ export type components = { */ readonly labels: readonly (string | { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; /** Format: uri */ readonly url?: string; @@ -31589,7 +31589,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOklzc3VlRXZlbnQx */ readonly node_id: string; /** @@ -31940,7 +31940,7 @@ export type components = { * @description Unique identifier for the label. * @example 208045946 */ - readonly id: number; + readonly id: bigint; /** @example MDU6TGFiZWwyMDgwNDU5NDY= */ readonly node_id: string; /** @@ -32183,13 +32183,13 @@ export type components = { * @description The ID of the pull request review to which the comment belongs. * @example 42 */ - readonly pull_request_review_id: number | null; + readonly pull_request_review_id: bigint | null; /** * Format: int64 * @description The ID of the pull request review comment. * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description The node ID of the pull request review comment. * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw @@ -32764,7 +32764,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ readonly node_id: string; /** @@ -32832,7 +32832,7 @@ export type components = { readonly body: string | null; readonly labels: readonly { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; readonly url: string; readonly name: string; @@ -32953,7 +32953,7 @@ export type components = { * @description Unique identifier of the review * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */ readonly node_id: string; readonly user: components["schemas"]["nullable-simple-user"]; @@ -33007,12 +33007,12 @@ export type components = { * Format: int64 * @example 42 */ - readonly pull_request_review_id: number | null; + readonly pull_request_review_id: bigint | null; /** * Format: int64 * @example 10 */ - readonly id: number; + readonly id: bigint; /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */ readonly node_id: string; /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */ @@ -33913,7 +33913,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; readonly number: number; readonly title: string; @@ -33923,7 +33923,7 @@ export type components = { readonly user: components["schemas"]["nullable-simple-user"]; readonly labels: readonly { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; readonly url?: string; readonly name?: string; @@ -34160,7 +34160,7 @@ export type components = { readonly "user-search-result-item": { readonly login: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** Format: uri */ readonly avatar_url: string; @@ -34218,7 +34218,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -34440,7 +34440,7 @@ export type components = { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -34609,7 +34609,7 @@ export type components = { * Format: int64 * @example 3 */ - readonly id: number; + readonly id: bigint; /** @example Octocat's GPG Key */ readonly name?: string | null; readonly primary_key_id: number | null; @@ -34649,7 +34649,7 @@ export type components = { */ readonly subkeys: readonly { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly primary_key_id?: number; readonly key_id?: string; readonly public_key?: string; @@ -34691,7 +34691,7 @@ export type components = { readonly key: { readonly key: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly url: string; readonly title: string; /** Format: date-time */ @@ -34945,7 +34945,7 @@ export type components = { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -35724,7 +35724,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -35796,7 +35796,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -35942,7 +35942,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36014,7 +36014,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36100,7 +36100,7 @@ export type components = { * Format: int64 * @description Unique identifier of the issue comment */ - readonly id: number; + readonly id: bigint; /** Format: uri */ readonly issue_url: string; readonly node_id: string; @@ -36144,7 +36144,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36276,7 +36276,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -36573,7 +36573,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36770,7 +36770,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -37067,7 +37067,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -37269,7 +37269,7 @@ export type components = { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -37867,7 +37867,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -38598,7 +38598,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -38781,7 +38781,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -38944,7 +38944,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -39127,7 +39127,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -39467,7 +39467,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -39614,7 +39614,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -39688,7 +39688,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -42024,7 +42024,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -44781,7 +44781,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -45234,7 +45234,7 @@ export type components = { * Format: int64 * @description Unique identifier of the issue comment */ - readonly id: number; + readonly id: bigint; /** Format: uri */ readonly issue_url: string; readonly node_id: string; @@ -45278,7 +45278,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -45402,7 +45402,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -45699,7 +45699,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -45822,7 +45822,7 @@ export type components = { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -45946,7 +45946,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -46243,7 +46243,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -46366,7 +46366,7 @@ export type components = { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -46492,7 +46492,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -46789,7 +46789,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -46912,7 +46912,7 @@ export type components = { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -47053,7 +47053,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -47350,7 +47350,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -47419,7 +47419,7 @@ export type components = { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -47545,7 +47545,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -47842,7 +47842,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -47975,7 +47975,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -48272,7 +48272,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -48418,7 +48418,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -48715,7 +48715,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -48850,7 +48850,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -49147,7 +49147,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -49283,7 +49283,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -49581,7 +49581,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -49714,7 +49714,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -50011,7 +50011,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -50146,7 +50146,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -50443,7 +50443,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -50587,7 +50587,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -50818,7 +50818,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -51115,7 +51115,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -51259,7 +51259,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -51556,7 +51556,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -51690,7 +51690,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -51987,7 +51987,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -52134,7 +52134,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -52403,7 +52403,7 @@ export type components = { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -52701,7 +52701,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -54861,7 +54861,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -55044,7 +55044,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -55207,7 +55207,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -55390,7 +55390,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -55731,7 +55731,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -56068,7 +56068,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -56251,7 +56251,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -56414,7 +56414,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -56597,7 +56597,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -56938,7 +56938,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -57276,7 +57276,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -57459,7 +57459,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -57802,7 +57802,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -58143,7 +58143,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -58517,7 +58517,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -58700,7 +58700,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -58863,7 +58863,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -59046,7 +59046,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -59387,7 +59387,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -59757,7 +59757,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -59940,7 +59940,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -60103,7 +60103,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -60286,7 +60286,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -60627,7 +60627,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -60965,7 +60965,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -61148,7 +61148,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -61311,7 +61311,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -61494,7 +61494,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -61835,7 +61835,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -62172,7 +62172,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -62355,7 +62355,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -62518,7 +62518,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -62701,7 +62701,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63042,7 +63042,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63244,7 +63244,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63571,7 +63571,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -63754,7 +63754,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63910,7 +63910,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -64093,7 +64093,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -64382,7 +64382,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -64717,7 +64717,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -64900,7 +64900,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -65056,7 +65056,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -65239,7 +65239,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -65528,7 +65528,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -65865,7 +65865,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -66048,7 +66048,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -66204,7 +66204,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -66387,7 +66387,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -66676,7 +66676,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67011,7 +67011,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -67194,7 +67194,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67350,7 +67350,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -67533,7 +67533,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67822,7 +67822,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67898,7 +67898,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -68233,7 +68233,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -68375,7 +68375,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -68526,7 +68526,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -68668,7 +68668,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -68957,7 +68957,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -69297,7 +69297,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -69473,7 +69473,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -69636,7 +69636,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -69819,7 +69819,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -70160,7 +70160,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -70535,7 +70535,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -70718,7 +70718,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -70881,7 +70881,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -71064,7 +71064,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -71405,7 +71405,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -71799,7 +71799,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -71982,7 +71982,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -72145,7 +72145,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -72328,7 +72328,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -72669,7 +72669,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -73044,7 +73044,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -73227,7 +73227,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -73390,7 +73390,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -73573,7 +73573,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -73914,7 +73914,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -74304,7 +74304,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -74487,7 +74487,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -74643,7 +74643,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -74826,7 +74826,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -75115,7 +75115,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -75451,7 +75451,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -75595,7 +75595,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -75751,7 +75751,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -75895,7 +75895,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76184,7 +76184,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76330,7 +76330,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76665,7 +76665,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -76809,7 +76809,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76965,7 +76965,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -77109,7 +77109,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -77398,7 +77398,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -77544,7 +77544,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -77883,7 +77883,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -78066,7 +78066,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -78229,7 +78229,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -78405,7 +78405,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -78746,7 +78746,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -79084,7 +79084,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -79267,7 +79267,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -79430,7 +79430,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -79613,7 +79613,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -79954,7 +79954,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -80292,7 +80292,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -80475,7 +80475,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -80638,7 +80638,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -80814,7 +80814,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -81155,7 +81155,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -81492,7 +81492,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -81675,7 +81675,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -81838,7 +81838,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -82021,7 +82021,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -82362,7 +82362,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -82647,7 +82647,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -83618,7 +83618,7 @@ export type components = { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -84492,7 +84492,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -84745,7 +84745,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -84998,7 +84998,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -85282,7 +85282,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -85535,7 +85535,7 @@ export type components = { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -87733,7 +87733,7 @@ export type components = { /** @description The unique identifier of the gist. */ readonly "gist-id": string; /** @description The unique identifier of the comment. */ - readonly "comment-id": number; + readonly "comment-id": bigint; /** @description A list of comma separated label names. Example: `bug,ui,@high` */ readonly labels: string; /** @description account_id parameter */ @@ -113999,7 +113999,7 @@ export interface operations { * @description An issue in the repository to convert to a pull request. The issue title, body, and comments will become the title, body, and comments on the new pull request. Required unless `title` is specified. * @example 1 */ - readonly issue?: number; + readonly issue?: bigint; }; }; }; diff --git a/packages/openapi-typescript/examples/github-api-immutable.ts b/packages/openapi-typescript/examples/github-api-immutable.ts index 2c9ec9141..5e8a17dc8 100644 --- a/packages/openapi-typescript/examples/github-api-immutable.ts +++ b/packages/openapi-typescript/examples/github-api-immutable.ts @@ -18539,7 +18539,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDQ6VXNlcjE= */ readonly node_id: string; /** @@ -19348,7 +19348,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDQ6VXNlcjE= */ readonly node_id: string; /** @@ -19502,7 +19502,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -19904,7 +19904,7 @@ export interface components { */ readonly authorization: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; /** Format: uri */ readonly url: string; /** @description A list of scopes that this authorization is in. */ @@ -20525,7 +20525,7 @@ export interface components { * @description A unique identifier of the repository. * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** * @description The GraphQL identifier of the repository. * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -21204,7 +21204,7 @@ export interface components { */ readonly issue: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** * Format: uri @@ -21257,7 +21257,7 @@ export interface components { */ readonly labels: readonly (string | { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; /** Format: uri */ readonly url?: string; @@ -21312,7 +21312,7 @@ export interface components { * @description Unique identifier of the issue comment * @example 42 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** * Format: uri @@ -21490,7 +21490,7 @@ export interface components { readonly "public-user": { readonly login: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -22082,7 +22082,7 @@ export interface components { * Format: int64 * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @example Hello-World */ @@ -23265,7 +23265,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -23666,7 +23666,7 @@ export interface components { */ readonly "enterprise-team": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly name: string; readonly slug: string; /** Format: uri */ @@ -23968,7 +23968,7 @@ export interface components { * Format: int64 * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @example Hello-World */ @@ -24220,7 +24220,7 @@ export interface components { */ readonly "organization-invitation": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string | null; readonly email: string | null; readonly role: string; @@ -24304,12 +24304,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - readonly total_request_count?: number; + readonly total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - readonly rate_limited_request_count?: number; + readonly rate_limited_request_count?: bigint; readonly last_rate_limited_timestamp?: string | null; readonly last_request_timestamp?: string; }[]; @@ -24321,7 +24321,7 @@ export interface components { readonly subject_type?: string; readonly subject_name?: string; /** Format: int64 */ - readonly subject_id?: number; + readonly subject_id?: bigint; readonly total_request_count?: number; readonly rate_limited_request_count?: number; readonly last_rate_limited_timestamp?: string | null; @@ -24336,12 +24336,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - readonly total_request_count?: number; + readonly total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - readonly rate_limited_request_count?: number; + readonly rate_limited_request_count?: bigint; }; /** * Time Stats @@ -24350,9 +24350,9 @@ export interface components { readonly "api-insights-time-stats": readonly { readonly timestamp?: string; /** Format: int64 */ - readonly total_request_count?: number; + readonly total_request_count?: bigint; /** Format: int64 */ - readonly rate_limited_request_count?: number; + readonly rate_limited_request_count?: bigint; }[]; /** * User Stats @@ -24362,11 +24362,11 @@ export interface components { readonly actor_type?: string; readonly actor_name?: string; /** Format: int64 */ - readonly actor_id?: number; + readonly actor_id?: bigint; /** Format: int64 */ - readonly integration_id?: number | null; + readonly integration_id?: bigint | null; /** Format: int64 */ - readonly oauth_application_id?: number | null; + readonly oauth_application_id?: bigint | null; readonly total_request_count?: number; readonly rate_limited_request_count?: number; readonly last_rate_limited_timestamp?: string | null; @@ -24448,7 +24448,7 @@ export interface components { * Format: int64 * @example 79 */ - readonly id: number; + readonly id: bigint; readonly owner: components["schemas"]["nullable-simple-user"]; /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */ readonly guid: string; @@ -24494,7 +24494,7 @@ export interface components { * Format: int64 * @description The unique identifier of the role. */ - readonly id: number; + readonly id: bigint; /** @description The name of the role. */ readonly name: string; /** @description A short description about who this role is for or what permissions it grants. */ @@ -25067,7 +25067,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -25443,7 +25443,7 @@ export interface components { * Format: int64 * @example 1296269 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @example Hello-World */ @@ -27324,7 +27324,7 @@ export interface components { * @description The project card's ID * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */ readonly node_id: string; /** @example Add payload for delete Project column */ @@ -27741,7 +27741,7 @@ export interface components { /** Pull Request Minimal */ readonly "pull-request-minimal": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly number: number; readonly url: string; readonly head: { @@ -27749,7 +27749,7 @@ export interface components { readonly sha: string; readonly repo: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly url: string; readonly name: string; }; @@ -27759,7 +27759,7 @@ export interface components { readonly sha: string; readonly repo: { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly url: string; readonly name: string; }; @@ -28032,7 +28032,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - readonly id?: number; + readonly id?: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ readonly node_id?: string; /** @@ -28082,7 +28082,7 @@ export interface components { * @description Unique identifier of the deployment * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOkRlcGxveW1lbnQx */ readonly node_id: string; /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */ @@ -28399,7 +28399,7 @@ export interface components { readonly users: readonly { readonly login?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; readonly avatar_url?: string; readonly gravatar_id?: string; @@ -28887,7 +28887,7 @@ export interface components { * @description The id of the check. * @example 21 */ - readonly id: number; + readonly id: bigint; /** * @description The SHA of the commit that is being checked. * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d @@ -29031,7 +29031,7 @@ export interface components { * Format: int64 * @example 5 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOkNoZWNrU3VpdGU1 */ readonly node_id: string; /** @example master */ @@ -29635,7 +29635,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; readonly email?: string | null; readonly name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29715,7 +29715,7 @@ export interface components { * @description Unique identifier of the repository invitation. * @example 42 */ - readonly id: number; + readonly id: bigint; readonly repository: components["schemas"]["minimal-repository"]; readonly invitee: components["schemas"]["nullable-simple-user"]; readonly inviter: components["schemas"]["nullable-simple-user"]; @@ -29752,7 +29752,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; readonly email?: string | null; readonly name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29905,7 +29905,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ readonly node_id: string; /** @@ -29963,7 +29963,7 @@ export interface components { readonly body: string | null; readonly labels: readonly { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; readonly url: string; readonly name: string; @@ -30817,7 +30817,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */ readonly node_id: string; /** @@ -30904,7 +30904,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - readonly id: number; + readonly id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ readonly node_id: string; /** @@ -31438,7 +31438,7 @@ export interface components { */ readonly "nullable-issue": { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** * Format: uri @@ -31491,7 +31491,7 @@ export interface components { */ readonly labels: readonly (string | { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; /** Format: uri */ readonly url?: string; @@ -31589,7 +31589,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOklzc3VlRXZlbnQx */ readonly node_id: string; /** @@ -31940,7 +31940,7 @@ export interface components { * @description Unique identifier for the label. * @example 208045946 */ - readonly id: number; + readonly id: bigint; /** @example MDU6TGFiZWwyMDgwNDU5NDY= */ readonly node_id: string; /** @@ -32183,13 +32183,13 @@ export interface components { * @description The ID of the pull request review to which the comment belongs. * @example 42 */ - readonly pull_request_review_id: number | null; + readonly pull_request_review_id: bigint | null; /** * Format: int64 * @description The ID of the pull request review comment. * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description The node ID of the pull request review comment. * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw @@ -32764,7 +32764,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ readonly node_id: string; /** @@ -32832,7 +32832,7 @@ export interface components { readonly body: string | null; readonly labels: readonly { /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; readonly url: string; readonly name: string; @@ -32953,7 +32953,7 @@ export interface components { * @description Unique identifier of the review * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */ readonly node_id: string; readonly user: components["schemas"]["nullable-simple-user"]; @@ -33007,12 +33007,12 @@ export interface components { * Format: int64 * @example 42 */ - readonly pull_request_review_id: number | null; + readonly pull_request_review_id: bigint | null; /** * Format: int64 * @example 10 */ - readonly id: number; + readonly id: bigint; /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */ readonly node_id: string; /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */ @@ -33913,7 +33913,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; readonly number: number; readonly title: string; @@ -33923,7 +33923,7 @@ export interface components { readonly user: components["schemas"]["nullable-simple-user"]; readonly labels: readonly { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly node_id?: string; readonly url?: string; readonly name?: string; @@ -34160,7 +34160,7 @@ export interface components { readonly "user-search-result-item": { readonly login: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly node_id: string; /** Format: uri */ readonly avatar_url: string; @@ -34218,7 +34218,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -34440,7 +34440,7 @@ export interface components { * Format: int64 * @example 1 */ - readonly id: number; + readonly id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -34609,7 +34609,7 @@ export interface components { * Format: int64 * @example 3 */ - readonly id: number; + readonly id: bigint; /** @example Octocat's GPG Key */ readonly name?: string | null; readonly primary_key_id: number | null; @@ -34649,7 +34649,7 @@ export interface components { */ readonly subkeys: readonly { /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly primary_key_id?: number; readonly key_id?: string; readonly public_key?: string; @@ -34691,7 +34691,7 @@ export interface components { readonly key: { readonly key: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly url: string; readonly title: string; /** Format: date-time */ @@ -34945,7 +34945,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -35724,7 +35724,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -35796,7 +35796,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -35942,7 +35942,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36014,7 +36014,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36100,7 +36100,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - readonly id: number; + readonly id: bigint; /** Format: uri */ readonly issue_url: string; readonly node_id: string; @@ -36144,7 +36144,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36276,7 +36276,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -36573,7 +36573,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -36770,7 +36770,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -37067,7 +37067,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -37269,7 +37269,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - readonly id: number; + readonly id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ readonly node_id: string; /** @@ -37867,7 +37867,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -38598,7 +38598,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -38781,7 +38781,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -38944,7 +38944,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -39127,7 +39127,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -39467,7 +39467,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -39614,7 +39614,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -39688,7 +39688,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -42024,7 +42024,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -44781,7 +44781,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -45234,7 +45234,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - readonly id: number; + readonly id: bigint; /** Format: uri */ readonly issue_url: string; readonly node_id: string; @@ -45278,7 +45278,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -45402,7 +45402,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -45699,7 +45699,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -45822,7 +45822,7 @@ export interface components { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -45946,7 +45946,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -46243,7 +46243,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -46366,7 +46366,7 @@ export interface components { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -46492,7 +46492,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -46789,7 +46789,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -46912,7 +46912,7 @@ export interface components { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -47053,7 +47053,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -47350,7 +47350,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -47419,7 +47419,7 @@ export interface components { readonly gravatar_id?: string; readonly html_url?: string; /** Format: int64 */ - readonly id?: number; + readonly id?: bigint; readonly login?: string; readonly node_id?: string; readonly organizations_url?: string; @@ -47545,7 +47545,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -47842,7 +47842,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -47975,7 +47975,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -48272,7 +48272,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -48418,7 +48418,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -48715,7 +48715,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -48850,7 +48850,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -49147,7 +49147,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -49283,7 +49283,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -49581,7 +49581,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -49714,7 +49714,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -50011,7 +50011,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -50146,7 +50146,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -50443,7 +50443,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -50587,7 +50587,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -50818,7 +50818,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -51115,7 +51115,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -51259,7 +51259,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -51556,7 +51556,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -51690,7 +51690,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly { /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -51987,7 +51987,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -52134,7 +52134,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -52403,7 +52403,7 @@ export interface components { /** Format: uri */ readonly html_url: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly labels?: readonly ({ /** @description 6-character hex code, without the leading #, identifying the color */ readonly color: string; @@ -52701,7 +52701,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -54861,7 +54861,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -55044,7 +55044,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -55207,7 +55207,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -55390,7 +55390,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -55731,7 +55731,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -56068,7 +56068,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -56251,7 +56251,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -56414,7 +56414,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -56597,7 +56597,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -56938,7 +56938,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -57276,7 +57276,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -57459,7 +57459,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -57802,7 +57802,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -58143,7 +58143,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -58517,7 +58517,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -58700,7 +58700,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -58863,7 +58863,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -59046,7 +59046,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -59387,7 +59387,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -59757,7 +59757,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -59940,7 +59940,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -60103,7 +60103,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -60286,7 +60286,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -60627,7 +60627,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -60965,7 +60965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -61148,7 +61148,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -61311,7 +61311,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -61494,7 +61494,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -61835,7 +61835,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -62172,7 +62172,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -62355,7 +62355,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -62518,7 +62518,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -62701,7 +62701,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63042,7 +63042,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63244,7 +63244,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63571,7 +63571,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -63754,7 +63754,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -63910,7 +63910,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -64093,7 +64093,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -64382,7 +64382,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -64717,7 +64717,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -64900,7 +64900,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -65056,7 +65056,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -65239,7 +65239,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -65528,7 +65528,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -65865,7 +65865,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -66048,7 +66048,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -66204,7 +66204,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -66387,7 +66387,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -66676,7 +66676,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67011,7 +67011,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -67194,7 +67194,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67350,7 +67350,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -67533,7 +67533,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67822,7 +67822,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -67898,7 +67898,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -68233,7 +68233,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -68375,7 +68375,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -68526,7 +68526,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -68668,7 +68668,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -68957,7 +68957,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -69297,7 +69297,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -69473,7 +69473,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -69636,7 +69636,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -69819,7 +69819,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -70160,7 +70160,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -70535,7 +70535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -70718,7 +70718,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -70881,7 +70881,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -71064,7 +71064,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -71405,7 +71405,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -71799,7 +71799,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -71982,7 +71982,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -72145,7 +72145,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -72328,7 +72328,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -72669,7 +72669,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -73044,7 +73044,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -73227,7 +73227,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -73390,7 +73390,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -73573,7 +73573,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -73914,7 +73914,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -74304,7 +74304,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -74487,7 +74487,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -74643,7 +74643,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -74826,7 +74826,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -75115,7 +75115,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -75451,7 +75451,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -75595,7 +75595,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -75751,7 +75751,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -75895,7 +75895,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76184,7 +76184,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76330,7 +76330,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76665,7 +76665,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -76809,7 +76809,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -76965,7 +76965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -77109,7 +77109,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -77398,7 +77398,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -77544,7 +77544,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -77883,7 +77883,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -78066,7 +78066,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -78229,7 +78229,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -78405,7 +78405,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -78746,7 +78746,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -79084,7 +79084,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -79267,7 +79267,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -79430,7 +79430,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -79613,7 +79613,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -79954,7 +79954,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -80292,7 +80292,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -80475,7 +80475,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -80638,7 +80638,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -80814,7 +80814,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -81155,7 +81155,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -81492,7 +81492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -81675,7 +81675,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -81838,7 +81838,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -82021,7 +82021,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -82362,7 +82362,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -82647,7 +82647,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -83618,7 +83618,7 @@ export interface components { /** Format: uri */ readonly html_url?: string; /** Format: int64 */ - readonly id: number; + readonly id: bigint; readonly login: string; readonly name?: string; readonly node_id?: string; @@ -84492,7 +84492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -84745,7 +84745,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -84998,7 +84998,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -85282,7 +85282,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -85535,7 +85535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - readonly id: number; + readonly id: bigint; readonly is_template?: boolean; /** Format: uri-template */ readonly issue_comment_url: string; @@ -87733,7 +87733,7 @@ export interface components { /** @description The unique identifier of the gist. */ readonly "gist-id": string; /** @description The unique identifier of the comment. */ - readonly "comment-id": number; + readonly "comment-id": bigint; /** @description A list of comma separated label names. Example: `bug,ui,@high` */ readonly labels: string; /** @description account_id parameter */ @@ -113999,7 +113999,7 @@ export interface operations { * @description An issue in the repository to convert to a pull request. The issue title, body, and comments will become the title, body, and comments on the new pull request. Required unless `title` is specified. * @example 1 */ - readonly issue?: number; + readonly issue?: bigint; }; }; }; diff --git a/packages/openapi-typescript/examples/github-api-next.ts b/packages/openapi-typescript/examples/github-api-next.ts index 2d47a1d10..ccb309da2 100644 --- a/packages/openapi-typescript/examples/github-api-next.ts +++ b/packages/openapi-typescript/examples/github-api-next.ts @@ -24608,7 +24608,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -25493,7 +25493,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -25891,7 +25891,7 @@ export interface components { */ authorization: { /** Format: int64 */ - id: number; + id: bigint; /** Format: uri */ url: string; /** @description A list of scopes that this authorization is in. */ @@ -26512,7 +26512,7 @@ export interface components { * @description A unique identifier of the repository. * @example 1296269 */ - id: number; + id: bigint; /** * @description The GraphQL identifier of the repository. * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -27103,7 +27103,7 @@ export interface components { */ issue: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -27154,7 +27154,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; /** Format: uri */ url?: string; @@ -27209,7 +27209,7 @@ export interface components { * @description Unique identifier of the issue comment * @example 42 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -27383,7 +27383,7 @@ export interface components { "public-user": { login: string; /** Format: int64 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -27882,7 +27882,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -29065,7 +29065,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -29427,7 +29427,7 @@ export interface components { */ "enterprise-team": { /** Format: int64 */ - id: number; + id: bigint; name: string; slug: string; /** Format: uri */ @@ -29767,7 +29767,7 @@ export interface components { */ "organization-invitation": { /** Format: int64 */ - id: number; + id: bigint; login: string | null; email: string | null; role: string; @@ -29849,12 +29849,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count?: number; + total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; last_rate_limited_timestamp?: string | null; last_request_timestamp?: string; }[]; @@ -29866,7 +29866,7 @@ export interface components { subject_type?: string; subject_name?: string; /** Format: int64 */ - subject_id?: number; + subject_id?: bigint; total_request_count?: number; rate_limited_request_count?: number; last_rate_limited_timestamp?: string | null; @@ -29881,12 +29881,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count?: number; + total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; }; /** * Time Stats @@ -29895,9 +29895,9 @@ export interface components { "api-insights-time-stats": { timestamp?: string; /** Format: int64 */ - total_request_count?: number; + total_request_count?: bigint; /** Format: int64 */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; }[]; /** * User Stats @@ -29907,11 +29907,11 @@ export interface components { actor_type?: string; actor_name?: string; /** Format: int64 */ - actor_id?: number; + actor_id?: bigint; /** Format: int64 */ - integration_id?: number | null; + integration_id?: bigint | null; /** Format: int64 */ - oauth_application_id?: number | null; + oauth_application_id?: bigint | null; total_request_count?: number; rate_limited_request_count?: number; last_rate_limited_timestamp?: string | null; @@ -29993,7 +29993,7 @@ export interface components { * Format: int64 * @example 79 */ - id: number; + id: bigint; owner: null | components["schemas"]["simple-user"]; /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */ guid: string; @@ -30039,7 +30039,7 @@ export interface components { * Format: int64 * @description The unique identifier of the role. */ - id: number; + id: bigint; /** @description The name of the role. */ name: string; /** @description A short description about who this role is for or what permissions it grants. */ @@ -30568,7 +30568,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -32447,7 +32447,7 @@ export interface components { * @description The project card's ID * @example 42 */ - id: number; + id: bigint; /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */ node_id: string; /** @example Add payload for delete Project column */ @@ -32862,7 +32862,7 @@ export interface components { /** Pull Request Minimal */ "pull-request-minimal": { /** Format: int64 */ - id: number; + id: bigint; number: number; url: string; head: { @@ -32870,7 +32870,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -32880,7 +32880,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -33153,7 +33153,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id?: number; + id?: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id?: string; /** @@ -33203,7 +33203,7 @@ export interface components { * @description Unique identifier of the deployment * @example 42 */ - id: number; + id: bigint; /** @example MDEwOkRlcGxveW1lbnQx */ node_id: string; /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */ @@ -33520,7 +33520,7 @@ export interface components { users: { login?: string; /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; avatar_url?: string; gravatar_id?: string; @@ -34004,7 +34004,7 @@ export interface components { * @description The id of the check. * @example 21 */ - id: number; + id: bigint; /** * @description The SHA of the commit that is being checked. * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d @@ -34096,7 +34096,7 @@ export interface components { * Format: int64 * @example 5 */ - id: number; + id: bigint; /** @example MDEwOkNoZWNrU3VpdGU1 */ node_id: string; /** @example master */ @@ -34658,7 +34658,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -34738,7 +34738,7 @@ export interface components { * @description Unique identifier of the repository invitation. * @example 42 */ - id: number; + id: bigint; repository: components["schemas"]["minimal-repository"]; invitee: null | components["schemas"]["simple-user"]; inviter: null | components["schemas"]["simple-user"]; @@ -34847,7 +34847,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -34905,7 +34905,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -35739,7 +35739,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */ node_id: string; /** @@ -35826,7 +35826,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id: number; + id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id: string; /** @@ -36403,7 +36403,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDEwOklzc3VlRXZlbnQx */ node_id: string; /** @@ -36754,7 +36754,7 @@ export interface components { * @description Unique identifier for the label. * @example 208045946 */ - id: number; + id: bigint; /** @example MDU6TGFiZWwyMDgwNDU5NDY= */ node_id: string; /** @@ -36997,13 +36997,13 @@ export interface components { * @description The ID of the pull request review to which the comment belongs. * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @description The ID of the pull request review comment. * @example 1 */ - id: number; + id: bigint; /** * @description The node ID of the pull request review comment. * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw @@ -37507,7 +37507,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -37575,7 +37575,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -37696,7 +37696,7 @@ export interface components { * @description Unique identifier of the review * @example 42 */ - id: number; + id: bigint; /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */ node_id: string; user: null | components["schemas"]["simple-user"]; @@ -37750,12 +37750,12 @@ export interface components { * Format: int64 * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @example 10 */ - id: number; + id: bigint; /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */ node_id: string; /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */ @@ -38650,7 +38650,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; number: number; title: string; @@ -38660,7 +38660,7 @@ export interface components { user: null | components["schemas"]["simple-user"]; labels: { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; url?: string; name?: string; @@ -38897,7 +38897,7 @@ export interface components { "user-search-result-item": { login: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** Format: uri */ avatar_url: string; @@ -38955,7 +38955,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -39177,7 +39177,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -39346,7 +39346,7 @@ export interface components { * Format: int64 * @example 3 */ - id: number; + id: bigint; /** @example Octocat's GPG Key */ name?: string | null; primary_key_id: number | null; @@ -39382,7 +39382,7 @@ export interface components { */ subkeys: { /** Format: int64 */ - id?: number; + id?: bigint; primary_key_id?: number; key_id?: string; public_key?: string; @@ -39424,7 +39424,7 @@ export interface components { key: { key: string; /** Format: int64 */ - id: number; + id: bigint; url: string; title: string; /** Format: date-time */ @@ -39678,7 +39678,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -40457,7 +40457,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -40529,7 +40529,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -40675,7 +40675,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -40747,7 +40747,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -40833,7 +40833,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -40877,7 +40877,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -41009,7 +41009,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -41306,7 +41306,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -41503,7 +41503,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -41800,7 +41800,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -42092,7 +42092,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -42823,7 +42823,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -43006,7 +43006,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -43169,7 +43169,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -43352,7 +43352,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -43692,7 +43692,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -43839,7 +43839,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -43913,7 +43913,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46249,7 +46249,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49006,7 +49006,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -49459,7 +49459,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -49503,7 +49503,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49627,7 +49627,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49924,7 +49924,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50047,7 +50047,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -50171,7 +50171,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50468,7 +50468,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50591,7 +50591,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -50717,7 +50717,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51014,7 +51014,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51137,7 +51137,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -51278,7 +51278,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51575,7 +51575,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51644,7 +51644,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -51770,7 +51770,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -52067,7 +52067,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -52200,7 +52200,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -52497,7 +52497,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -52643,7 +52643,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -52940,7 +52940,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -53075,7 +53075,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -53372,7 +53372,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -53508,7 +53508,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -53806,7 +53806,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -53939,7 +53939,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -54236,7 +54236,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -54371,7 +54371,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -54668,7 +54668,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -54812,7 +54812,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55043,7 +55043,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -55340,7 +55340,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55484,7 +55484,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -55781,7 +55781,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55915,7 +55915,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -56212,7 +56212,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56359,7 +56359,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56628,7 +56628,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -56926,7 +56926,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59086,7 +59086,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59269,7 +59269,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59432,7 +59432,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59615,7 +59615,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59956,7 +59956,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60293,7 +60293,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -60476,7 +60476,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60639,7 +60639,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -60822,7 +60822,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61163,7 +61163,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61501,7 +61501,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61684,7 +61684,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62027,7 +62027,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62368,7 +62368,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62742,7 +62742,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62925,7 +62925,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63088,7 +63088,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -63271,7 +63271,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63612,7 +63612,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63982,7 +63982,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64165,7 +64165,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64328,7 +64328,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64511,7 +64511,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64852,7 +64852,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65190,7 +65190,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -65373,7 +65373,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65536,7 +65536,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -65719,7 +65719,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66060,7 +66060,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66397,7 +66397,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66580,7 +66580,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66743,7 +66743,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66926,7 +66926,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67267,7 +67267,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67469,7 +67469,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67796,7 +67796,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67979,7 +67979,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68135,7 +68135,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68318,7 +68318,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68607,7 +68607,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68942,7 +68942,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69125,7 +69125,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69281,7 +69281,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69464,7 +69464,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69753,7 +69753,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70090,7 +70090,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -70273,7 +70273,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70429,7 +70429,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -70612,7 +70612,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70901,7 +70901,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71236,7 +71236,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71419,7 +71419,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71575,7 +71575,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71758,7 +71758,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72047,7 +72047,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72123,7 +72123,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72458,7 +72458,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -72600,7 +72600,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72751,7 +72751,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -72893,7 +72893,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73182,7 +73182,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73522,7 +73522,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73698,7 +73698,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73861,7 +73861,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74044,7 +74044,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74385,7 +74385,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74760,7 +74760,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74943,7 +74943,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75106,7 +75106,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75289,7 +75289,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75630,7 +75630,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76024,7 +76024,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -76207,7 +76207,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76370,7 +76370,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -76553,7 +76553,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76894,7 +76894,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77269,7 +77269,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -77452,7 +77452,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77615,7 +77615,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -77798,7 +77798,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78139,7 +78139,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78529,7 +78529,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78712,7 +78712,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78868,7 +78868,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79051,7 +79051,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79340,7 +79340,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79676,7 +79676,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79820,7 +79820,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79976,7 +79976,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80120,7 +80120,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80409,7 +80409,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80555,7 +80555,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80890,7 +80890,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -81034,7 +81034,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81190,7 +81190,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -81334,7 +81334,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81623,7 +81623,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81769,7 +81769,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82108,7 +82108,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -82291,7 +82291,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82454,7 +82454,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -82630,7 +82630,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82971,7 +82971,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -83309,7 +83309,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -83492,7 +83492,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -83655,7 +83655,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -83838,7 +83838,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -84179,7 +84179,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -84517,7 +84517,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84700,7 +84700,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -84863,7 +84863,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85039,7 +85039,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -85380,7 +85380,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -85717,7 +85717,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85900,7 +85900,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -86063,7 +86063,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -86246,7 +86246,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -86587,7 +86587,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -86872,7 +86872,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -87843,7 +87843,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -88717,7 +88717,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -88970,7 +88970,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -89223,7 +89223,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -89507,7 +89507,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -89760,7 +89760,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -91958,7 +91958,7 @@ export interface components { /** @description The unique identifier of the gist. */ "gist-id": string; /** @description The unique identifier of the comment. */ - "comment-id": number; + "comment-id": bigint; /** @description A list of comma separated label names. Example: `bug,ui,@high` */ labels: string; /** @description account_id parameter */ @@ -118218,7 +118218,7 @@ export interface operations { * @description An issue in the repository to convert to a pull request. The issue title, body, and comments will become the title, body, and comments on the new pull request. Required unless `title` is specified. * @example 1 */ - issue?: number; + issue?: bigint; }; }; }; diff --git a/packages/openapi-typescript/examples/github-api-required.ts b/packages/openapi-typescript/examples/github-api-required.ts index 3bb28b0c1..cb0cacbb1 100644 --- a/packages/openapi-typescript/examples/github-api-required.ts +++ b/packages/openapi-typescript/examples/github-api-required.ts @@ -18539,7 +18539,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -19348,7 +19348,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -19502,7 +19502,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -19904,7 +19904,7 @@ export interface components { */ authorization: { /** Format: int64 */ - id: number; + id: bigint; /** Format: uri */ url: string; /** @description A list of scopes that this authorization is in. */ @@ -20525,7 +20525,7 @@ export interface components { * @description A unique identifier of the repository. * @example 1296269 */ - id: number; + id: bigint; /** * @description The GraphQL identifier of the repository. * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -21204,7 +21204,7 @@ export interface components { */ issue: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -21257,7 +21257,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** Format: uri */ url: string; @@ -21312,7 +21312,7 @@ export interface components { * @description Unique identifier of the issue comment * @example 42 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -21490,7 +21490,7 @@ export interface components { "public-user": { login: string; /** Format: int64 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -22082,7 +22082,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -23265,7 +23265,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -23666,7 +23666,7 @@ export interface components { */ "enterprise-team": { /** Format: int64 */ - id: number; + id: bigint; name: string; slug: string; /** Format: uri */ @@ -23968,7 +23968,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -24220,7 +24220,7 @@ export interface components { */ "organization-invitation": { /** Format: int64 */ - id: number; + id: bigint; login: string | null; email: string | null; role: string; @@ -24304,12 +24304,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count: number; + total_request_count: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count: number; + rate_limited_request_count: bigint; last_rate_limited_timestamp: string | null; last_request_timestamp: string; }[]; @@ -24321,7 +24321,7 @@ export interface components { subject_type: string; subject_name: string; /** Format: int64 */ - subject_id: number; + subject_id: bigint; total_request_count: number; rate_limited_request_count: number; last_rate_limited_timestamp: string | null; @@ -24336,12 +24336,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count: number; + total_request_count: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count: number; + rate_limited_request_count: bigint; }; /** * Time Stats @@ -24350,9 +24350,9 @@ export interface components { "api-insights-time-stats": { timestamp: string; /** Format: int64 */ - total_request_count: number; + total_request_count: bigint; /** Format: int64 */ - rate_limited_request_count: number; + rate_limited_request_count: bigint; }[]; /** * User Stats @@ -24362,11 +24362,11 @@ export interface components { actor_type: string; actor_name: string; /** Format: int64 */ - actor_id: number; + actor_id: bigint; /** Format: int64 */ - integration_id: number | null; + integration_id: bigint | null; /** Format: int64 */ - oauth_application_id: number | null; + oauth_application_id: bigint | null; total_request_count: number; rate_limited_request_count: number; last_rate_limited_timestamp: string | null; @@ -24448,7 +24448,7 @@ export interface components { * Format: int64 * @example 79 */ - id: number; + id: bigint; owner: components["schemas"]["nullable-simple-user"]; /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */ guid: string; @@ -24494,7 +24494,7 @@ export interface components { * Format: int64 * @description The unique identifier of the role. */ - id: number; + id: bigint; /** @description The name of the role. */ name: string; /** @description A short description about who this role is for or what permissions it grants. */ @@ -25067,7 +25067,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -25443,7 +25443,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -27324,7 +27324,7 @@ export interface components { * @description The project card's ID * @example 42 */ - id: number; + id: bigint; /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */ node_id: string; /** @example Add payload for delete Project column */ @@ -27741,7 +27741,7 @@ export interface components { /** Pull Request Minimal */ "pull-request-minimal": { /** Format: int64 */ - id: number; + id: bigint; number: number; url: string; head: { @@ -27749,7 +27749,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -27759,7 +27759,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -28032,7 +28032,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id: number; + id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id: string; /** @@ -28082,7 +28082,7 @@ export interface components { * @description Unique identifier of the deployment * @example 42 */ - id: number; + id: bigint; /** @example MDEwOkRlcGxveW1lbnQx */ node_id: string; /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */ @@ -28399,7 +28399,7 @@ export interface components { users: { login: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; avatar_url: string; gravatar_id: string; @@ -28887,7 +28887,7 @@ export interface components { * @description The id of the check. * @example 21 */ - id: number; + id: bigint; /** * @description The SHA of the commit that is being checked. * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d @@ -29031,7 +29031,7 @@ export interface components { * Format: int64 * @example 5 */ - id: number; + id: bigint; /** @example MDEwOkNoZWNrU3VpdGU1 */ node_id: string; /** @example master */ @@ -29635,7 +29635,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29715,7 +29715,7 @@ export interface components { * @description Unique identifier of the repository invitation. * @example 42 */ - id: number; + id: bigint; repository: components["schemas"]["minimal-repository"]; invitee: components["schemas"]["nullable-simple-user"]; inviter: components["schemas"]["nullable-simple-user"]; @@ -29752,7 +29752,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29905,7 +29905,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -29963,7 +29963,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -30817,7 +30817,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */ node_id: string; /** @@ -30904,7 +30904,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id: number; + id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id: string; /** @@ -31438,7 +31438,7 @@ export interface components { */ "nullable-issue": { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -31491,7 +31491,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** Format: uri */ url: string; @@ -31589,7 +31589,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDEwOklzc3VlRXZlbnQx */ node_id: string; /** @@ -31940,7 +31940,7 @@ export interface components { * @description Unique identifier for the label. * @example 208045946 */ - id: number; + id: bigint; /** @example MDU6TGFiZWwyMDgwNDU5NDY= */ node_id: string; /** @@ -32183,13 +32183,13 @@ export interface components { * @description The ID of the pull request review to which the comment belongs. * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @description The ID of the pull request review comment. * @example 1 */ - id: number; + id: bigint; /** * @description The node ID of the pull request review comment. * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw @@ -32764,7 +32764,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -32832,7 +32832,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -32953,7 +32953,7 @@ export interface components { * @description Unique identifier of the review * @example 42 */ - id: number; + id: bigint; /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */ node_id: string; user: components["schemas"]["nullable-simple-user"]; @@ -33007,12 +33007,12 @@ export interface components { * Format: int64 * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @example 10 */ - id: number; + id: bigint; /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */ node_id: string; /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */ @@ -33913,7 +33913,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; number: number; title: string; @@ -33923,7 +33923,7 @@ export interface components { user: components["schemas"]["nullable-simple-user"]; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -34160,7 +34160,7 @@ export interface components { "user-search-result-item": { login: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** Format: uri */ avatar_url: string; @@ -34218,7 +34218,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -34440,7 +34440,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -34609,7 +34609,7 @@ export interface components { * Format: int64 * @example 3 */ - id: number; + id: bigint; /** @example Octocat's GPG Key */ name?: string | null; primary_key_id: number | null; @@ -34649,7 +34649,7 @@ export interface components { */ subkeys: { /** Format: int64 */ - id: number; + id: bigint; primary_key_id: number; key_id: string; public_key: string; @@ -34691,7 +34691,7 @@ export interface components { key: { key: string; /** Format: int64 */ - id: number; + id: bigint; url: string; title: string; /** Format: date-time */ @@ -34945,7 +34945,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -35724,7 +35724,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -35796,7 +35796,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -35942,7 +35942,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36014,7 +36014,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36100,7 +36100,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -36144,7 +36144,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36276,7 +36276,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -36573,7 +36573,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36770,7 +36770,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -37067,7 +37067,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -37269,7 +37269,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -37867,7 +37867,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -38598,7 +38598,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -38781,7 +38781,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -38944,7 +38944,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -39127,7 +39127,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39467,7 +39467,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39614,7 +39614,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39688,7 +39688,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -42024,7 +42024,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -44781,7 +44781,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -45234,7 +45234,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -45278,7 +45278,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -45402,7 +45402,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -45699,7 +45699,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -45822,7 +45822,7 @@ export interface components { gravatar_id: string; html_url: string; /** Format: int64 */ - id: number; + id: bigint; login: string; node_id: string; organizations_url: string; @@ -45946,7 +45946,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -46243,7 +46243,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46366,7 +46366,7 @@ export interface components { gravatar_id: string; html_url: string; /** Format: int64 */ - id: number; + id: bigint; login: string; node_id: string; organizations_url: string; @@ -46492,7 +46492,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -46789,7 +46789,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46912,7 +46912,7 @@ export interface components { gravatar_id: string; html_url: string; /** Format: int64 */ - id: number; + id: bigint; login: string; node_id: string; organizations_url: string; @@ -47053,7 +47053,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -47350,7 +47350,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -47419,7 +47419,7 @@ export interface components { gravatar_id: string; html_url: string; /** Format: int64 */ - id: number; + id: bigint; login: string; node_id: string; organizations_url: string; @@ -47545,7 +47545,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -47842,7 +47842,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -47975,7 +47975,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -48272,7 +48272,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -48418,7 +48418,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -48715,7 +48715,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -48850,7 +48850,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49147,7 +49147,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49283,7 +49283,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49581,7 +49581,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49714,7 +49714,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50011,7 +50011,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50146,7 +50146,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50443,7 +50443,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50587,7 +50587,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -50818,7 +50818,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51115,7 +51115,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51259,7 +51259,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51556,7 +51556,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51690,7 +51690,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51987,7 +51987,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -52134,7 +52134,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -52403,7 +52403,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -52701,7 +52701,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -54861,7 +54861,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55044,7 +55044,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55207,7 +55207,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55390,7 +55390,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55731,7 +55731,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56068,7 +56068,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56251,7 +56251,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56414,7 +56414,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56597,7 +56597,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56938,7 +56938,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -57276,7 +57276,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -57459,7 +57459,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -57802,7 +57802,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58143,7 +58143,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58517,7 +58517,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -58700,7 +58700,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58863,7 +58863,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59046,7 +59046,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59387,7 +59387,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59757,7 +59757,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59940,7 +59940,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60103,7 +60103,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -60286,7 +60286,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60627,7 +60627,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60965,7 +60965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61148,7 +61148,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61311,7 +61311,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61494,7 +61494,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61835,7 +61835,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62172,7 +62172,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62355,7 +62355,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62518,7 +62518,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62701,7 +62701,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63042,7 +63042,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63244,7 +63244,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63571,7 +63571,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -63754,7 +63754,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63910,7 +63910,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64093,7 +64093,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64382,7 +64382,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64717,7 +64717,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64900,7 +64900,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65056,7 +65056,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -65239,7 +65239,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65528,7 +65528,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65865,7 +65865,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66048,7 +66048,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66204,7 +66204,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66387,7 +66387,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66676,7 +66676,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67011,7 +67011,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67194,7 +67194,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67350,7 +67350,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67533,7 +67533,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67822,7 +67822,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67898,7 +67898,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68233,7 +68233,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68375,7 +68375,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68526,7 +68526,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68668,7 +68668,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68957,7 +68957,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69297,7 +69297,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69473,7 +69473,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69636,7 +69636,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69819,7 +69819,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70160,7 +70160,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70535,7 +70535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -70718,7 +70718,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70881,7 +70881,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71064,7 +71064,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71405,7 +71405,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71799,7 +71799,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71982,7 +71982,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72145,7 +72145,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -72328,7 +72328,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72669,7 +72669,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73044,7 +73044,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73227,7 +73227,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73390,7 +73390,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73573,7 +73573,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73914,7 +73914,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74304,7 +74304,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74487,7 +74487,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74643,7 +74643,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74826,7 +74826,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75115,7 +75115,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75451,7 +75451,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75595,7 +75595,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75751,7 +75751,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75895,7 +75895,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76184,7 +76184,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76330,7 +76330,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76665,7 +76665,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -76809,7 +76809,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76965,7 +76965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -77109,7 +77109,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77398,7 +77398,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77544,7 +77544,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77883,7 +77883,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78066,7 +78066,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78229,7 +78229,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78405,7 +78405,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78746,7 +78746,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79084,7 +79084,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79267,7 +79267,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79430,7 +79430,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79613,7 +79613,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79954,7 +79954,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80292,7 +80292,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80475,7 +80475,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80638,7 +80638,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80814,7 +80814,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81155,7 +81155,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81492,7 +81492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -81675,7 +81675,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81838,7 +81838,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -82021,7 +82021,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82362,7 +82362,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82647,7 +82647,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -83618,7 +83618,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -84492,7 +84492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84745,7 +84745,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84998,7 +84998,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85282,7 +85282,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85535,7 +85535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -87733,7 +87733,7 @@ export interface components { /** @description The unique identifier of the gist. */ "gist-id": string; /** @description The unique identifier of the comment. */ - "comment-id": number; + "comment-id": bigint; /** @description A list of comma separated label names. Example: `bug,ui,@high` */ labels: string; /** @description account_id parameter */ @@ -113999,7 +113999,7 @@ export interface operations { * @description An issue in the repository to convert to a pull request. The issue title, body, and comments will become the title, body, and comments on the new pull request. Required unless `title` is specified. * @example 1 */ - issue?: number; + issue?: bigint; }; }; }; diff --git a/packages/openapi-typescript/examples/github-api-root-types.ts b/packages/openapi-typescript/examples/github-api-root-types.ts index 18af3fe0a..6983f61a0 100644 --- a/packages/openapi-typescript/examples/github-api-root-types.ts +++ b/packages/openapi-typescript/examples/github-api-root-types.ts @@ -18539,7 +18539,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -19348,7 +19348,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -19502,7 +19502,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -19904,7 +19904,7 @@ export interface components { */ authorization: { /** Format: int64 */ - id: number; + id: bigint; /** Format: uri */ url: string; /** @description A list of scopes that this authorization is in. */ @@ -20525,7 +20525,7 @@ export interface components { * @description A unique identifier of the repository. * @example 1296269 */ - id: number; + id: bigint; /** * @description The GraphQL identifier of the repository. * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -21204,7 +21204,7 @@ export interface components { */ issue: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -21257,7 +21257,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; /** Format: uri */ url?: string; @@ -21312,7 +21312,7 @@ export interface components { * @description Unique identifier of the issue comment * @example 42 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -21490,7 +21490,7 @@ export interface components { "public-user": { login: string; /** Format: int64 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -22082,7 +22082,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -23265,7 +23265,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -23666,7 +23666,7 @@ export interface components { */ "enterprise-team": { /** Format: int64 */ - id: number; + id: bigint; name: string; slug: string; /** Format: uri */ @@ -23968,7 +23968,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -24220,7 +24220,7 @@ export interface components { */ "organization-invitation": { /** Format: int64 */ - id: number; + id: bigint; login: string | null; email: string | null; role: string; @@ -24304,12 +24304,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count?: number; + total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; last_rate_limited_timestamp?: string | null; last_request_timestamp?: string; }[]; @@ -24321,7 +24321,7 @@ export interface components { subject_type?: string; subject_name?: string; /** Format: int64 */ - subject_id?: number; + subject_id?: bigint; total_request_count?: number; rate_limited_request_count?: number; last_rate_limited_timestamp?: string | null; @@ -24336,12 +24336,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count?: number; + total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; }; /** * Time Stats @@ -24350,9 +24350,9 @@ export interface components { "api-insights-time-stats": { timestamp?: string; /** Format: int64 */ - total_request_count?: number; + total_request_count?: bigint; /** Format: int64 */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; }[]; /** * User Stats @@ -24362,11 +24362,11 @@ export interface components { actor_type?: string; actor_name?: string; /** Format: int64 */ - actor_id?: number; + actor_id?: bigint; /** Format: int64 */ - integration_id?: number | null; + integration_id?: bigint | null; /** Format: int64 */ - oauth_application_id?: number | null; + oauth_application_id?: bigint | null; total_request_count?: number; rate_limited_request_count?: number; last_rate_limited_timestamp?: string | null; @@ -24448,7 +24448,7 @@ export interface components { * Format: int64 * @example 79 */ - id: number; + id: bigint; owner: components["schemas"]["nullable-simple-user"]; /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */ guid: string; @@ -24494,7 +24494,7 @@ export interface components { * Format: int64 * @description The unique identifier of the role. */ - id: number; + id: bigint; /** @description The name of the role. */ name: string; /** @description A short description about who this role is for or what permissions it grants. */ @@ -25067,7 +25067,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -25443,7 +25443,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -27324,7 +27324,7 @@ export interface components { * @description The project card's ID * @example 42 */ - id: number; + id: bigint; /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */ node_id: string; /** @example Add payload for delete Project column */ @@ -27741,7 +27741,7 @@ export interface components { /** Pull Request Minimal */ "pull-request-minimal": { /** Format: int64 */ - id: number; + id: bigint; number: number; url: string; head: { @@ -27749,7 +27749,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -27759,7 +27759,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -28032,7 +28032,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id?: number; + id?: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id?: string; /** @@ -28082,7 +28082,7 @@ export interface components { * @description Unique identifier of the deployment * @example 42 */ - id: number; + id: bigint; /** @example MDEwOkRlcGxveW1lbnQx */ node_id: string; /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */ @@ -28399,7 +28399,7 @@ export interface components { users: { login?: string; /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; avatar_url?: string; gravatar_id?: string; @@ -28887,7 +28887,7 @@ export interface components { * @description The id of the check. * @example 21 */ - id: number; + id: bigint; /** * @description The SHA of the commit that is being checked. * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d @@ -29031,7 +29031,7 @@ export interface components { * Format: int64 * @example 5 */ - id: number; + id: bigint; /** @example MDEwOkNoZWNrU3VpdGU1 */ node_id: string; /** @example master */ @@ -29635,7 +29635,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29715,7 +29715,7 @@ export interface components { * @description Unique identifier of the repository invitation. * @example 42 */ - id: number; + id: bigint; repository: components["schemas"]["minimal-repository"]; invitee: components["schemas"]["nullable-simple-user"]; inviter: components["schemas"]["nullable-simple-user"]; @@ -29752,7 +29752,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29905,7 +29905,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -29963,7 +29963,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -30817,7 +30817,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */ node_id: string; /** @@ -30904,7 +30904,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id: number; + id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id: string; /** @@ -31438,7 +31438,7 @@ export interface components { */ "nullable-issue": { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -31491,7 +31491,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; /** Format: uri */ url?: string; @@ -31589,7 +31589,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDEwOklzc3VlRXZlbnQx */ node_id: string; /** @@ -31940,7 +31940,7 @@ export interface components { * @description Unique identifier for the label. * @example 208045946 */ - id: number; + id: bigint; /** @example MDU6TGFiZWwyMDgwNDU5NDY= */ node_id: string; /** @@ -32183,13 +32183,13 @@ export interface components { * @description The ID of the pull request review to which the comment belongs. * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @description The ID of the pull request review comment. * @example 1 */ - id: number; + id: bigint; /** * @description The node ID of the pull request review comment. * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw @@ -32764,7 +32764,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -32832,7 +32832,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -32953,7 +32953,7 @@ export interface components { * @description Unique identifier of the review * @example 42 */ - id: number; + id: bigint; /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */ node_id: string; user: components["schemas"]["nullable-simple-user"]; @@ -33007,12 +33007,12 @@ export interface components { * Format: int64 * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @example 10 */ - id: number; + id: bigint; /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */ node_id: string; /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */ @@ -33913,7 +33913,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; number: number; title: string; @@ -33923,7 +33923,7 @@ export interface components { user: components["schemas"]["nullable-simple-user"]; labels: { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; url?: string; name?: string; @@ -34160,7 +34160,7 @@ export interface components { "user-search-result-item": { login: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** Format: uri */ avatar_url: string; @@ -34218,7 +34218,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -34440,7 +34440,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -34609,7 +34609,7 @@ export interface components { * Format: int64 * @example 3 */ - id: number; + id: bigint; /** @example Octocat's GPG Key */ name?: string | null; primary_key_id: number | null; @@ -34649,7 +34649,7 @@ export interface components { */ subkeys: { /** Format: int64 */ - id?: number; + id?: bigint; primary_key_id?: number; key_id?: string; public_key?: string; @@ -34691,7 +34691,7 @@ export interface components { key: { key: string; /** Format: int64 */ - id: number; + id: bigint; url: string; title: string; /** Format: date-time */ @@ -34945,7 +34945,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -35724,7 +35724,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -35796,7 +35796,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -35942,7 +35942,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36014,7 +36014,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36100,7 +36100,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -36144,7 +36144,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36276,7 +36276,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -36573,7 +36573,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36770,7 +36770,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -37067,7 +37067,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -37269,7 +37269,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -37867,7 +37867,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -38598,7 +38598,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -38781,7 +38781,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -38944,7 +38944,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -39127,7 +39127,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39467,7 +39467,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39614,7 +39614,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39688,7 +39688,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -42024,7 +42024,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -44781,7 +44781,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -45234,7 +45234,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -45278,7 +45278,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -45402,7 +45402,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -45699,7 +45699,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -45822,7 +45822,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -45946,7 +45946,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -46243,7 +46243,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46366,7 +46366,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -46492,7 +46492,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -46789,7 +46789,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46912,7 +46912,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -47053,7 +47053,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -47350,7 +47350,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -47419,7 +47419,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -47545,7 +47545,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -47842,7 +47842,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -47975,7 +47975,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -48272,7 +48272,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -48418,7 +48418,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -48715,7 +48715,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -48850,7 +48850,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49147,7 +49147,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49283,7 +49283,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49581,7 +49581,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49714,7 +49714,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50011,7 +50011,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50146,7 +50146,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50443,7 +50443,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50587,7 +50587,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -50818,7 +50818,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51115,7 +51115,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51259,7 +51259,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51556,7 +51556,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51690,7 +51690,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51987,7 +51987,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -52134,7 +52134,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -52403,7 +52403,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -52701,7 +52701,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -54861,7 +54861,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55044,7 +55044,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55207,7 +55207,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55390,7 +55390,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55731,7 +55731,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56068,7 +56068,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56251,7 +56251,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56414,7 +56414,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56597,7 +56597,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56938,7 +56938,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -57276,7 +57276,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -57459,7 +57459,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -57802,7 +57802,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58143,7 +58143,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58517,7 +58517,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -58700,7 +58700,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58863,7 +58863,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59046,7 +59046,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59387,7 +59387,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59757,7 +59757,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59940,7 +59940,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60103,7 +60103,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -60286,7 +60286,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60627,7 +60627,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60965,7 +60965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61148,7 +61148,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61311,7 +61311,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61494,7 +61494,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61835,7 +61835,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62172,7 +62172,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62355,7 +62355,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62518,7 +62518,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62701,7 +62701,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63042,7 +63042,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63244,7 +63244,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63571,7 +63571,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -63754,7 +63754,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63910,7 +63910,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64093,7 +64093,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64382,7 +64382,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64717,7 +64717,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64900,7 +64900,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65056,7 +65056,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -65239,7 +65239,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65528,7 +65528,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65865,7 +65865,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66048,7 +66048,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66204,7 +66204,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66387,7 +66387,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66676,7 +66676,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67011,7 +67011,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67194,7 +67194,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67350,7 +67350,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67533,7 +67533,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67822,7 +67822,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67898,7 +67898,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68233,7 +68233,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68375,7 +68375,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68526,7 +68526,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68668,7 +68668,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68957,7 +68957,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69297,7 +69297,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69473,7 +69473,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69636,7 +69636,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69819,7 +69819,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70160,7 +70160,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70535,7 +70535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -70718,7 +70718,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70881,7 +70881,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71064,7 +71064,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71405,7 +71405,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71799,7 +71799,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71982,7 +71982,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72145,7 +72145,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -72328,7 +72328,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72669,7 +72669,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73044,7 +73044,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73227,7 +73227,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73390,7 +73390,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73573,7 +73573,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73914,7 +73914,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74304,7 +74304,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74487,7 +74487,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74643,7 +74643,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74826,7 +74826,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75115,7 +75115,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75451,7 +75451,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75595,7 +75595,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75751,7 +75751,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75895,7 +75895,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76184,7 +76184,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76330,7 +76330,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76665,7 +76665,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -76809,7 +76809,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76965,7 +76965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -77109,7 +77109,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77398,7 +77398,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77544,7 +77544,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77883,7 +77883,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78066,7 +78066,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78229,7 +78229,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78405,7 +78405,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78746,7 +78746,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79084,7 +79084,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79267,7 +79267,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79430,7 +79430,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79613,7 +79613,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79954,7 +79954,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80292,7 +80292,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80475,7 +80475,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80638,7 +80638,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80814,7 +80814,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81155,7 +81155,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81492,7 +81492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -81675,7 +81675,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81838,7 +81838,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -82021,7 +82021,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82362,7 +82362,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82647,7 +82647,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -83618,7 +83618,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -84492,7 +84492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84745,7 +84745,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84998,7 +84998,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85282,7 +85282,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85535,7 +85535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -87733,7 +87733,7 @@ export interface components { /** @description The unique identifier of the gist. */ "gist-id": string; /** @description The unique identifier of the comment. */ - "comment-id": number; + "comment-id": bigint; /** @description A list of comma separated label names. Example: `bug,ui,@high` */ labels: string; /** @description account_id parameter */ @@ -115026,7 +115026,7 @@ export interface operations { * @description An issue in the repository to convert to a pull request. The issue title, body, and comments will become the title, body, and comments on the new pull request. Required unless `title` is specified. * @example 1 */ - issue?: number; + issue?: bigint; }; }; }; diff --git a/packages/openapi-typescript/examples/github-api.ts b/packages/openapi-typescript/examples/github-api.ts index c63dd71bc..1ee4fcf34 100644 --- a/packages/openapi-typescript/examples/github-api.ts +++ b/packages/openapi-typescript/examples/github-api.ts @@ -18539,7 +18539,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -19348,7 +19348,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDQ6VXNlcjE= */ node_id: string; /** @@ -19502,7 +19502,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -19904,7 +19904,7 @@ export interface components { */ authorization: { /** Format: int64 */ - id: number; + id: bigint; /** Format: uri */ url: string; /** @description A list of scopes that this authorization is in. */ @@ -20525,7 +20525,7 @@ export interface components { * @description A unique identifier of the repository. * @example 1296269 */ - id: number; + id: bigint; /** * @description The GraphQL identifier of the repository. * @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -21204,7 +21204,7 @@ export interface components { */ issue: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -21257,7 +21257,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; /** Format: uri */ url?: string; @@ -21312,7 +21312,7 @@ export interface components { * @description Unique identifier of the issue comment * @example 42 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -21490,7 +21490,7 @@ export interface components { "public-user": { login: string; /** Format: int64 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -22082,7 +22082,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -23265,7 +23265,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -23666,7 +23666,7 @@ export interface components { */ "enterprise-team": { /** Format: int64 */ - id: number; + id: bigint; name: string; slug: string; /** Format: uri */ @@ -23968,7 +23968,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -24220,7 +24220,7 @@ export interface components { */ "organization-invitation": { /** Format: int64 */ - id: number; + id: bigint; login: string | null; email: string | null; role: string; @@ -24304,12 +24304,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count?: number; + total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; last_rate_limited_timestamp?: string | null; last_request_timestamp?: string; }[]; @@ -24321,7 +24321,7 @@ export interface components { subject_type?: string; subject_name?: string; /** Format: int64 */ - subject_id?: number; + subject_id?: bigint; total_request_count?: number; rate_limited_request_count?: number; last_rate_limited_timestamp?: string | null; @@ -24336,12 +24336,12 @@ export interface components { * Format: int64 * @description The total number of requests within the queried time period */ - total_request_count?: number; + total_request_count?: bigint; /** * Format: int64 * @description The total number of requests that were rate limited within the queried time period */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; }; /** * Time Stats @@ -24350,9 +24350,9 @@ export interface components { "api-insights-time-stats": { timestamp?: string; /** Format: int64 */ - total_request_count?: number; + total_request_count?: bigint; /** Format: int64 */ - rate_limited_request_count?: number; + rate_limited_request_count?: bigint; }[]; /** * User Stats @@ -24362,11 +24362,11 @@ export interface components { actor_type?: string; actor_name?: string; /** Format: int64 */ - actor_id?: number; + actor_id?: bigint; /** Format: int64 */ - integration_id?: number | null; + integration_id?: bigint | null; /** Format: int64 */ - oauth_application_id?: number | null; + oauth_application_id?: bigint | null; total_request_count?: number; rate_limited_request_count?: number; last_rate_limited_timestamp?: string | null; @@ -24448,7 +24448,7 @@ export interface components { * Format: int64 * @example 79 */ - id: number; + id: bigint; owner: components["schemas"]["nullable-simple-user"]; /** @example 0b989ba4-242f-11e5-81e1-c7b6966d2516 */ guid: string; @@ -24494,7 +24494,7 @@ export interface components { * Format: int64 * @description The unique identifier of the role. */ - id: number; + id: bigint; /** @description The name of the role. */ name: string; /** @description A short description about who this role is for or what permissions it grants. */ @@ -25067,7 +25067,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -25443,7 +25443,7 @@ export interface components { * Format: int64 * @example 1296269 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @example Hello-World */ @@ -27324,7 +27324,7 @@ export interface components { * @description The project card's ID * @example 42 */ - id: number; + id: bigint; /** @example MDExOlByb2plY3RDYXJkMTQ3OA== */ node_id: string; /** @example Add payload for delete Project column */ @@ -27741,7 +27741,7 @@ export interface components { /** Pull Request Minimal */ "pull-request-minimal": { /** Format: int64 */ - id: number; + id: bigint; number: number; url: string; head: { @@ -27749,7 +27749,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -27759,7 +27759,7 @@ export interface components { sha: string; repo: { /** Format: int64 */ - id: number; + id: bigint; url: string; name: string; }; @@ -28032,7 +28032,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id?: number; + id?: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id?: string; /** @@ -28082,7 +28082,7 @@ export interface components { * @description Unique identifier of the deployment * @example 42 */ - id: number; + id: bigint; /** @example MDEwOkRlcGxveW1lbnQx */ node_id: string; /** @example a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d */ @@ -28399,7 +28399,7 @@ export interface components { users: { login?: string; /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; avatar_url?: string; gravatar_id?: string; @@ -28887,7 +28887,7 @@ export interface components { * @description The id of the check. * @example 21 */ - id: number; + id: bigint; /** * @description The SHA of the commit that is being checked. * @example 009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d @@ -29031,7 +29031,7 @@ export interface components { * Format: int64 * @example 5 */ - id: number; + id: bigint; /** @example MDEwOkNoZWNrU3VpdGU1 */ node_id: string; /** @example master */ @@ -29635,7 +29635,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29715,7 +29715,7 @@ export interface components { * @description Unique identifier of the repository invitation. * @example 42 */ - id: number; + id: bigint; repository: components["schemas"]["minimal-repository"]; invitee: components["schemas"]["nullable-simple-user"]; inviter: components["schemas"]["nullable-simple-user"]; @@ -29752,7 +29752,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; email?: string | null; name?: string | null; /** @example MDQ6VXNlcjE= */ @@ -29905,7 +29905,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -29963,7 +29963,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -30817,7 +30817,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDE2OkRlcGxveW1lbnRTdGF0dXMx */ node_id: string; /** @@ -30904,7 +30904,7 @@ export interface components { * @description The id of the environment. * @example 56780428 */ - id: number; + id: bigint; /** @example MDExOkVudmlyb25tZW50NTY3ODA0Mjg= */ node_id: string; /** @@ -31438,7 +31438,7 @@ export interface components { */ "nullable-issue": { /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** * Format: uri @@ -31491,7 +31491,7 @@ export interface components { */ labels: (string | { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; /** Format: uri */ url?: string; @@ -31589,7 +31589,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDEwOklzc3VlRXZlbnQx */ node_id: string; /** @@ -31940,7 +31940,7 @@ export interface components { * @description Unique identifier for the label. * @example 208045946 */ - id: number; + id: bigint; /** @example MDU6TGFiZWwyMDgwNDU5NDY= */ node_id: string; /** @@ -32183,13 +32183,13 @@ export interface components { * @description The ID of the pull request review to which the comment belongs. * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @description The ID of the pull request review comment. * @example 1 */ - id: number; + id: bigint; /** * @description The node ID of the pull request review comment. * @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw @@ -32764,7 +32764,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** @example MDExOlB1bGxSZXF1ZXN0MQ== */ node_id: string; /** @@ -32832,7 +32832,7 @@ export interface components { body: string | null; labels: { /** Format: int64 */ - id: number; + id: bigint; node_id: string; url: string; name: string; @@ -32953,7 +32953,7 @@ export interface components { * @description Unique identifier of the review * @example 42 */ - id: number; + id: bigint; /** @example MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= */ node_id: string; user: components["schemas"]["nullable-simple-user"]; @@ -33007,12 +33007,12 @@ export interface components { * Format: int64 * @example 42 */ - pull_request_review_id: number | null; + pull_request_review_id: bigint | null; /** * Format: int64 * @example 10 */ - id: number; + id: bigint; /** @example MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw */ node_id: string; /** @example @@ -16,33 +16,40 @@ public class Connection : IConnection... */ @@ -33913,7 +33913,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; number: number; title: string; @@ -33923,7 +33923,7 @@ export interface components { user: components["schemas"]["nullable-simple-user"]; labels: { /** Format: int64 */ - id?: number; + id?: bigint; node_id?: string; url?: string; name?: string; @@ -34160,7 +34160,7 @@ export interface components { "user-search-result-item": { login: string; /** Format: int64 */ - id: number; + id: bigint; node_id: string; /** Format: uri */ avatar_url: string; @@ -34218,7 +34218,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description discriminator enum property added by openapi-typescript * @enum {string} @@ -34440,7 +34440,7 @@ export interface components { * Format: int64 * @example 1 */ - id: number; + id: bigint; /** * @description Automatically generated name of this codespace. * @example monalisa-octocat-hello-world-g4wpq6h95q @@ -34609,7 +34609,7 @@ export interface components { * Format: int64 * @example 3 */ - id: number; + id: bigint; /** @example Octocat's GPG Key */ name?: string | null; primary_key_id: number | null; @@ -34649,7 +34649,7 @@ export interface components { */ subkeys: { /** Format: int64 */ - id?: number; + id?: bigint; primary_key_id?: number; key_id?: string; public_key?: string; @@ -34691,7 +34691,7 @@ export interface components { key: { key: string; /** Format: int64 */ - id: number; + id: bigint; url: string; title: string; /** Format: date-time */ @@ -34945,7 +34945,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -35724,7 +35724,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -35796,7 +35796,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -35942,7 +35942,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36014,7 +36014,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36100,7 +36100,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -36144,7 +36144,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36276,7 +36276,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -36573,7 +36573,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -36770,7 +36770,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -37067,7 +37067,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -37269,7 +37269,7 @@ export interface components { * @description Unique identifier of the repository * @example 42 */ - id: number; + id: bigint; /** @example MDEwOlJlcG9zaXRvcnkxMjk2MjY5 */ node_id: string; /** @@ -37867,7 +37867,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -38598,7 +38598,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -38781,7 +38781,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -38944,7 +38944,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -39127,7 +39127,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39467,7 +39467,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39614,7 +39614,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -39688,7 +39688,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -42024,7 +42024,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -44781,7 +44781,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -45234,7 +45234,7 @@ export interface components { * Format: int64 * @description Unique identifier of the issue comment */ - id: number; + id: bigint; /** Format: uri */ issue_url: string; node_id: string; @@ -45278,7 +45278,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -45402,7 +45402,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -45699,7 +45699,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -45822,7 +45822,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -45946,7 +45946,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -46243,7 +46243,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46366,7 +46366,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -46492,7 +46492,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -46789,7 +46789,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -46912,7 +46912,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -47053,7 +47053,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -47350,7 +47350,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -47419,7 +47419,7 @@ export interface components { gravatar_id?: string; html_url?: string; /** Format: int64 */ - id?: number; + id?: bigint; login?: string; node_id?: string; organizations_url?: string; @@ -47545,7 +47545,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -47842,7 +47842,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -47975,7 +47975,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -48272,7 +48272,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -48418,7 +48418,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -48715,7 +48715,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -48850,7 +48850,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49147,7 +49147,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49283,7 +49283,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -49581,7 +49581,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -49714,7 +49714,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50011,7 +50011,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50146,7 +50146,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -50443,7 +50443,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -50587,7 +50587,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -50818,7 +50818,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51115,7 +51115,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51259,7 +51259,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51556,7 +51556,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -51690,7 +51690,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: { /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -51987,7 +51987,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -52134,7 +52134,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -52403,7 +52403,7 @@ export interface components { /** Format: uri */ html_url: string; /** Format: int64 */ - id: number; + id: bigint; labels?: ({ /** @description 6-character hex code, without the leading #, identifying the color */ color: string; @@ -52701,7 +52701,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -54861,7 +54861,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55044,7 +55044,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55207,7 +55207,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -55390,7 +55390,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -55731,7 +55731,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56068,7 +56068,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56251,7 +56251,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56414,7 +56414,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -56597,7 +56597,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -56938,7 +56938,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -57276,7 +57276,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -57459,7 +57459,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -57802,7 +57802,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58143,7 +58143,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58517,7 +58517,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -58700,7 +58700,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -58863,7 +58863,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59046,7 +59046,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59387,7 +59387,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -59757,7 +59757,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -59940,7 +59940,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60103,7 +60103,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -60286,7 +60286,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60627,7 +60627,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -60965,7 +60965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61148,7 +61148,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61311,7 +61311,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -61494,7 +61494,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -61835,7 +61835,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62172,7 +62172,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62355,7 +62355,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -62518,7 +62518,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -62701,7 +62701,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63042,7 +63042,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63244,7 +63244,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63571,7 +63571,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -63754,7 +63754,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -63910,7 +63910,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64093,7 +64093,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64382,7 +64382,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -64717,7 +64717,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -64900,7 +64900,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65056,7 +65056,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -65239,7 +65239,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65528,7 +65528,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -65865,7 +65865,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66048,7 +66048,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66204,7 +66204,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -66387,7 +66387,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -66676,7 +66676,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67011,7 +67011,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67194,7 +67194,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67350,7 +67350,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -67533,7 +67533,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67822,7 +67822,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -67898,7 +67898,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68233,7 +68233,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68375,7 +68375,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68526,7 +68526,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -68668,7 +68668,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -68957,7 +68957,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69297,7 +69297,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69473,7 +69473,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -69636,7 +69636,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -69819,7 +69819,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70160,7 +70160,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70535,7 +70535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -70718,7 +70718,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -70881,7 +70881,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71064,7 +71064,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71405,7 +71405,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -71799,7 +71799,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -71982,7 +71982,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72145,7 +72145,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -72328,7 +72328,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -72669,7 +72669,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73044,7 +73044,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73227,7 +73227,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73390,7 +73390,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -73573,7 +73573,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -73914,7 +73914,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74304,7 +74304,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74487,7 +74487,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -74643,7 +74643,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -74826,7 +74826,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75115,7 +75115,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75451,7 +75451,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75595,7 +75595,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -75751,7 +75751,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -75895,7 +75895,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76184,7 +76184,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76330,7 +76330,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76665,7 +76665,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -76809,7 +76809,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -76965,7 +76965,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -77109,7 +77109,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77398,7 +77398,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77544,7 +77544,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -77883,7 +77883,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78066,7 +78066,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78229,7 +78229,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -78405,7 +78405,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -78746,7 +78746,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79084,7 +79084,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79267,7 +79267,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79430,7 +79430,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -79613,7 +79613,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -79954,7 +79954,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80292,7 +80292,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80475,7 +80475,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -80638,7 +80638,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -80814,7 +80814,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81155,7 +81155,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81492,7 +81492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -81675,7 +81675,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -81838,7 +81838,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -82021,7 +82021,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82362,7 +82362,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -82647,7 +82647,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -83618,7 +83618,7 @@ export interface components { /** Format: uri */ html_url?: string; /** Format: int64 */ - id: number; + id: bigint; login: string; name?: string; node_id?: string; @@ -84492,7 +84492,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84745,7 +84745,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -84998,7 +84998,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85282,7 +85282,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -85535,7 +85535,7 @@ export interface components { * Format: int64 * @description Unique identifier of the repository */ - id: number; + id: bigint; is_template?: boolean; /** Format: uri-template */ issue_comment_url: string; @@ -87733,7 +87733,7 @@ export interface components { /** @description The unique identifier of the gist. */ "gist-id": string; /** @description The unique identifier of the comment. */ - "comment-id": number; + "comment-id": bigint; /** @description A list of comma separated label names. Example: `bug,ui,@high` */ labels: string; /** @description account_id parameter */ @@ -113999,7 +113999,7 @@ export interface operations { * @description An issue in the repository to convert to a pull request. The issue title, body, and comments will become the title, body, and comments on the new pull request. Required unless `title` is specified. * @example 1 */ - issue?: number; + issue?: bigint; }; }; }; diff --git a/packages/openapi-typescript/examples/simple-example.ts b/packages/openapi-typescript/examples/simple-example.ts index e98bfea5f..6745bc835 100644 --- a/packages/openapi-typescript/examples/simple-example.ts +++ b/packages/openapi-typescript/examples/simple-example.ts @@ -178,7 +178,7 @@ export interface components { }; Pet: { /** Format: int64 */ - id: number; + id: bigint; name: string; none?: null; /** @example 123 */ diff --git a/packages/openapi-typescript/src/lib/ts.ts b/packages/openapi-typescript/src/lib/ts.ts index d1f41eb88..707db014a 100644 --- a/packages/openapi-typescript/src/lib/ts.ts +++ b/packages/openapi-typescript/src/lib/ts.ts @@ -12,6 +12,7 @@ export const SPECIAL_CHARACTER_MAP: Record = { }; export const BOOLEAN = ts.factory.createKeywordTypeNode(ts.SyntaxKind.BooleanKeyword); +export const BIGINT = ts.factory.createKeywordTypeNode(ts.SyntaxKind.BigIntKeyword); export const FALSE = ts.factory.createLiteralTypeNode(ts.factory.createFalse()); export const NEVER = ts.factory.createKeywordTypeNode(ts.SyntaxKind.NeverKeyword); export const NULL = ts.factory.createLiteralTypeNode(ts.factory.createNull()); diff --git a/packages/openapi-typescript/src/transform/schema-object.ts b/packages/openapi-typescript/src/transform/schema-object.ts index caab5e10f..864a23985 100644 --- a/packages/openapi-typescript/src/transform/schema-object.ts +++ b/packages/openapi-typescript/src/transform/schema-object.ts @@ -2,6 +2,7 @@ import { parseRef } from "@redocly/openapi-core/lib/ref-utils.js"; import ts from "typescript"; import { addJSDocComment, + BIGINT, BOOLEAN, NEVER, NULL, @@ -386,7 +387,7 @@ function transformSchemaObjectCore(schemaObject: SchemaObject, options: Transfor } // type: number / type: integer if (schemaObject.type === "number" || schemaObject.type === "integer") { - return NUMBER; + return schemaObject.format === "int64" ? BIGINT : NUMBER; } // type: boolean if (schemaObject.type === "boolean") { diff --git a/packages/openapi-typescript/test/transform/paths-object.test.ts b/packages/openapi-typescript/test/transform/paths-object.test.ts index 46aeb320d..36c50cef6 100644 --- a/packages/openapi-typescript/test/transform/paths-object.test.ts +++ b/packages/openapi-typescript/test/transform/paths-object.test.ts @@ -328,7 +328,7 @@ describe("transformPathsObject", () => { }; header?: never; path: { - user_id: number; + user_id: bigint; }; cookie?: never; }; @@ -340,7 +340,7 @@ describe("transformPathsObject", () => { }; header?: never; path: { - user_id: number; + user_id: bigint; }; cookie?: never; }; diff --git a/packages/openapi-typescript/test/transform/schema-object/number.test.ts b/packages/openapi-typescript/test/transform/schema-object/number.test.ts index 82994b792..0d92b3a7e 100644 --- a/packages/openapi-typescript/test/transform/schema-object/number.test.ts +++ b/packages/openapi-typescript/test/transform/schema-object/number.test.ts @@ -34,6 +34,55 @@ describe("transformSchemaObject > number", () => { // options: DEFAULT_OPTIONS, }, ], + [ + "integer > int32", + { + given: { type: "integer", format: "int32" }, + want: "number", + }, + ], + [ + "integer > int64", + { + given: { type: "integer", format: "int64" }, + want: "bigint", + }, + ], + [ + "number > int64", + { + given: { type: "number", format: "int64" }, + want: "bigint", + }, + ], + [ + "number > float", + { + given: { type: "number", format: "float" }, + want: "number", + }, + ], + [ + "number > double", + { + given: { type: "number", format: "double" }, + want: "number", + }, + ], + [ + "integer > int64 > nullable", + { + given: { type: ["integer", "null"], format: "int64" }, + want: "bigint | null", + }, + ], + [ + "integer > int64 > nullable (deprecated syntax)", + { + given: { type: "integer", format: "int64", nullable: true }, + want: "bigint | null", + }, + ], [ "nullable", {